-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.h
More file actions
41 lines (36 loc) · 753 Bytes
/
common.h
File metadata and controls
41 lines (36 loc) · 753 Bytes
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
#pragma once
#include "php.h"
#include "stdio.h"
#include "dirent.h"
#include "ext/standard/exec.h"
#include "SAPI.h"
#include "zend.h"
#include "zend_compile.h"
#include "zend_ini_scanner.h"
#include "zend_extensions.h" // for zend_get_extension
#include "php_main.h"
#include "php_variables.h"
#include "php_ini.h"
#if (PHP_MAJOR_VERSION < 7)
#include "ext/standard/php_smart_str.h"
#else
#define UWSGI_PHP7
#endif
#include "ext/standard/info.h"
#include "ext/session/php_session.h"
#include <uwsgi.h>
#if ZEND_MODULE_API_NO >= 20190128
#ifndef TSRMLS_CC
#define TSRMLS_CC
#endif
#ifndef TSRMLS_C
#define TSRMLS_C
#endif
#ifndef TSRMLS_DC
#define TSRMLS_DC
#endif
#ifndef TSRMLS_D
#define TSRMLS_D
#endif
#endif
extern struct uwsgi_server uwsgi;