-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypes.h
39 lines (35 loc) · 1.33 KB
/
types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**************************************************************************
*
* FILE NAME: types.h
* FILE DESCRIPTION: Extended types header
*
* FILE CREATION DATE: 24-05-2004
*
*==========================================================================
* Copyright (c) 2004 NIR Diagnostics Inc., Ontario, Canada
*
* This document contains confidential information which is protected by
* copyright and is proprietary to NIR Diagnostics Inc., Ontario, Canada. No part
* of this document may be used, copied, disclosed, or conveyed to another
* party without prior written consent of NIR Diagnostics Inc., Ontario, Canada.
***************************************************************************
*
* Modification history:
* --------------------
* 01a,24may03 erd written
*
***************************************************************************/
#ifndef __TYPES_H_
#define __TYPES_H_
// basic types
typedef signed char int_8;
typedef signed int int_16;
typedef unsigned char uint_8;
typedef unsigned int uint_16;
typedef unsigned long uint_32;
// boolean type
#define FALSE (0)
#define TRUE (1)
typedef uint_8 BOOL;
#define NULL (0)
#endif /* __TYPES_H_ */