blob: 011242891c431c0274faa739199bb55e5009ecc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MYTYPE_H_
#define MYTYPE_H_
/* types definitions to be coherent with Visual Basic C++ types */
typedef unsigned char BYTE; /* unsigned 8-bit type */
typedef unsigned short WORD; /* unsigned 16-bit type */
typedef unsigned long DWORD; /* unsigned 32-bit type */
/* constant defintion usefull in the code */
#define TRUE 1
#define FALSE 0
#define MODE_ASCII 0
#define MODE_BINAIRE 1
#define MODE_RAW 2
#endif /*MYTYPE_H_*/
|