jelusstatinterface.h
来自「一个信息检索模型」· C头文件 代码 · 共 23 行
H
23 行
#ifndef __JELUSSTATINTERFACE_H__
#define __JELUSSTATINTERFACE_H__
#ifdef INSUNDLL
#undef INSUNDLL
#endif
#ifdef _USRDLL
#define INSUN_DLL __declspec(dllexport)
#else
#define INSUN_DLL
#endif
extern "C" //提供C语言形式的接口,用于管理词典!
{ //说明:本系统对于不释放的内存自动回收。
INSUN_DLL void ClearStatFileNameList();
INSUN_DLL bool AppendStatFileName(const char * ACorpusFileName);
//如果文件不存在返回false,并且不添加到统计文件列表中!
INSUN_DLL bool SegStat(const char * AConfPath);
INSUN_DLL bool PosStat(const char * AConfPath);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?