summaryrefslogtreecommitdiff
path: root/include/typelib.h
diff options
context:
space:
mode:
authorunknown <venu@myvenu.com>2003-01-18 14:04:34 -0800
committerunknown <venu@myvenu.com>2003-01-18 14:04:34 -0800
commite2c7d5d7ec77d056cc2ad7c9d9ef7cb132cc78de (patch)
tree0224ea691e3d85f3eebb0412ae0b6eea5a4e39c8 /include/typelib.h
parent193d1f6c3bcb05ff694c8e300f00b68b44b08d24 (diff)
downloadmariadb-git-e2c7d5d7ec77d056cc2ad7c9d9ef7cb132cc78de.tar.gz
Windows build fix
Diffstat (limited to 'include/typelib.h')
-rw-r--r--include/typelib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/typelib.h b/include/typelib.h
index 2999de563ac..1b049d19a11 100644
--- a/include/typelib.h
+++ b/include/typelib.h
@@ -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;