agl.h

来自「TI公司的算法标准 Framework5的源代码」· C头文件 代码 · 共 71 行

H
71
字号
/*! \verbatim
==============================================================================
                     Copyright (C) 2002 A.T.E.M.E.
                          All Rights Reserved
------------------------------------------------------------------------------
 MODULE NAME... AGL
 FILENAME...... agl.h
 PROJECT....... AGL
------------------------------------------------------------------------------
 HISTORY:
 V1.0    19/02/2002  TSO
------------------------------------------------------------------------------
\endverbatim <P> \file

\brief Generic header file for all AGL header files

</P>*//*====================================================================*/

#ifndef __AGL_H__
#define __AGL_H__

#include <atetypes_1.h>
/*--------------------------------------------------------------------------*/

#ifdef __cplusplus
extern "C" {
#endif

#define FONT_COL_TRANSP 0xFFFFFFFF

/*! 
	Font parameters.
*/
typedef struct {
	//! This field defines the width in pixels of the font.
	Uint32 width;
	
	//! This field defines the height in pixels of the font.
	Uint32 height;
	
	//! This field is a poitner to the font data.
	const Uint8 *data;
} FONT_Font;

#include <agl_string.h>
#include <agl_conv.h>
#include <agl_font.h>

/*--------------------------------------------------------------------------*/
/*! Return the version of AGL library

    This function return the version of library used

	\return	 version of AGL library

	\b Example: 
	\verbatim
	Uint32 version;
	
	version=AGL_getLibraryVersion();
	
	\endverbatim
*/
Uint32 AGL_getLibraryVersion();

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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