amcomdef.h
来自「JPEG解压软件,包含PC端的测试程序,程序结构比较清晰」· C头文件 代码 · 共 38 行
H
38 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?