home *** CD-ROM | disk | FTP | other *** search
- /*
- * Author : Ranveer Chandra
- * Directory: VirtualWiFi_Root\driver
- * File Name: public.h
- * Purpose : Common declarations shared by driver and user applications.
- */
-
- #ifndef __PUBLIC_H
- #define __PUBLIC_H
-
- //
- // To support ioctls from user-mode:
- //
-
- #define LINKNAME_STRING L"\\DosDevices\\VWiFi"
- #define NTDEVICE_STRING L"\\Device\\VWiFi"
-
- #define MUX_CUSTOM_EVENT 1
-
- #define NOTIFY_SIGNATURE 0xAFCDABAB
-
- typedef struct _NOTIFY_CUSTOM_EVENT {
- ULONG uSignature;
- ULONG uEvent;
- WCHAR szMiniport[1];
- } NOTIFY_CUSTOM_EVENT, *PNOTIFY_CUSTOM_EVENT;
- #endif
-
-
-
-