2005-10-10 17:51:12 +00:00
|
|
|
#ifndef _NTDDNDIS_H_
|
|
|
|
#define _NTDDNDIS_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fake up some of the Windows type definitions so that the NDIS
|
|
|
|
* interface module in wpa_supplicant will build.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ULONG uint32_t
|
|
|
|
#define USHORT uint16_t
|
|
|
|
#define UCHAR uint8_t
|
|
|
|
#define LONG int32_t
|
|
|
|
#define SHORT int16_t
|
|
|
|
#define CHAR int8_t
|
|
|
|
#define ULONGLONG uint64_t
|
|
|
|
#define LONGLONG int64_t
|
|
|
|
#define BOOLEAN uint8_t
|
|
|
|
typedef void * LPADAPTER;
|
|
|
|
typedef char * PTSTR;
|
2005-10-20 16:49:31 +00:00
|
|
|
typedef char * PCHAR;
|
2005-10-10 17:51:12 +00:00
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#define FALSE 0
|
|
|
|
|
|
|
|
#define OID_802_3_CURRENT_ADDRESS 0x01010102
|
|
|
|
|
|
|
|
#endif /* _NTDDNDIS_H_ */
|