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

📄 amplat.h

📁 JPEG解压软件,包含PC端的测试程序,程序结构比较清晰
💻 H
字号:
/*
 * AMPlat.h
 *
 *
 */

#ifndef _AMPLAT_H_
#define _AMPLAT_H_

//user must include this file and no other files should be included

//#define __SYMBIAN32__
#define __WIN32__
//#define _PALM_OS_
//#define _WINCE_
//#define _BREW_OS_




/////////////SYMBIAN//////////////////
#ifdef __SYMBIAN32__
#ifdef __cplusplus
#include <e32def.h>
#include <e32std.h>
#include <f32file.h> 
#include <sys\unistd.h> 
#include <coeutils.h>
#include <eikfutil.h>
#endif	/* __cplusplus */
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#endif	/* __SYMBIAN32__ */



/////////////////PALM//////////////////
#ifdef _PALM_OS_
#include <Palmos.h>
#include <VFSMgr.h>
#endif	/* _PALM_OS_ */


///////////////WINCE////////////////////
#ifdef _WINCE_
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#endif	/* _WINCE_ */

////////////////WIN32/////////////////////
#ifdef __WIN32__
#include <windows.h>
#endif	/* __WIN32__ */


////////////BREW//////////////////////////
#ifdef _BREW_OS_
#include "AEEStdLib.h"
#endif	/* _BREW_OS_ */

#endif /* _AMPLAT_H_ */

⌨️ 快捷键说明

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