1cffc7ff97b49e7d284a37131036cfd9f05a6a3d
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / utility / patch_gen / dt_defs.h
1 /*************************************************************************/
2 /*  Copyright (c) 2006 Atheros Communications, Inc., All Rights Reserved */
3 /*                                                                       */
4 /*  Module Name : dt_defs.h                                              */
5 /*                                                                       */
6 /*  Abstract                                                             */
7 /*      This file contains the common data structure definition.             */
8 /*                                                                       */
9 /*  NOTES                                                                */
10 /*      None                                                             */
11 /*                                                                       */
12 /*************************************************************************/
13
14 #ifndef _DT_DEFS_H
15 #define _DT_DEFS_H
16
17 #if 0
18 #define LOCAL   static
19 #else
20 #define LOCAL
21 #endif
22
23 /* data type definition */
24 typedef unsigned long   uint32_t;
25 typedef unsigned short  uint16_t;
26 typedef unsigned char   uint8_t;
27
28 typedef signed long             int32_t;
29 typedef signed short    int16_t;
30 typedef signed char             int8_t;
31
32 typedef uint16_t                BOOLEAN;
33
34 #define ptrData uint8_t *
35
36 /* marco definition */
37 #define SIZE_HASH_BUFFER       128
38
39 #define TRUE    (0==0)
40 #define FALSE   (0!=0)
41
42
43 #ifndef NULL
44 #define NULL    0x0
45 #endif
46
47 #endif