@@ -98,7 +98,7 @@ extern zend_class_entry *oci_coll_class_entry_ptr;
98
98
#define PHP_OCI_ERRBUF_LEN OCI_ERROR_MAXMSG_SIZE2
99
99
#else
100
100
#define PHP_OCI_ERRBUF_LEN OCI_ERROR_MAXMSG_SIZE
101
- #endif
101
+ #endif
102
102
103
103
/* The mode parameter for oci_connect() is overloaded and accepts both
104
104
* privilege and external authentication flags OR'd together.
@@ -136,7 +136,7 @@ typedef struct {
136
136
/* }}} */
137
137
138
138
/* {{{ php_oci_connection */
139
- typedef struct {
139
+ typedef struct {
140
140
zend_resource * id ; /* resource ID */
141
141
OCIEnv * env ; /* private env handle */
142
142
ub2 charset ; /* charset ID */
@@ -170,7 +170,7 @@ typedef struct {
170
170
/* }}} */
171
171
172
172
/* {{{ php_oci_descriptor */
173
- typedef struct {
173
+ typedef struct {
174
174
zend_resource * id ;
175
175
zend_ulong index ; /* descriptors hash table index */
176
176
php_oci_connection * connection ; /* parent connection handle */
@@ -187,15 +187,15 @@ typedef struct {
187
187
/* }}} */
188
188
189
189
/* {{{ php_oci_lob_ctx */
190
- typedef struct {
190
+ typedef struct {
191
191
char * * lob_data ; /* address of pointer to LOB data */
192
192
ub4 * lob_len ; /* address of LOB length variable (bytes) */
193
193
ub4 alloc_len ;
194
194
} php_oci_lob_ctx ;
195
195
/* }}} */
196
196
197
197
/* {{{ php_oci_collection */
198
- typedef struct {
198
+ typedef struct {
199
199
zend_resource * id ;
200
200
php_oci_connection * connection ; /* parent connection handle */
201
201
OCIType * tdo ; /* collection's type handle */
@@ -208,7 +208,7 @@ typedef struct {
208
208
/* }}} */
209
209
210
210
/* {{{ php_oci_define */
211
- typedef struct {
211
+ typedef struct {
212
212
zval val ; /* zval used in define */
213
213
text * name ; /* placeholder's name */
214
214
ub4 name_len ; /* placeholder's name length */
@@ -217,7 +217,7 @@ typedef struct {
217
217
/* }}} */
218
218
219
219
/* {{{ php_oci_statement */
220
- typedef struct {
220
+ typedef struct {
221
221
zend_resource * id ;
222
222
zend_resource * parent_stmtid ; /* parent statement id */
223
223
struct php_oci_statement * impres_child_stmt ;/* child of current Implicit Result Set statement handle */
@@ -242,7 +242,7 @@ typedef struct {
242
242
/* }}} */
243
243
244
244
/* {{{ php_oci_bind */
245
- typedef struct {
245
+ typedef struct {
246
246
OCIBind * bind ; /* bind handle */
247
247
zval val ; /* value */
248
248
dvoid * descriptor ; /* used for binding of LOBS etc */
@@ -265,7 +265,7 @@ typedef struct {
265
265
/* }}} */
266
266
267
267
/* {{{ php_oci_out_column */
268
- typedef struct {
268
+ typedef struct {
269
269
php_oci_statement * statement ; /* statement handle. used when fetching REFCURSORS */
270
270
php_oci_statement * nested_statement ; /* statement handle. used when fetching REFCURSORS */
271
271
OCIDefine * oci_define ; /* define handle */
0 commit comments