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.

44 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1991 - 2002 Microsoft Corporation
  3. Module Name:
  4. ## ## #### ##### ###### ## ## ### ## ## ##
  5. ## ## ## ## ## ## ## ## ### ## ## ##
  6. ## ## ## ## ## ## ## ## ## ## ## ## ##
  7. #### ## ##### ## ## ## ## ## ## #######
  8. #### ## #### ## ## ## ####### ## ## ##
  9. ## ## ## ## ## ## ## ## ## ## ## ## ##
  10. ## #### ## ## ## #### ## ## ##### ## ## ##
  11. Abstract:
  12. This header file contains the definitions for the
  13. user mode to kernel mode interface for the
  14. Microsoft virtual display driver.
  15. @@BEGIN_DDKSPLIT
  16. Author:
  17. Wesley Witt (wesw) 1-Oct-2001
  18. @@END_DDKSPLIT
  19. Environment:
  20. Kernel mode only.
  21. Notes:
  22. --*/
  23. #define FUNC_VDRIVER_INIT (FUNC_SA_LAST)
  24. #define IOCTL_VDRIVER_INIT SA_IOCTL(FUNC_VDRIVER_INIT)
  25. #define MSDISP_EVENT_NAME L"MsDispEvent"
  26. #define MSKEYPAD_EVENT_NAME L"MsKeypadEvent"
  27. typedef struct _MSDISP_BUFFER_DATA {
  28. PVOID DisplayBuffer;
  29. ULONG DisplayBufferLength;
  30. } MSDISP_BUFFER_DATA, *PMSDISP_BUFFER_DATA;