@@ -215,28 +215,28 @@ function mysql_get_host_info(mysql::Ptr{Cvoid})
215
215
end
216
216
217
217
# int mysql_get_option(MYSQL *mysql, enum mysql_option option, const void *arg)
218
- function mysql_get_option (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Cuint} )
218
+ function mysql_get_option_Cuint (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Cuint} )
219
219
return @c (:mysql_get_option ,
220
220
Cint,
221
221
(Ptr{Cvoid}, Cint, Ref{Cuint}),
222
222
mysql, option, arg)
223
223
end
224
224
225
- function mysql_get_option (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Culong} )
225
+ function mysql_get_option_Culong (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Culong} )
226
226
return @c (:mysql_get_option ,
227
227
Cint,
228
228
(Ptr{Cvoid}, Cint, Ref{Culong}),
229
229
mysql, option, arg)
230
230
end
231
231
232
- function mysql_get_option (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Bool} )
232
+ function mysql_get_option_Bool (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ref{Bool} )
233
233
return @c (:mysql_get_option ,
234
234
Cint,
235
235
(Ptr{Cvoid}, Cint, Ref{Bool}),
236
236
mysql, option, arg)
237
237
end
238
238
239
- function mysql_get_option (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ptr{Cvoid} )
239
+ function mysql_get_option_Cvoid (mysql:: Ptr{Cvoid} , option:: Integer , arg:: Ptr{Cvoid} )
240
240
return @c (:mysql_get_option ,
241
241
Cint,
242
242
(Ptr{Cvoid}, Cint, Ptr{Cvoid}),
@@ -338,28 +338,28 @@ function mysql_num_rows(results::Ptr{Cvoid})
338
338
end
339
339
340
340
# int mysql_options(MYSQL *mysql, enum mysql_option option, const void *arg)
341
- function mysql_options (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Cuint} )
341
+ function mysql_options_Cuint (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Cuint} )
342
342
return @c (:mysql_options ,
343
343
Cint,
344
344
(Ptr{Cvoid}, Cint, Ref{Cuint}),
345
345
mysql, option, arg)
346
346
end
347
347
348
- function mysql_options (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Culong} )
348
+ function mysql_options_Culong (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Culong} )
349
349
return @c (:mysql_options ,
350
350
Cint,
351
351
(Ptr{Cvoid}, Cint, Ref{Culong}),
352
352
mysql, option, arg)
353
353
end
354
354
355
- function mysql_options (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Bool} )
355
+ function mysql_options_Bool (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ref{Bool} )
356
356
return @c (:mysql_options ,
357
357
Cint,
358
358
(Ptr{Cvoid}, Cint, Ref{Bool}),
359
359
mysql, option, arg)
360
360
end
361
361
362
- function mysql_options (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ptr{Cvoid} )
362
+ function mysql_options_Cvoid (mysql:: Ptr{Cvoid} , option:: mysql_option , arg:: Ptr{Cvoid} )
363
363
return @c (:mysql_options ,
364
364
Cint,
365
365
(Ptr{Cvoid}, Cint, Ptr{Cvoid}),
0 commit comments