1 #ifndef _NTDDNDIS_H_ 2 #define _NTDDNDIS_H_ 3 4 /* 5 */ 6 7 /* 8 * Fake up some of the Windows type definitions so that the NDIS 9 * interface module in wpa_supplicant will build. 10 */ 11 12 #define ULONG uint32_t 13 #define USHORT uint16_t 14 #define UCHAR uint8_t 15 #define LONG int32_t 16 #define SHORT int16_t 17 #define CHAR int8_t 18 #define ULONGLONG uint64_t 19 #define LONGLONG int64_t 20 #define BOOLEAN uint8_t 21 typedef void * LPADAPTER; 22 typedef char * PTSTR; 23 typedef char * PCHAR; 24 25 #define TRUE 1 26 #define FALSE 0 27 28 #define OID_802_3_CURRENT_ADDRESS 0x01010102 29 30 #endif /* _NTDDNDIS_H_ */ 31