-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmysqlnd_api.h
117 lines (99 loc) · 3.34 KB
/
mysqlnd_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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
+----------------------------------------------------------------------+
| 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_MYSQLND_API_H
#define MYSQL_XDEVAPI_MYSQLND_API_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef PHP_WIN32
#pragma warning( push )
#pragma warning( disable : 4018 4244 4267)
#endif // PHP_WIN32
#include <ext/mysqlnd/mysqlnd.h>
#include <ext/mysqlnd/mysqlnd_priv.h>
#include <ext/mysqlnd/mysqlnd_debug.h>
#include <ext/mysqlnd/mysqlnd_structs.h>
#include <ext/mysqlnd/mysqlnd_alloc.h>
#include <ext/mysqlnd/mysqlnd_charset.h>
#include <ext/mysqlnd/mysqlnd_statistics.h>
#include <ext/mysqlnd/mysql_float_to_double.h>
#include <ext/mysqlnd/mysqlnd_portability.h>
#include <ext/mysqlnd/mysqlnd_vio.h>
#include <ext/mysqlnd/mysqlnd_connection.h>
#include <ext/mysqlnd/mysqlnd_auth.h>
#include <ext/mysqlnd/mysqlnd_wireprotocol.h>
#ifdef PHP_WIN32
#pragma warning( pop )
#endif // PHP_WIN32
#ifdef PHP_WIN32
#if MYSQLND_DBG_ENABLED == 1
#undef DBG_ENTER
#define DBG_ENTER(func_name) \
__pragma(warning(push)) \
__pragma(warning(disable : 4127 4267)) \
DBG_ENTER_EX(MYSQLND_G(dbg), (func_name)); \
__pragma(warning(pop)) \
{}
#undef DBG_INF
#define DBG_INF(msg) \
__pragma(warning(push)) \
__pragma(warning(disable : 4127 4245)) \
DBG_INF_EX(MYSQLND_G(dbg), (msg)); \
__pragma(warning(pop)) \
{}
#undef DBG_INF_FMT
#define DBG_INF_FMT(...) \
__pragma(warning(push)) \
__pragma(warning(disable : 4127 4245)) \
DBG_INF_FMT_EX(MYSQLND_G(dbg), __VA_ARGS__); \
__pragma(warning(pop)) \
{}
#undef DBG_ERR
#define DBG_ERR(msg) \
__pragma(warning(push)) \
__pragma(warning(disable : 4245)) \
DBG_ERR_EX(MYSQLND_G(dbg), (msg)); \
__pragma(warning(pop)) \
{}
#undef DBG_ERR_FMT
#define DBG_ERR_FMT(...) \
__pragma(warning(push)) \
__pragma(warning(disable : 4245)) \
DBG_ERR_FMT_EX(MYSQLND_G(dbg), __VA_ARGS__); \
__pragma(warning(pop)) \
{}
#undef DBG_RETURN
#define DBG_RETURN(value) \
__pragma(warning(push)) \
__pragma(warning(disable : 4127)) \
DBG_RETURN_EX(MYSQLND_G(dbg), (value)); \
__pragma(warning(pop)) \
{}
#undef DBG_VOID_RETURN
#define DBG_VOID_RETURN \
__pragma(warning(push)) \
__pragma(warning(disable : 4127)) \
DBG_VOID_RETURN_EX(MYSQLND_G(dbg)); \
__pragma(warning(pop)) \
{}
#endif // MYSQLND_DBG_ENABLED == 1
#endif // PHP_WIN32
#ifdef __cplusplus
} // extern "C"
#endif
#endif // MYSQL_XDEVAPI_MYSQLND_API_H