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

📄 arimadef.h

📁 这是用Labwindows开发的一个RF test程序。 用于日本机种的组装后ANT 测试。
💻 H
字号:
//*****************************************************************************
//
// Description:
//
//
// $RCSfile: arimadef.h $
// $Revision: 1.3 $
// $Date: 2003/04/25 10:44:34 $
// $Author: lucienhsu $
//
//******************************** History *************************************
//
// $Log: arimadef.h $
// Revision 1.3  2003/04/25 10:44:34  lucienhsu
// Modify the new structure
// Revision 1.2  2003/04/07 11:09:25  lucienhsu
// Add the new editor structure for EMS
// Revision 1.1  2003/03/18 13:14:25  peterhsu
// Initial revision
// Revision 1.1  2003/01/10 13:38:32  davidliu
// Initial revision
//
//******************************************************************************
//******************************************************************************
// Do not modify the History area above !!!
//******************************************************************************
//******************************************************************************
#ifndef _ARIMADEF_H_
#define _ARIMADEF_H_
/********************************************************************************/
/*							Content of Included File Start						*/
/********************************************************************************/
typedef unsigned char		Bool1;
typedef unsigned char		UInt8;
typedef unsigned short		UInt16;
typedef unsigned long		UInt32;
#ifndef ARIMA_SIMULATOR
typedef unsigned long long	UInt64;
#else
typedef unsigned long		UInt64;
#endif
typedef signed char 		Int8;
typedef signed short		Int16;
typedef signed long 		Int32;
#ifndef ARIMA_SIMULATOR
typedef signed long long	Int64;
#else
typedef signed long 		Int64;
#endif
typedef float				Float32;
typedef double				Float64;
#ifndef ARIMA_SIMULATOR
typedef long double 		LFloat64;
#else
typedef double				LFloat64;
#endif
typedef int 				INT;
typedef char				Char;

#ifndef TRUE
#define TRUE	1
#endif

#ifndef FALSE
#define FALSE	0
#endif

#ifndef NULL
#define NULL	0
#endif

#ifndef OPEN
#define OPEN	(0x1)
#endif

#ifndef CLOSE
#define CLOSE	(0x0)
#endif

typedef enum{
	ALIN_B,
	ALIN_DB
} AlignType_t;

typedef enum{
	U_NONE = 0x01,
	U_80   = 0x80,	//this constant can not be changed
	U_81   = 0x81,	//this constant can not be changed
	U_82   = 0x82	//this constant can not be changed
} UCS2_TYPE_t;

#define ALIAS_0 	0x80

#ifdef LUCIEN // 2003-4-3

#define OBJECT_MASK 0xFFFF
/*- Add the new structure for EMS, MMS editor, 2003-3-26 -*/
/*--------------------------------------------------------*/
typedef struct st_attribute
{
	u16 	v_FontType			: 3;
	u16 	v_FontSize			: 3;	// 8, 10, 12, 14
	u16 	v_Alignment 		: 2;	// Left, Center, Right
	u16 	v_Color 			: 3;	// Black, Red, Grenn, Yellow
	u16 	v_Style_Bold		: 1;	// 彩砰

⌨️ 快捷键说明

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