We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 215eac9 commit 41ba820Copy full SHA for 41ba820
2 files changed
php_ibase_includes.h
@@ -139,8 +139,14 @@ ZEND_TSRMLS_CACHE_EXTERN()
139
#define BLOB_INPUT 1
140
#define BLOB_OUTPUT 2
141
142
+
143
#ifdef PHP_WIN32
-#define LL_MASK "I64"
144
+// Case switch, because of troubles on Windows and PHP 8.0
145
+#if PHP_VERSION_ID < 80000
146
+ #define LL_MASK "I64"
147
+#else
148
+ #define LL_MASK "ll"
149
+#endif
150
#define LL_LIT(lit) lit ## I64
151
typedef void (__stdcall *info_func_t)(char*);
152
#else
php_interbase.h
@@ -25,7 +25,7 @@ extern zend_module_entry ibase_module_entry;
25
#define phpext_interbase_ptr &ibase_module_entry
26
27
#include "php_version.h"
28
-#define PHP_INTERBASE_VERSION "1.1.1"
+#define PHP_INTERBASE_VERSION "1.1.2"
29
30
PHP_MINIT_FUNCTION(ibase);
31
PHP_RINIT_FUNCTION(ibase);
0 commit comments