zts and 5.6 fixes
[m6w6/ext-pq] / src / php_pq_misc.h
index 07f75a34dda611b26f735edc1c0b88b1b2e310e8..919892952e0576d8e7314f1ddc95ad2af13da1e3 100644 (file)
 
 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,12 +37,11 @@ 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(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);