X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pqstm.h;h=e40420c4f9a94657d2ea6a5b9148ed1fee2e0677;hp=07428593cb3f9b21dd13f93419758ea8d23fcfbf;hb=da7b5981c5ae28504434c492d468913645111d66;hpb=9f5cecf26bd70a92ed013f31afec59e272623ac1 diff --git a/src/php_pqstm.h b/src/php_pqstm.h index 0742859..e40420c 100644 --- a/src/php_pqstm.h +++ b/src/php_pqstm.h @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2013, Michael Wallner | + | Copyright (c) 2013, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -20,6 +20,7 @@ typedef struct php_pqstm { php_pqconn_object_t *conn; char *name; HashTable bound; + php_pq_params_t *params; } php_pqstm_t; typedef struct php_pqstm_object { @@ -33,6 +34,7 @@ zend_class_entry *php_pqstm_class_entry; zend_object_value php_pqstm_create_object_ex(zend_class_entry *ce, php_pqstm_t *intern, php_pqstm_object_t **ptr TSRMLS_DC); PHP_MINIT_FUNCTION(pqstm); +PHP_MSHUTDOWN_FUNCTION(pqstm); #endif