@@ -215,28 +215,28 @@ function mysql_get_host_info(mysql::Ptr{Cvoid})
215215end
216216
217217# 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} )
219219 return @c (:mysql_get_option ,
220220 Cint,
221221 (Ptr{Cvoid}, Cint, Ref{Cuint}),
222222 mysql, option, arg)
223223end
224224
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} )
226226 return @c (:mysql_get_option ,
227227 Cint,
228228 (Ptr{Cvoid}, Cint, Ref{Culong}),
229229 mysql, option, arg)
230230end
231231
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} )
233233 return @c (:mysql_get_option ,
234234 Cint,
235235 (Ptr{Cvoid}, Cint, Ref{Bool}),
236236 mysql, option, arg)
237237end
238238
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} )
240240 return @c (:mysql_get_option ,
241241 Cint,
242242 (Ptr{Cvoid}, Cint, Ptr{Cvoid}),
@@ -338,28 +338,28 @@ function mysql_num_rows(results::Ptr{Cvoid})
338338end
339339
340340# 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} )
342342 return @c (:mysql_options ,
343343 Cint,
344344 (Ptr{Cvoid}, Cint, Ref{Cuint}),
345345 mysql, option, arg)
346346end
347347
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} )
349349 return @c (:mysql_options ,
350350 Cint,
351351 (Ptr{Cvoid}, Cint, Ref{Culong}),
352352 mysql, option, arg)
353353end
354354
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} )
356356 return @c (:mysql_options ,
357357 Cint,
358358 (Ptr{Cvoid}, Cint, Ref{Bool}),
359359 mysql, option, arg)
360360end
361361
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} )
363363 return @c (:mysql_options ,
364364 Cint,
365365 (Ptr{Cvoid}, Cint, Ptr{Cvoid}),
0 commit comments