Source code of Windows XP (NT5)
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.

40 lines
612 B

  1. /*++
  2. Copyright (c) 1992-1994 Microsoft Corporation
  3. Module Name:
  4. videosim.h
  5. Abstract:
  6. definitions for the simulation driver.
  7. Environment:
  8. Kernel mode
  9. Revision History:
  10. --*/
  11. //
  12. // Define device extension structure. This is device dependant/private
  13. // information.
  14. //
  15. typedef struct _HW_DEVICE_EXTENSION {
  16. PVOID VideoRamBase;
  17. ULONG VideoRamLength;
  18. ULONG CurrentModeNumber;
  19. PVOID SectionPointer;
  20. PMDL Mdl;
  21. } HW_DEVICE_EXTENSION, *PHW_DEVICE_EXTENSION;
  22. #define ONE_MEG 0x100000
  23. extern VIDEO_MODE_INFORMATION SimModes[];
  24. extern ULONG SimNumModes;
  25. extern ULONG bLoaded;