H A D | sqlite3.c | 5793 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 5803 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 5813 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 18097 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 18100 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } 18101 #define VFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 18103 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } 18104 #define SFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 18106 SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } 18107 #define MFUNCTION(zName, nArg, xPtr, xFunc) \ argument [all …]
|