source: rtems-libbsd/freebsd/usr.sbin/wpa/wpa_supplicant/ntddndis.h @ 9c9d11b

55-freebsd-126-freebsd-12
Last change on this file since 9c9d11b was 9c9d11b, checked in by Sichen Zhao <1473996754@…>, on 08/01/17 at 12:43:41

Import wpa from FreeBSD

  • Property mode set to 100644
File size: 584 bytes
Line 
1#ifndef _NTDDNDIS_H_
2#define _NTDDNDIS_H_
3
4/*
5 * $FreeBSD$
6 */
7
8/*
9 * Fake up some of the Windows type definitions so that the NDIS
10 * interface module in wpa_supplicant will build.
11 */
12
13#define ULONG uint32_t
14#define USHORT uint16_t
15#define UCHAR uint8_t
16#define LONG int32_t
17#define SHORT int16_t
18#define CHAR int8_t
19#define ULONGLONG uint64_t
20#define LONGLONG int64_t
21#define BOOLEAN uint8_t
22typedef void * LPADAPTER;
23typedef char * PTSTR;
24typedef char * PCHAR;
25
26#define TRUE 1
27#define FALSE 0
28
29#define OID_802_3_CURRENT_ADDRESS               0x01010102
30
31#endif /* _NTDDNDIS_H_ */
Note: See TracBrowser for help on using the repository browser.