X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fphp_pq_misc.h;h=d515d29e7c8c220417df4506a7679d1d126f6d6d;hb=218002ba9087cf49f90e5f098f68a154d6092c78;hp=d81d3c3456c15f376c082cc1b561a8b8c68ef561;hpb=9f5cecf26bd70a92ed013f31afec59e272623ac1;p=m6w6%2Fext-pq diff --git a/src/php_pq_misc.h b/src/php_pq_misc.h index d81d3c3..d515d29 100644 --- a/src/php_pq_misc.h +++ b/src/php_pq_misc.h @@ -15,9 +15,17 @@ #define PHP_PQ_ERROR_H #include +#include "php_pqres.h" typedef int STATUS; /* SUCCESS/FAILURE */ +/* TSRM morony */ +#if PHP_VERSION_ID >= 50700 +# define z_is_true(z) zend_is_true(z TSRMLS_CC) +#else +# define z_is_true zend_is_true +#endif + /* trim LF from EOL */ char *rtrim(char *e); @@ -30,8 +38,14 @@ int compare_index(const void *lptr, const void *rptr TSRMLS_DC); #define PHP_PQerrorMessage(c) rtrim(PQerrorMessage((c))) #define PHP_PQresultErrorMessage(r) rtrim(PQresultErrorMessage((r))) -int php_pq_types_to_array(HashTable *ht, Oid **types TSRMLS_DC); -int php_pq_params_to_array(HashTable *ht, char ***params, HashTable *zdtor TSRMLS_DC); +zend_class_entry *php_pqdt_class_entry; +zval *php_pqdt_from_string(char *datetime_str, size_t datetime_len, char *fmt, zval *zv TSRMLS_DC); + +zend_class_entry *php_pqconv_class_entry; + +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); #endif