mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Fix an incorrect type signature for the loadable extension pointer
for sqlite3_result_pointer(). FossilOrigin-Name: 0bd7875bd9948836a14061275eb8ddac627f562a49f59f400ec98c00e2be82c5
This commit is contained in:
@@ -290,7 +290,7 @@ struct sqlite3_api_routines {
|
||||
int (*prepare16_v3)(sqlite3*,const void*,int,unsigned int,
|
||||
sqlite3_stmt**,const void**);
|
||||
int (*bind_pointer)(sqlite3_stmt*,int,void*);
|
||||
int (*result_pointer)(sqlite3_context*,void*);
|
||||
void (*result_pointer)(sqlite3_context*,void*);
|
||||
void *(*value_pointer)(sqlite3_value*);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user