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

📄 agl.h

📁 TI公司的算法标准 Framework5的源代码
💻 H
字号:
/*! \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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -