Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / target / inc / adf_os_stdtypes.h
1 /**
2  * @defgroup adf_os_public OS abstraction API
3  */ 
4
5 /**
6  * @ingroup adf_os_public
7  * @file adf_os_stdtypes.h
8  * This file defines standard types.
9  */
10
11 #ifndef _ADF_OS_STDTYPES_H
12 #define _ADF_OS_STDTYPES_H
13
14 #include <adf_os_types_pvt.h>
15
16 /**
17  * @brief basic data types. 
18  */
19 typedef enum {
20     A_FALSE,
21     A_TRUE           
22 }a_bool_t;
23
24 typedef __a_uint8_t    a_uint8_t;
25 typedef __a_int8_t     a_int8_t;
26 typedef __a_uint16_t   a_uint16_t;
27 typedef __a_int16_t    a_int16_t;
28 typedef __a_uint32_t   a_uint32_t;
29 typedef __a_int32_t    a_int32_t;
30 typedef __a_uint64_t   a_uint64_t;
31 typedef __a_int64_t    a_int64_t;
32
33 #endif