array parser
[m6w6/ext-pq] / src / php_pqcancel.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: pq |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2013, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13
14 #ifndef PHP_PQCANCEL_H
15 #define PHP_PQCANCEL_H
16
17 #include "php_pqconn.h"
18
19 typedef struct php_pqcancel {
20 PGcancel *cancel;
21 php_pqconn_object_t *conn;
22 } php_pqcancel_t;
23
24 typedef struct php_pqcancel_object {
25 zend_object zo;
26 zend_object_value zv;
27 HashTable *prophandler;
28 php_pqcancel_t *intern;
29 } php_pqcancel_object_t;
30
31 zend_class_entry *php_pqcancel_class_entry;
32 zend_object_value php_pqcancel_create_object_ex(zend_class_entry *ce, php_pqcancel_t *intern, php_pqcancel_object_t **ptr TSRMLS_DC);
33
34 PHP_MINIT_FUNCTION(pqcancel);
35
36 #endif
37
38 /*
39 * Local variables:
40 * tab-width: 4
41 * c-basic-offset: 4
42 * End:
43 * vim600: noet sw=4 ts=4 fdm=marker
44 * vim<600: noet sw=4 ts=4
45 */