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

📄 zifile.h

📁 印尼字库和输入法
💻 H
字号:
/* zifile.h 
*/
/*****************************************************************************
* COPYRIGHT ZI AND SUBJECT TO CONFIDENTIALITY RESTRICTIONS                   *
*                                                                            *
* This file is the confidential and proprietary property of Zi Corporation   *
* of Canada, Inc. ("Zi") or one of its affiliates.                           *
**************************************************************************** */
#ifndef  _ZI_FILE_H_
#define  _ZI_FILE_H_

#include "ezicmn.h"


/*****************************************************************************
 * callback function definition
 *****************************************************************************/
 
 
typedef int (* ZiReadDataCallback)(void *, long, char *, int  );

/******************************************************************************
 * structure which need to pass in for engine initialization
 ******************************************************************************/
typedef struct _ZI_FILE_CONTEXT
{
    ZiReadDataCallback pZiCallbackFunction;
    
    PZI8VOID           pZiExtraCallbackInfo;
    
} ZI_FILE_CONTEXT;
typedef struct _ZI_FILE_CONTEXT ZI8RAMPOINTER PZI_FILE_CONTEXT;


/*****************************************************************************
 * the following functions are used internally used by the engine 
 *****************************************************************************/

ZI8FUNCTION PZI8VOID Zi8FileOpen(  PZI8VOID  pLangInfo);

ZI8FUNCTION ZI8USHORT Zi8ReadFile( PZI8VOID  pFileHandle,
                                   PZI8UCHAR pBuffer,
                                   ZI8LONG   lPos,
                                   ZI8USHORT uSize );

ZI8FUNCTION ZI8BOOL Zi8FileClose(  PZI8VOID pFileHandle );

#endif /* #ifndef  _ZI_FILE_H_ */

⌨️ 快捷键说明

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