-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathphp_api.h
80 lines (63 loc) · 2.36 KB
/
php_api.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Darek Slusarczyk <marines@php.net> |
+----------------------------------------------------------------------+
*/
#ifndef MYSQL_XDEVAPI_PHP_API_H
#define MYSQL_XDEVAPI_PHP_API_H
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS 1
#endif
#ifdef PHP_WIN32
#pragma warning( push )
#pragma warning( disable : 4018 4244 4706)
#endif // PHP_WIN32
extern "C" {
#include <php.h>
#undef DELETE
#undef ERROR
#undef add_method
#undef inline
#undef min
#undef max
}
#include <inttypes.h>
#define MYSQLX_LLU_SPEC "%" PRIu64
#ifdef PHP_WIN32
#pragma warning( pop )
#endif // PHP_WIN32
#include "util/compiler_utils.h"
#ifdef PHP_WIN32
#define MYSQLX_HASH_FOREACH_VAL(ht, _val) \
MYSQLX_SUPPRESS_MSVC_WARNINGS(4127) \
ZEND_HASH_FOREACH_VAL(ht, _val) \
MYSQLX_RESTORE_WARNINGS()
#define MYSQLX_HASH_FOREACH_PTR(ht, _ptr) \
MYSQLX_SUPPRESS_MSVC_WARNINGS(4127) \
ZEND_HASH_FOREACH_PTR(ht, _ptr) \
MYSQLX_RESTORE_WARNINGS()
#define MYSQLX_HASH_FOREACH_STR_KEY_VAL(ht, _key, _val) \
MYSQLX_SUPPRESS_MSVC_WARNINGS(4127) \
ZEND_HASH_FOREACH_STR_KEY_VAL(ht, _key, _val) \
MYSQLX_RESTORE_WARNINGS()
#else // UNIX OSes
#define MYSQLX_HASH_FOREACH_VAL ZEND_HASH_FOREACH_VAL
#define MYSQLX_HASH_FOREACH_PTR ZEND_HASH_FOREACH_PTR
#define MYSQLX_HASH_FOREACH_STR_KEY_VAL ZEND_HASH_FOREACH_STR_KEY_VAL
#endif
namespace mysqlx::util {
using raw_zval = zval;
}
#endif // MYSQL_XDEVAPI_PHP_API_H