The [HKEY_LOCAL_MACHINE\Drivers\Display] key contains subkeys for display drivers installed on a Windows CE platform. Each subkey is named after the display driver it serves, and contains values described in the following table.
Value Name | Value Type | Description |
---|---|---|
Bpp | REG_SZ | The color-depth your display driver uses, must be one of the values 1,2,4,5,6,8,15,16,24, or 32. |
CxScreen | DWORD | The width of the screen in pixels. |
CyScreen | DWORD | The height of the screen in pixels |
Dll | DWORD | The name of the .DLL file that contains the display driver. |
The following example shows the contents under the Display key for a sample display driver:
HKEY_LOCAL_MACHINE
[Drivers]
[Display]
[GenericVGA]
SZ: Dll = GENVGA.DLL
DWORD: CxScreen = 0x280
DWORD: CyScreen = 0xF0
DWORD: Bpp = 8