62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
#ifndef YASND_H
|
|
#define YASND_H
|
|
|
|
// Debug verbosity
|
|
#define DEBUG_BASE 1
|
|
#define DEBUG_ALL 2
|
|
|
|
// IPC message types
|
|
#define SMS_SEND_TYPE 1
|
|
#define SMS_RECEIVE_TYPE 2
|
|
|
|
#include <unistd.h>
|
|
#include |