diff options
author | hf@deer.(none) <> | 2003-08-28 13:39:46 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-08-28 13:39:46 +0500 |
commit | bf3e65b128bad752ceecc3bb37ca5317902891e2 (patch) | |
tree | 2fa128cdda2d8d4fedbbc2d8a75ea63787e186bd /libmysqld/libmysqld.c | |
parent | 42171225eb8b94bcb35c47512da735dc8a4803fc (diff) | |
download | mariadb-git-bf3e65b128bad752ceecc3bb37ca5317902891e2.tar.gz |
SCRUM:
Fixed some mess with STDCALL in function's declarations
Diffstat (limited to 'libmysqld/libmysqld.c')
-rw-r--r-- | libmysqld/libmysqld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 357c13c5826..48b3397ee7c 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -59,7 +59,7 @@ #endif void free_old_query(MYSQL *mysql); -my_bool +my_bool STDCALL emb_advanced_command(MYSQL *mysql, enum enum_server_command command, const char *header, ulong header_length, const char *arg, ulong arg_length, my_bool skip_check); @@ -169,7 +169,7 @@ static inline int mysql_init_charset(MYSQL *mysql) else the lengths are calculated from the offset between pointers. **************************************************************************/ -static void emb_fetch_lengths(ulong *to, MYSQL_ROW column, uint field_count) +static void STDCALL emb_fetch_lengths(ulong *to, MYSQL_ROW column, uint field_count) { MYSQL_ROW end; |