basetype.h

来自「基于8515的lcd显示控制程序」· C头文件 代码 · 共 49 行

H
49
字号
//
//	File Name:		BaseType.h
//
//	Title:			Base Types
//
//	Description:	No standard C types are used in this code.
//					All variables are typed with the base types typedef'd here.
//
//	Creation Date:	2/2/00 11:49:37 PM
//
//	By:				A.C. Verbeck
//
//	This file is subject to the terms and conditions of the GNU General Public//	License.  See the file COPYING in the main directory of this archive//	for more details.//

typedef	enum				BOOLtag	{ FALSE=0, TRUE=1 } Bool;

typedef	char				Int8;
typedef	char*				PInt8;

typedef	unsigned char		UInt8;
typedef	unsigned char*		PUInt8;

typedef	short int			Int16;
typedef	short int*			PInt16;

typedef	unsigned short int	UInt16;
typedef	unsigned short int*	PUInt16;

typedef	long int			Int32;
typedef	long int*			PInt32;

typedef	unsigned long int	UInt32;
typedef	unsigned long int*	PUInt32;

typedef	char				Char;
typedef	char*				String;

typedef	unsigned char		Buffer;
typedef	unsigned char*		PBuffer;

#define	TASK_LOOP			for (;;)

//
//	End of BaseType.h
//

⌨️ 快捷键说明

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