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

📄 amcomdef.h

📁 JPEG解压软件,包含PC端的测试程序,程序结构比较清晰
💻 H
字号:
/*
 * AMComDef.h
 *
 * the definitions of basic data types and structures.
 * 
 */
#ifndef _AMCOMDEF_H
#define _AMCOMDEF_H

///////////////basic data types///////////////

typedef long			MLong;
typedef double			MDouble;
typedef unsigned char 	MByte;
typedef unsigned short 	MWord;
typedef unsigned long 	MDWord;
typedef void*			MHandle;
typedef char			MChar;
typedef int				MBool;
typedef void			MVoid;
typedef void*			MPVoid;
typedef char*			MPChar;
typedef short			MShort;
typedef const char*		MPCChar;

////////////////constants////////////////////////

#define MNull		0
#define MFalse		0
#define MTrue		1

//#ifndef MAX_PATH
//#define MAX_PATH	256
//#endif



#endif	/* _AMCOMDEF_H */

⌨️ 快捷键说明

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