zhifu gao
2023-04-24 331d57253ae25dd42c8e14930dee30cd8d2affa6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once
#ifdef WIN32
 
 
#ifdef _QMPUC_API_EXPORT
 
#define  _RPPUNCRAPI __declspec(dllexport)
#else
#define  _RPPUNCAPI __declspec(dllimport)
#endif
 
 
#else
#define _RPPUNCAPI  
#endif
 
 
 
 
#ifdef __cplusplus
extern "C" {
#endif
 
#define RPPUNC_DEFAULT_THREADNUM  4
    typedef  void* RPPUNC_HANDLE;
    typedef  void* RPPUNC_RESULT;
 
    _RPPUNCAPI RPPUNC_HANDLE RapidPuncInit(const char* model_dir,int nThreadNum);
    _RPPUNCAPI void RapidPuncFinal(RPPUNC_HANDLE Handle);
    _RPPUNCAPI RPPUNC_RESULT RapidPuncAddPunc(RPPUNC_HANDLE Handle,const char * szText);
 
    _RPPUNCAPI int RapidPuncGetResultLength(RPPUNC_RESULT Result);
    _RPPUNCAPI const char * RapidPuncGetResultText(RPPUNC_RESULT Result);
    _RPPUNCAPI void RapidPuncFree(RPPUNC_RESULT Result);
 
 
 
 
#ifdef __cplusplus
}
 
#endif