dispinfo.h
来自「Lido PXA270平台开发板的最新BSP,包括源代码」· C头文件 代码 · 共 67 行
H
67 行
/***************************************************************************
* Name : dispinfo.h
* Title : MBX Display info structure header
* Author(s) : Imagination Technologies
* Created : 3rd March 2003
*
* Copyright : 2003 by Imagination Technologies. All rights reserved.
* : No part of this software, either material or conceptual
* : may be copied or distributed, transmitted, transcribed,
* : stored in a retrieval system or translated into any
* : human or computer language in any form by any means,
* : electronic, mechanical, manual or other-wise, or
* : disclosed to third parties without the express written
* : permission of Imagination Technologies Limited, Unit 8,
* : HomePark Industrial Estate, King's Langley, Hertfordshire,
* : WD4 8LZ, U.K.
*
* Description : MBX Display info structure header.
*
* Platform : WinCE
*
* Modifications:-
* $Log: dispinfo.h $
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*
****************************************************************************/
#ifndef _DISPINFO_H_
#define _DISPINFO_H_
#ifdef __cplusplus
extern "C"
{
#endif
typedef struct _PVR_DISPLAYINFO
{
PVOID pvFBLinBaseAddr;
ULONG ulDisplayWidth;
ULONG ulDisplayHeight;
ULONG ulDisplayPitch;
ULONG ulMonitorFrequency;
ULONG ulBpp;
ULONG ulRedBitMask;
ULONG ulGreenBitMask;
ULONG ulBlueBitMask;
ULONG ulAlphaBitMask;
}PVR_DISPLAYINFO, *PPVR_DISPLAYINFO;
BOOL GetDisplayInfo(PPVR_DISPLAYINFO psDisplayInfo);
#ifdef __cplusplus
}
#endif
#endif /* _DISPINFO_H_ */
/********************************** end of file ******************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?