X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pq_misc.h;h=937d7ad574d58b70f44aade326f602eeb2d33163;hp=5bf81601b2d52f8145de9d7accee433c5989e506;hb=6e28a8741be3fccdaca960e492c31bc26837a4ed;hpb=9ba862160ca65ed9a1e5eada87dcceba7fbf08d7 diff --git a/src/php_pq_misc.h b/src/php_pq_misc.h index 5bf8160..937d7ad 100644 --- a/src/php_pq_misc.h +++ b/src/php_pq_misc.h @@ -16,38 +16,44 @@ #include -typedef int STATUS; /* SUCCESS/FAILURE */ +#if PHP_VERSION_ID < 50500 +#undef SUCCESS +#undef FAILURE +typedef enum { + SUCCESS = 0, + FAILURE = -1 +} ZEND_RESULT_CODE; +#endif #include "php_pqres.h" -/* 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 +#define z_is_true zend_is_true +#define smart_str_s(ss) (ss)->s +#define smart_str_v(ss) (ss)->s->val +#define smart_str_l(ss) (ss)->s->len /* trim LF from EOL */ -char *rtrim(char *e); +extern char *php_pq_rtrim(char *e); /* R, W, RW */ -const char *strmode(long mode); +extern const char *php_pq_strmode(long mode); /* compare array index */ -int compare_index(const void *lptr, const void *rptr TSRMLS_DC); +extern int php_pq_compare_index(const void *lptr, const void *rptr); + +#define PHP_PQerrorMessage(c) php_pq_rtrim(PQerrorMessage((c))) +#define PHP_PQresultErrorMessage(r) php_pq_rtrim(PQresultErrorMessage((r))) -#define PHP_PQerrorMessage(c) rtrim(PQerrorMessage((c))) -#define PHP_PQresultErrorMessage(r) rtrim(PQresultErrorMessage((r))) +extern zend_class_entry *php_pqdt_class_entry; +extern zval *php_pqdt_from_string(zval *zv, char *input_fmt, char *dt_str, size_t dt_len, char *output_fmt, zval *ztimezone); +extern zend_string *php_pqdt_to_string(zval *zdt, const char *format); -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); -void php_pqdt_to_string(zval *zdt, const char *format, char **str_buf, size_t *str_len TSRMLS_DC); +extern zend_class_entry *php_pqconv_class_entry; -zend_class_entry *php_pqconv_class_entry; +extern HashTable *php_pq_parse_array(php_pqres_t *res, const char *val_str, size_t val_len, Oid typ); -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); +extern PHP_MINIT_FUNCTION(pq_misc); #endif