blob: 6b9b84baae486d0083d726f60cc1dd2b0fc88a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ZHEADER_ZCOMMONINCLUDE_H
#define ZHEADER_ZCOMMONINCLUDE_H
#define ZFALSE ( 0U )
#define ZTRUE ( 1U )
#define ZNULL ( 0x00 )
#define ZEVENT_NONHIT ( -1 )
#define ZRET_NORMAL ( 0U )
#define ZRET_ERROR ( 1U )
#define ZRET_NONACTIVE ( 2U )
typedef unsigned char ZeRetType;
#endif
|