Fix all compilation errors
This commit is contained in:
parent
73cb09624a
commit
4ebce359ea
13 changed files with 48 additions and 45 deletions
|
|
@ -140,12 +140,12 @@ typedef struct dict {
|
|||
TypeDicSeg segunit;
|
||||
TypeDicSeg maxunit;
|
||||
|
||||
IFunc getofs;
|
||||
IFunc getidx;
|
||||
IFunc getdic;
|
||||
IFunc putidx;
|
||||
IFunc putdic;
|
||||
IFunc rszdic;
|
||||
IFuncDict getofs;
|
||||
IFuncDict getidx;
|
||||
IFunc getdic;
|
||||
IFunc putidx;
|
||||
IFunc putdic;
|
||||
IFunc rszdic;
|
||||
} DICT;
|
||||
|
||||
typedef struct dictl {
|
||||
|
|
|
|||
|
|
@ -46,9 +46,11 @@ typedef unsigned char u_char;
|
|||
typedef unsigned short u_short;
|
||||
typedef unsigned int u_int;
|
||||
|
||||
typedef void (*VFunc)();
|
||||
typedef u_char* (*UCPFunc)();
|
||||
typedef int (*IFunc)();
|
||||
typedef void (*VFunc)(void*, void*, void*);
|
||||
typedef u_char* (*UCPFunc)(u_char*, u_char*, int);
|
||||
typedef int (*IFunc)(void*, int);
|
||||
|
||||
typedef int (*IFuncDict)(void*);
|
||||
|
||||
typedef u_char TypeGroup;
|
||||
typedef u_char TypeGram;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue