Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

36 lines
549 B

/*++
Copyright (c) 1992-1994 Microsoft Corporation
Module Name:
videosim.h
Abstract:
definitions for the simulation driver.
Environment:
Kernel mode
Revision History:
--*/
//
// Define device extension structure. This is device dependant/private
// information.
//
typedef struct _HW_DEVICE_EXTENSION {
PVOID VideoRamBase;
ULONG VideoRamLength;
ULONG CurrentModeNumber;
} HW_DEVICE_EXTENSION, *PHW_DEVICE_EXTENSION;
extern VIDEO_MODE_INFORMATION SimModes[];
extern ULONG SimNumModes;
extern ULONG DeviceCount;