1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Windows build fix

This commit is contained in:
unknown
2003-01-18 14:04:34 -08:00
parent 193d1f6c3b
commit e2c7d5d7ec
10 changed files with 66 additions and 58 deletions

View File

@ -19,14 +19,14 @@
#define _typelib_h
typedef struct st_typelib { /* Different types saved here */
uint count; /* How many types */
unsigned int count; /* How many types */
const char *name; /* Name of typelib */
const char **type_names;
} TYPELIB;
extern int find_type(char *x,TYPELIB *typelib,uint full_name);
extern void make_type(char *to,uint nr,TYPELIB *typelib);
extern const char *get_type(TYPELIB *typelib,uint nr);
extern int find_type(char *x,TYPELIB *typelib,unsigned int full_name);
extern void make_type(char *to,unsigned int nr,TYPELIB *typelib);
extern const char *get_type(TYPELIB *typelib,unsigned int nr);
extern TYPELIB sql_protocol_typelib;