1 #ifndef _WLANSVC_PCH_ 2 #define _WLANSVC_PCH_ 3 4 #include <stdarg.h> 5 6 #define WIN32_NO_STATUS 7 #define _INC_WINDOWS 8 #define COM_NO_WINDOWS_H 9 10 #include <windef.h> 11 #include <winbase.h> 12 #include <winsvc.h> 13 #include <wlansvc_s.h> 14 15 #include <ndk/rtlfuncs.h> 16 #include <ndk/obfuncs.h> 17 18 typedef struct _WLANSVCHANDLE 19 { 20 LIST_ENTRY WlanSvcHandleListEntry; 21 DWORD dwClientVersion; 22 } WLANSVCHANDLE, *PWLANSVCHANDLE; 23 24 #endif /* _WLANSVC_PCH_ */ 25