Fix all compilation errors

This commit is contained in:
Nishi 2026-06-19 02:39:41 +09:00
commit 4ebce359ea
13 changed files with 48 additions and 45 deletions

View file

@ -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 {

View file

@ -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;