diff options
author | Wez Furlong <wez@php.net> | 2003-06-21 12:29:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-06-21 12:29:32 +0000 |
commit | 9e858102a8acbdb78c568d58a5206498d25c9163 (patch) | |
tree | 6e908989a7928b26bc5b65fafc6639c84fc165d5 /ext/sqlite/php_sqlite.h | |
parent | 418e4aee58a34d11589d99c2c260e3aa88eb4081 (diff) | |
download | php-git-9e858102a8acbdb78c568d58a5206498d25c9163.tar.gz |
Add a pair of functions to handle the binary coding used by PHP from within
UDF callbacks.
Add test for binary functions.
Fix proto.
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r-- | ext/sqlite/php_sqlite.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index 37538ba30f..3f937e4656 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -78,6 +78,8 @@ PHP_FUNCTION(sqlite_error_string); PHP_FUNCTION(sqlite_create_aggregate); PHP_FUNCTION(sqlite_create_function); +PHP_FUNCTION(sqlite_udf_decode_binary); +PHP_FUNCTION(sqlite_udf_encode_binary); ZEND_BEGIN_MODULE_GLOBALS(sqlite) long assoc_case; |