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.

27 lines
996 B

  1. /****************************************************************************/
  2. /* nmpdata.c */
  3. /* */
  4. /* RDP Miniport API Declarations */
  5. /* */
  6. /* Copyright(c) Microsoft 1998 */
  7. /****************************************************************************/
  8. //
  9. // Define device extension structure. This is device dependant/private
  10. // information.
  11. //
  12. typedef struct _HW_DEVICE_EXTENSION {
  13. PVOID VideoRamBase;
  14. ULONG VideoRamLength;
  15. ULONG CurrentModeNumber;
  16. PVOID SectionPointer;
  17. PMDL Mdl;
  18. } HW_DEVICE_EXTENSION, *PHW_DEVICE_EXTENSION;
  19. #define ONE_MEG 0x100000
  20. extern VIDEO_MODE_INFORMATION mpModes[];
  21. extern ULONG mpNumModes;
  22. extern ULONG mpLoaded;