WINCE下使用EnumDisplaySettings获取LCD属性

来源:互联网 发布:gb12348-2008标准数据 编辑:程序博客网 时间:2024/05/20 23:37

 

来自WINCE的MSDN手册

 

 

This function retrieves information about one of the graphics modes for a display device. To retrieve information for all the graphics modes of a display device, make a series of calls to this function.

BOOL EnumDisplaySettings(  LPCTSTR lpszDeviceName,  DWORD iModeNum,  LPDEVMODE lpDevMode);

Parameters

lpszDeviceName
[in] Pointer to a null-terminated string that specifies the display device.

This parameter is either NULL or a DISPLAY_DEVICE.DeviceName returned fromEnumDisplayDevices.

A NULL value specifies the current display device on the system that is running the calling thread.

iModeNum
[in] Specifies the type of information to retrieve.

This value can be a graphics mode index or one of values shown in the following table.

ValueDescriptionENUM_CURRENT_SETTINGSRetrieve the current settings for the display device.ENUM_REGISTRY_SETTINGSRetrieve the settings for the display devices that are currently stored in the registry.

For more information, see Remarks.

lpDevMode
[out] Pointer to a DEVMODE structure that will contain the information about the specified graphics mode.

Before calling EnumDisplaySettings, set the dmSize member tosizeof(DEVMODE), and set thedmDriverExtra member to indicate the size, in bytes, of the additional space available to receive private driver data.

The EnumDisplaySettings function sets values for the followingDEVMODE members:

  • dmBitsPerPel
  • dmPelsWidth
  • dmPelsHeight
  • dmDisplayFlags
  • dmDisplayFrequency

Return Values

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero.

To get extended error information, call GetLastError.

Remarks

The function fails if iModeNum is greater than the index of the display device's last graphics mode.

You can use iModeNum to enumerate all of a display device's graphics modes.

Graphics mode indexes start at zero.

To obtain information for all of a display device's graphics modes, make a series of calls toEnumDisplaySettings. To do this, setiModeNum to zero for the first call and then incrementiModeNum by one for each subsequent call. Continue calling the function until the return value is zero.

When you call EnumDisplaySettings with iModeNum set to zero, the operating system initializes and caches information about the display device.

When you call EnumDisplaySettings with iModeNum set to a nonzero value, the function returns the information that was cached the last time the function was called withiModeNum set to zero.

Requirements

OS Versions: Windows CE .NET 4.2 and later.
Header: Windows.h.
Link Library: Coredll.lib.

See Also

ChangeDisplaySettingsEx | CreateDC | DEVMODE | DISPLAY_DEVICE | EnumDisplayDevices |GDI Functions


© 2005 Microsoft Corporation. All rights reserved.