X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fphp_pq_misc.h;h=eee535bf55589b6af3a81490f34e1e758c10a419;hb=67cf30cceef7c819daabc7928edf73b1d2b894ab;hp=c4fed18dde4d3530cceaa456d628603fbada311f;hpb=a06db6d217fc8ba0fd9b8273a9e595477d59afcc;p=m6w6%2Fext-pq diff --git a/src/php_pq_misc.h b/src/php_pq_misc.h index c4fed18..eee535b 100644 --- a/src/php_pq_misc.h +++ b/src/php_pq_misc.h @@ -28,9 +28,9 @@ typedef enum { #include "php_pqres.h" /* clear result object associated with a result handle */ -extern void php_pq_clear_res(PGresult *r); +extern void php_pqres_clear(PGresult *r); /* clear any asynchronous results */ -extern void php_pq_clear_conn(PGconn *conn); +extern void php_pqconn_clear(PGconn *conn); /* safe wrappers to clear any asynchronous wrappers before querying synchronously */ extern PGresult *php_pq_exec(PGconn *conn, const char *query); extern PGresult *php_pq_exec_params(PGconn *conn, const char *command, int nParams, const Oid *paramTypes, const char *const * paramValues, const int *paramLengths, const int *paramFormats, int resultFormat);