uiime_wb.h

来自「一个PDA GUI系统的源码」· C头文件 代码 · 共 44 行

H
44
字号
/*********************************************************************/
//	文 件 名:	uiIme_WB.h
//	程序说明:	五笔输入法
//	程序设计:	张学平
//				2001.11.05		设计完成		说明文档:R004-S216-0001
//	程序审查:	宋军霞
//				2002.01.25		审查完成		说明文档:R004-S216-0001
//	项目编号:	R004-S216
//	版	  本:	V1.0
//	版    权:	Reality Plus Technology (ShenZhen) Co.,Ltd.
/*********************************************************************/
#ifndef _UIIME_WB_H
#define _UIIME_WB_H

#define _DEBUG_IME_WB	1

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

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

/***********************************************
* wbStr:  code of wb                           *
* offset: offset of candidate word             *
* return: total count of candidate word        *
************************************************/
DLL_EXP(int) guiIme_wb(char *wbStr, DWORD *offset);

/******************************************************************
* offset: offset of candidate word, get from guiIme_wb()          *
* totalCount: total count of candidate word, get form guiIme_wb() *
* 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_wb(DWORD offset, unsigned short totalCount,\
		unsigned short startPos, unsigned short toReadCount, \
		unsigned short *pWordText);

#endif

⌨️ 快捷键说明

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