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

📄 basetype.h

📁 基于8515的lcd显示控制程序
💻 H
字号:
//
//	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -