X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fphp_pq_misc.h;h=196b35cc88e2f21c16d3966bd673499df99421a6;hb=1c52f7b4a52260c93351de3d1c83748f85e77f6c;hp=919892952e0576d8e7314f1ddc95ad2af13da1e3;hpb=bf2e263195f9909b017fcf93d96cfc83a97ad2e3;p=m6w6%2Fext-pq diff --git a/src/php_pq_misc.h b/src/php_pq_misc.h index 9198929..196b35c 100644 --- a/src/php_pq_misc.h +++ b/src/php_pq_misc.h @@ -18,6 +18,8 @@ typedef int STATUS; /* SUCCESS/FAILURE */ +#include "php_pqres.h" + /* TSRM morony */ #if PHP_VERSION_ID >= 50700 # define z_is_true(z) zend_is_true(z TSRMLS_CC) @@ -42,8 +44,7 @@ zval *php_pqdt_from_string(char *datetime_str, size_t datetime_len, char *fmt, z zend_class_entry *php_pqconv_class_entry; -HashTable *php_pq_parse_array(const char *val_str, size_t val_len, Oid typ TSRMLS_DC); -zval *php_pq_typed_zval(char *val_str, size_t val_len, Oid typ TSRMLS_DC); +HashTable *php_pq_parse_array(php_pqres_t *res, const char *val_str, size_t val_len, Oid typ TSRMLS_DC); PHP_MINIT_FUNCTION(pq_misc);