1151214Swpaul#ifndef _NTDDNDIS_H_
2151214Swpaul#define _NTDDNDIS_H_
3151214Swpaul
4151214Swpaul/*
5151214Swpaul * $FreeBSD$
6151214Swpaul */
7151214Swpaul
8151214Swpaul/*
9151214Swpaul * Fake up some of the Windows type definitions so that the NDIS
10151214Swpaul * interface module in wpa_supplicant will build.
11151214Swpaul */
12151214Swpaul
13151214Swpaul#define ULONG uint32_t
14151214Swpaul#define USHORT uint16_t
15151214Swpaul#define UCHAR uint8_t
16151214Swpaul#define LONG int32_t
17151214Swpaul#define SHORT int16_t
18151214Swpaul#define CHAR int8_t
19151214Swpaul#define ULONGLONG uint64_t
20151214Swpaul#define LONGLONG int64_t
21151214Swpaul#define BOOLEAN uint8_t
22151214Swpaultypedef void * LPADAPTER;
23151214Swpaultypedef char * PTSTR;
24151517Swpaultypedef char * PCHAR;
25151214Swpaul
26151214Swpaul#define TRUE 1
27151214Swpaul#define FALSE 0
28151214Swpaul
29151214Swpaul#define OID_802_3_CURRENT_ADDRESS               0x01010102
30151214Swpaul
31151214Swpaul#endif /* _NTDDNDIS_H_ */
32