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:
parent
404b35f224
commit
9e73f3d401
1 changed files with 3 additions and 3 deletions
6
dbdimp.c
6
dbdimp.c
|
@ -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,
|
||||
int len2, const void *string2)
|
||||
{
|
||||
|
@ -1221,7 +1221,7 @@ sqlite_db_collation_dispatcher(SV *func, int len1, const void *string1,
|
|||
return cmp;
|
||||
}
|
||||
|
||||
static int
|
||||
int
|
||||
sqlite_db_collation_dispatcher_utf8(
|
||||
SV *func, int len1, const void *string1,
|
||||
int len2, const void *string2)
|
||||
|
@ -1298,7 +1298,7 @@ sqlite3_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
static int
|
||||
int
|
||||
sqlite_db_progress_handler_dispatcher( SV *handler )
|
||||
{
|
||||
dTHX;
|
||||
|
|
Loading…
Add table
Reference in a new issue