summaryrefslogtreecommitdiff
path: root/ext/odbc/php_birdstep.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/odbc/php_birdstep.h')
-rw-r--r--ext/odbc/php_birdstep.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/odbc/php_birdstep.h b/ext/odbc/php_birdstep.h
index 430445b415..eab1dcee7c 100644
--- a/ext/odbc/php_birdstep.h
+++ b/ext/odbc/php_birdstep.h
@@ -1,6 +1,6 @@
/*
+----------------------------------------------------------------------+
- | PHP Version 5 |
+ | PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2014 The PHP Group |
+----------------------------------------------------------------------+
@@ -28,28 +28,28 @@
typedef struct VConn {
HDBC hdbc;
- php_int_t index;
+ zend_long index;
} VConn;
typedef struct {
char name[32];
char *value;
- php_int_t vallen;
+ zend_long vallen;
SDWORD valtype;
} VResVal;
typedef struct Vresult {
HSTMT hstmt;
VConn *conn;
- php_int_t index;
+ zend_long index;
VResVal *values;
- php_int_t numcols;
+ zend_long numcols;
int fetched;
} Vresult;
typedef struct {
- php_int_t num_links;
- php_int_t max_links;
+ zend_long num_links;
+ zend_long max_links;
int le_link,le_result;
} birdstep_module;