Subversion Repositories pentevo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 lvd 1
#ifndef MYTYPES_H
2
#define MYTYPES_H
3
 
4
 
5
typedef  int8_t  BYTE;
6
typedef uint8_t UBYTE;
7
 
8
typedef  int16_t  WORD;
9
typedef uint16_t UWORD;
10
 
11
typedef  int32_t  LONG;
12
typedef uint32_t ULONG;
13
 
14
 
15
 
16
#endif
17