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

📄 uiime_py.h

📁 嵌入工linux开发的源码
💻 H
字号:
/*********************************************************************/
//	文 件 名:	uiIme_PY.h
//	程序说明:	拼音输入法
//	程序设计:	张学平
//				2001.11.05		设计完成		说明文档:R004-S240-0001
//	程序审查:	宋军霞
//				2002.01.25		审查完成		说明文档:R004-S240-0001
//	项目编号:	R004-S240
//	版	  本:	V1.0
//	版    权:	Reality Plus Technology (ShenZhen) Co.,Ltd.
/*********************************************************************/
#ifndef _UIIME_PY_H
#define _UIIME_PY_H

#define _DEBUG_IME_PY	1

#include <pr2k.h>
#include <typedefine.h>

#if _DEBUG_IME_PY && _DEBUG
DLL_EXP(unsigned short) guiGetPy_Table(int index, char *pStr) ;
#endif

/***********************************************
* pyStr:  code of pinying                      *
* offset: offset of candidate word             *
* return: total count of candidate word        *
************************************************/
DLL_EXP(int) guiIme_py(char *pyStr, DWORD *offset);

/******************************************************************
* offset: offset of candidate word, get from guiIme_py()          *
* totalCount: total count of candidate word, get form guiIme_py() *
* startPos: start position of word to read                        *
* toReadCount: number of word to read                             *
* pWordText: buffer of word                                       *
* return: actual number of word read                              *
*******************************************************************/
DLL_EXP(int) guiGetCandidate_py(DWORD offset, unsigned short totalCount, \
					   unsigned short startPos, unsigned short toReadCount,\
					   unsigned short *pWordText);

#endif

⌨️ 快捷键说明

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