- release 1.5.2
[m6w6/ext-http] / php_http_requestdatashare_object.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
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) 2004-2007, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_REQUEST_DATASHARE_OBJECT_H
16 #define PHP_HTTP_REQUEST_DATASHARE_OBJECT_H
17 #ifdef HTTP_HAVE_CURL
18 #ifdef ZEND_ENGINE_2
19
20 typedef struct _http_requestdatashare_object_t {
21 zend_object zo;
22 http_request_datashare *share;
23 } http_requestdatashare_object;
24
25 extern zend_class_entry *http_requestdatashare_object_ce;
26 extern zend_function_entry http_requestdatashare_object_fe[];
27
28 extern PHP_MINIT_FUNCTION(http_requestdatashare_object);
29
30 #define http_requestdatashare_object_new(ce) _http_requestdatashare_object_new((ce) TSRMLS_CC)
31 extern zend_object_value _http_requestdatashare_object_new(zend_class_entry *ce TSRMLS_DC);
32 #define http_requestdatashare_object_new_ex(ce, s, ptr) _http_requestdatashare_object_new_ex((ce), (s), (ptr) TSRMLS_CC)
33 extern zend_object_value _http_requestdatashare_object_new_ex(zend_class_entry *ce, http_request_datashare *share, http_requestdatashare_object **ptr TSRMLS_DC);
34 #define http_requestdatashare_object_free(o) _http_requestdatashare_object_free((o) TSRMLS_CC)
35 extern void _http_requestdatashare_object_free(zend_object *object TSRMLS_DC);
36
37 PHP_METHOD(HttpRequestDataShare, __destruct);
38 PHP_METHOD(HttpRequestDataShare, count);
39 PHP_METHOD(HttpRequestDataShare, attach);
40 PHP_METHOD(HttpRequestDataShare, detach);
41 PHP_METHOD(HttpRequestDataShare, reset);
42 PHP_METHOD(HttpRequestDataShare, factory);
43 #ifndef WONKY
44 PHP_METHOD(HttpRequestDataShare, singleton);
45 #endif
46
47 #endif
48 #endif
49 #endif
50
51 /*
52 * Local variables:
53 * tab-width: 4
54 * c-basic-offset: 4
55 * End:
56 * vim600: noet sw=4 ts=4 fdm=marker
57 * vim<600: noet sw=4 ts=4
58 */
59