Intel® Digital Set Top Box Display Driver
37
User’s Guide for Microsoft* Windows* CE 5.0
7.1.1.8 ICEGD_ESCAPE_GET_MONITOR_DESC
Input Data Structure
Output Data Structure
Notes
Int
esc_monitor_desc_t
The input is port number, which can be only 0 or 1.
Description
This escape code is used to get the monitor description (EDID).
Output Data Structure Definition
Please refer to
icegd_public_escape.h
for details about data structure
esc_monitor_desc_t
.
Example
int port = 0;
esc_monitor_desc_t esc_monitor_desc;
memset(&esc_monitor_desc, 0, sizeof(esc_monitor_desc_t));
ExtEscape(
Hdc,
ICEGD_ESCAPE_GET_MONITOR_DESC,
sizeof(port),
(LPCSTR) &port,
sizeof(esc_monitor_desc_t),
(LPSTR)
&esc_monitor_desc);