mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix the return type of the xStep function in the FuncDef structure
definition. (CVS 428) FossilOrigin-Name: 753adb789e1624ceeb52066df350dcd99aa4e3df
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
*************************************************************************
|
||||
** Internal interface definitions for SQLite.
|
||||
**
|
||||
** @(#) $Id: sqliteInt.h,v 1.103 2002/03/06 22:01:36 drh Exp $
|
||||
** @(#) $Id: sqliteInt.h,v 1.104 2002/03/12 23:10:05 drh Exp $
|
||||
*/
|
||||
#include "sqlite.h"
|
||||
#include "hash.h"
|
||||
@ -195,7 +195,7 @@ struct sqlite {
|
||||
*/
|
||||
struct FuncDef {
|
||||
void (*xFunc)(sqlite_func*,int,const char**); /* Regular function */
|
||||
void *(*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */
|
||||
void (*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */
|
||||
void (*xFinalize)(sqlite_func*); /* Aggregate function finializer */
|
||||
int nArg; /* Number of arguments */
|
||||
void *pUserData; /* User data parameter */
|
||||
|
Reference in New Issue
Block a user