⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ltlcd.h

📁 此代码为WCE5.0下显示器的源代码
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
/****************************************************************************\
*
*  Module Name    LTLCD.H
*  Project        ATI GDO (Graphics Dispaly Object Module)
*  Device         RageProPNP / Rage LT Pro (GDO)
*
*  Description    Global header file for GDO LCD
*
*
*  (c) 1998 ATI Technologies Inc. (unpublished)
*
*  All rights reserved.  This notice is intended as a precaution against
*  inadvertent publication and does not imply publication or any waiver
*  of confidentiality.  The year included in the foregoing notice is the
*  year of creation of the work.
*
*
*  LOG OF CHANGES
*
*  05-14-98   1.0 [YK] initial revision
*
\****************************************************************************/
#ifndef _LTLCD_H
#define _LTLCD_H

#pragma pack(1)

BOOL FAR LCDEnable(HDDL hDDL, HGDO hGDO, LPHW_ASIC_ID lpHwAsicID,
                   LPHW_DISPLAY_ENABLEDATA lpEnableData);

VOID FAR LCDDisable(HGDO hGDO);

VOID FAR LCDSetDisplayOff(HGDO hGDO, ULONG ulController);

VOID FAR LCDSetDisplayOn(HGDO hGDO, ULONG ulController);

VOID FAR LCDSetDPMS(HGDO hGDO, ULONG ulState);

BOOL FAR LCDIsDisplayPhysicallyConnected(HGDO hGDO);

BOOL FAR LCDIsDeviceHotPluggable(HGDO hGDO);

BOOL FAR LCDIsModeSupported(HGDO hGDO, LPDEVMODE_INFO lpMI, ULONG ulController);

VOID FAR LCDSetMode(HGDO hGDO, LPDEVMODE_INFO lpMI, ULONG ulController,
                    PFNDALTIMINGS pfnDalSetAdjustmentTimings, LPHANDLE lpParameter);

VOID FAR LCDGetContrastAdjustment( HGDO hGDO, LPHW_ADJUSTMENT lpAdjustment,
                                   LPDEVMODE_INFO lpMI);

VOID FAR LCDSetContrastAdjustment( HGDO hGDO, LONG lContrastLevel);

VOID FAR LCDBlank(HGDO hGDO, ULONG ulController, BOOL bBlank);

BOOL FAR LCDGetEdidData(HGDO hGDO, LPEDID_BUFFER lpEdidBuffer);

VOID FAR LCDInitializeDevice(HGDO hGDO, EDID_BUFFER EdidBuffer);

VOID FAR LCDPreModeChange(HGDO hGDO,
                          LPDEVMODE_INFO lpMI); 
                          
VOID FAR LCDPostModeChange(HGDO hGDO,
                           LPDEVMODE_INFO lpMI);

#pragma pack()
#endif /*_LTLCD_H*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -