agl_font.h
来自「TI公司的算法标准 Framework5的源代码」· C头文件 代码 · 共 70 行
H
70 行
/*! \verbatim
==============================================================================
Copyright (C) 2002 A.T.E.M.E.
All Rights Reserved
------------------------------------------------------------------------------
MODULE NAME... AGL_FONT
FILENAME...... agl_font.h
PROJECT....... AGL
------------------------------------------------------------------------------
HISTORY:
V1.0 19/02/2002 TSO
------------------------------------------------------------------------------
\endverbatim <P> \file
\brief Header file for the font module initialization.
</P>*//*====================================================================*/
#ifndef __AGL_FONT_H__
#define __AGL_FONT_H__
#include <agl_font_lucida.h>
#ifdef __cplusplus
extern "C" {
#endif
/*--------------------------------------------------------------------------*/
/*=======================================================================*//*!
\defgroup FONT FONT - Video font definition module
This module provides fonts which can be used for strings insertion in pictures.
<b> Initialising the module </b>
You initialize the module by calling the FONT_init() function. This function
initialize all fonts.
</P>*//*==============================================================*//*@{*/
#define FONT_CHARSET_NUM 91
/*--------------------------------------------------------------------------*/
/*!
This function initialize all fonts. It must be called before using any font of the FONT module.
\return Nothing
\b Example:
\verbatim
FONT_init();
\endverbatim
*/
Void FONT_init(Void);
/*@}*//* end of group STRING */
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?