- Add usr.sbin/802_11 to hold wpa_supplicant and other 802.11 related
[dragonfly.git] / usr.sbin / 802_11 / wpa_supplicant / ntddndis.h
1 #ifndef _NTDDNDIS_H_
2 #define _NTDDNDIS_H_
3
4 /*
5  * $FreeBSD: src/usr.sbin/wpa/wpa_supplicant/ntddndis.h,v 1.2.2.1 2005/10/27 17:06:47 wpaul Exp $
6  * $DragonFly: src/usr.sbin/802_11/wpa_supplicant/ntddndis.h,v 1.1 2006/06/24 07:29:44 sephe Exp $
7  */
8
9 /*
10  * Fake up some of the Windows type definitions so that the NDIS
11  * interface module in wpa_supplicant will build.
12  */
13
14 #define ULONG uint32_t
15 #define USHORT uint16_t
16 #define UCHAR uint8_t
17 #define LONG int32_t
18 #define SHORT int16_t
19 #define CHAR int8_t
20 #define ULONGLONG uint64_t
21 #define LONGLONG int64_t
22 #define BOOLEAN uint8_t
23 typedef void * LPADAPTER;
24 typedef char * PTSTR;
25 typedef char * PCHAR;
26
27 #define TRUE 1
28 #define FALSE 0
29
30 #define OID_802_3_CURRENT_ADDRESS               0x01010102
31
32 #endif /* _NTDDNDIS_H_ */