35 lines
488 B
C
35 lines
488 B
C
#ifndef _DEFINE_H_
|
|
#define _DEFINE_H_
|
|
|
|
//typedef int BOOL;
|
|
#ifndef _T_U8
|
|
#define _T_U8
|
|
typedef unsigned char u8;
|
|
#endif
|
|
|
|
#ifndef _T_U16
|
|
#define _T_U16
|
|
typedef unsigned short u16;
|
|
#endif
|
|
|
|
#ifndef _T_U32
|
|
#define _T_U32
|
|
typedef unsigned int u32;
|
|
#endif
|
|
|
|
#define BICC_TOLERANT
|
|
#define BICC_REATTEMPT
|
|
#define BICC_DEBUG
|
|
|
|
//Event
|
|
#define EN_NONE 0x00
|
|
#define EN_ANM 0x01
|
|
#define EN_CON 0x02
|
|
#define EN_GROUP 0x03
|
|
|
|
#define M_LOCAL_BLOCK 0x01
|
|
#define M_REMOTE_BLOCK 0x02
|
|
|
|
#endif
|
|
|