mirror of https://github.com/lianthony/NT4.0
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.
43 lines
651 B
43 lines
651 B
/*++
|
|
|
|
Copyright (c) 1991-1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
jzvxldat.h
|
|
|
|
Abstract:
|
|
|
|
This module contains all the global data used by the driver.
|
|
|
|
Environment:
|
|
|
|
Kernel mode
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
#define BOARD_TYPE_BT484 0x01
|
|
#define BOARD_TYPE_BT485 0x02
|
|
|
|
//
|
|
// Video mode table - Lists the information about each individual mode
|
|
//
|
|
|
|
typedef struct _JZVXL_VIDEO_MODES {
|
|
ULONG SupportedBoard;
|
|
ULONG minimumMemoryRequired;
|
|
PVOID ModeSetTable;
|
|
VIDEO_MODE_INFORMATION modeInformation;
|
|
} JZVXL_VIDEO_MODES, PJZVXL_VIDEO_MODES;
|
|
|
|
|
|
//
|
|
// Global variables
|
|
//
|
|
|
|
extern JZVXL_VIDEO_MODES JagModes[];
|
|
extern ULONG NumModes;
|