FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-src/ext/sqlite3/php_sqlite3.h at master · php/php-src · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
php
/
php-src
Public
Notifications
You must be signed in to change notification settings
Fork
8.1k
Star
40.3k
Code
Issues
962
Pull requests
1k
Actions
Security and quality
52
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
php-src
/
ext
/
sqlite3
/
php_sqlite3.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (31 loc) · 1.42 KB
Breadcrumbs
php-src
/
ext
/
sqlite3
/
php_sqlite3.h
Copy path
File metadata and controls
39 lines (31 loc) · 1.42 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
+----------------------------------------------------------------------+
| Copyright © The PHP Group and Contributors. |
+----------------------------------------------------------------------+
| This source file is subject to the Modified BSD License that is |
| bundled with this package in the file LICENSE, and is available |
| through the World Wide Web at <https://www.php.net/license/>. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
+----------------------------------------------------------------------+
| Authors: Scott MacVicar <scottmac@php.net> |
+----------------------------------------------------------------------+
*/
#ifndef
PHP_SQLITE3_H
#define
PHP_SQLITE3_H
#define
PHP_SQLITE3_VERSION
PHP_VERSION
extern
zend_module_entry
sqlite3_module_entry
;
#define
phpext_sqlite3_ptr
&sqlite3_module_entry
ZEND_BEGIN_MODULE_GLOBALS
(
sqlite3
)
char
*
extension_dir
;
int
dbconfig_defensive
;
ZEND_END_MODULE_GLOBALS
(
sqlite3
)
#if
defined(
ZTS
)
&&
defined(
COMPILE_DL_SQLITE3
)
ZEND_TSRMLS_CACHE_EXTERN
()
#endif
ZEND_EXTERN_MODULE_GLOBALS
(
sqlite3
)
#define
SQLITE3G
(
v
) ZEND_MODULE_GLOBALS_ACCESSOR(sqlite3, v)
#define
PHP_SQLITE3_ASSOC
1<<0
#define
PHP_SQLITE3_NUM
1<<1
#define
PHP_SQLITE3_BOTH
(PHP_SQLITE3_ASSOC|PHP_SQLITE3_NUM)
#endif
Back
|
FazBrowse Home
|
New Git URL