-
Notifications
You must be signed in to change notification settings - Fork 35
/
php_sapnwrfc.h
44 lines (36 loc) · 1.03 KB
/
php_sapnwrfc.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
/**
* Copyright (c) 2026 - 2024 Gregor Kralik <g.kralik+php-sapnwrfc (at) gmail.com>
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* Author: Gregor Kralik <g.kralik+php-sapnwrfc (at) gmail.com>
*/
#ifndef _PHP_SAPNWRFC_H
#define _PHP_SAPNWRFC_H
extern zend_module_entry sapnwrfc_module_entry;
#define phpext_sapnwrfc_ptr &sapnwrfc_module_entry
#define PHP_SAPNWRFC_VERSION "2.1.0"
#ifdef PHP_WIN32
# define PHP_SAPNWRFC_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_SAPNWRFC_API __attribute__ ((visibility("default")))
#else
# define PHP_SAPNWRFC_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
#define SAPNWRFC_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(sapnwrfc, v)
#if defined(ZTS) && defined(COMPILE_DL_SAPNWRFC)
ZEND_TSRMLS_CACHE_EXTERN();
#endif
#endif /* _PHP_SAPNWRFC_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/