Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
775 B

  1. /*++
  2. Copyright (c) 1990-2000 Microsoft Corporation All Rights Reserved
  3. Module Name:
  4. public.h
  5. Abstract:
  6. This module contains the common declarations shared by driver
  7. and user applications.
  8. Author:
  9. Environment:
  10. user and kernel
  11. Notes:
  12. Revision History:
  13. --*/
  14. #ifndef __PUBLIC_H
  15. #define __PUBLIC_H
  16. //
  17. // To support ioctls from user-mode:
  18. //
  19. #define LINKNAME_STRING L"\\DosDevices\\Mux"
  20. #define NTDEVICE_STRING L"\\Device\\Mux"
  21. #define MUX_CUSTOM_EVENT 1
  22. #define NOTIFY_SIGNATURE 0xAFCDABAB
  23. typedef struct _NOTIFY_CUSTOM_EVENT {
  24. ULONG uSignature;
  25. ULONG uEvent;
  26. WCHAR szMiniport[1];
  27. } NOTIFY_CUSTOM_EVENT, *PNOTIFY_CUSTOM_EVENT;
  28. #endif