gbglobal.h

来自「某中文手写输入法公司的手写识别输入的实例源程序。」· C头文件 代码 · 共 54 行

H
54
字号
/*! \file GBGlobal.h	\brief GuoBi Man-Machine Interface (GBMMI) global structure definition.	\date 2006-08-31\n 	\version 1\n		\author gen.liu\n\n		  initial version\n */#ifndef	__GB_GLOBAL_H__#define	__GB_GLOBAL_H__#include "GBMMI.h"#ifndef WIN32#ifndef WINCE#include "gbwchar.h"#endif#endif/** 	\brief Global data of MMI*/typedef struct __tag_GBMMIGlobals{	GBInitData		initData ;					///< structure of data initialization#ifdef __GB_CHINESE_ENGINE__	GBUIInfo		uiInfo ;					///< some info of ui#endif		GBOutputInfo	outputInfo ;				///< structure of output information} GBMMIGlobals ;#ifndef GBAPI#ifdef GBIMPORT#define GBAPI  __declspec(dllimport)#else#define GBAPI	extern#endif#endif#ifdef __cplusplusextern "C" {#endif	GBAPI GBMMIGlobals g_gbMMIGlobals ;	GBAPI ENInputStruct ENIS;#ifdef __GB_CHINESE_ENGINE__	GBAPI EBInputStruct EBIS;#endif#ifdef __cplusplus}#endif#endif	//__GB_GLOBAL_H__

⌨️ 快捷键说明

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