1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 14:48:32 -04:00

DBD-SQLite: made several callbacks back to int instead of static int (incompatible pointer type)

This commit is contained in:
Kenichi Ishigaki 2009-06-19 06:13:41 +00:00
parent 404b35f224
commit 9e73f3d401

View file

@ -1191,7 +1191,7 @@ sqlite3_db_create_aggregate(pTHX_ SV *dbh, const char *name, int argc, SV *aggr_
} }
static int int
sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1, sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
int len2, const void *string2) int len2, const void *string2)
{ {
@ -1221,7 +1221,7 @@ sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
return cmp; return cmp;
} }
static int int
sqlite_db_collation_dispatcher_utf8( sqlite_db_collation_dispatcher_utf8(
SV *func, int len1, const void *string1, SV *func, int len1, const void *string1,
int len2, const void *string2) int len2, const void *string2)
@ -1298,7 +1298,7 @@ sqlite3_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
return TRUE; return TRUE;
} }
static int int
sqlite_db_progress_handler_dispatcher( SV *handler ) sqlite_db_progress_handler_dispatcher( SV *handler )
{ {
dTHX; dTHX;