📄 fonts_defs.h
字号:
/****************************************************************************************************
* Copyright (c) 2005 ZORAN Corporation, All Rights Reserved
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
*
* File: fonts_defs.h
*
* Description:
* =========
*
****************************************************************************************************/
#include "Config.h" // Global Configuration - do not remove!
#include "include\sysdefs.h" // Global definition - do not remove!
#ifndef _FONTS_DEFS_H_
#define _FONTS_DEFS_H_
/****************************************************************************************************
* INCLUDE FILES: Only typedef header files are allowed to be included here.
****************************************************************************************************/
// Include C Standard
// Include project specific, only type definition header files are allowed to be included
/****************************************************************************************************
* DEFINITION: Public named constants
****************************************************************************************************/
/****************************************************************************************************
* DEFINITION: Public macros
****************************************************************************************************/
#define FONT_GetUnicodeCharPageAddr( _pCurrentFont_ , _wUnicode_ ) \
*((_pCurrentFont_)->m_pUnicodePage+unicode_page_index_lookup[(_wUnicode_)>> 8])
#define FONT_GetUnicodeCharAddr( _poUniPage_ , _wUnicode_ ) \
(UINT8*)(*((_poUniPage_) + ((_wUnicode_ )& 0xFF)))
/****************************************************************************************************
* DEFINITION: Public typedefs
****************************************************************************************************/
#endif // _FONTS_DEFS_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -