home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / surpriz / MSRMesh-VirtualWIFI.MSI / public.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-06-24  |  645 b   |  31 lines

  1. /*
  2.  * Author   : Ranveer Chandra
  3.  * Directory: VirtualWiFi_Root\driver
  4.  * File Name: public.h
  5.  * Purpose  : Common declarations shared by driver and user applications.
  6.  */
  7.  
  8. #ifndef __PUBLIC_H
  9. #define __PUBLIC_H
  10.  
  11. //
  12. // To support ioctls from user-mode:
  13. //
  14.  
  15. #define LINKNAME_STRING     L"\\DosDevices\\VWiFi"
  16. #define NTDEVICE_STRING     L"\\Device\\VWiFi"
  17.  
  18. #define  MUX_CUSTOM_EVENT      1
  19.  
  20. #define NOTIFY_SIGNATURE       0xAFCDABAB
  21.  
  22. typedef struct _NOTIFY_CUSTOM_EVENT {
  23.   ULONG           uSignature;
  24.   ULONG           uEvent;
  25.   WCHAR           szMiniport[1];
  26. } NOTIFY_CUSTOM_EVENT, *PNOTIFY_CUSTOM_EVENT;
  27. #endif
  28.  
  29.  
  30.  
  31.