rc.d/diskless - Fix check for devfs
[dragonfly.git] / usr.sbin / 802_11 / wpa_supplicant / ntddndis.h
blob1cfb20198cde09e1aac4e03980dc7961feeb94f0
1 #ifndef _NTDDNDIS_H_
2 #define _NTDDNDIS_H_
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 */
9 /*
10 * Fake up some of the Windows type definitions so that the NDIS
11 * interface module in wpa_supplicant will build.
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;
27 #define TRUE 1
28 #define FALSE 0
30 #define OID_802_3_CURRENT_ADDRESS 0x01010102
32 #endif /* _NTDDNDIS_H_ */