forked from terrywh/yafa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.h
44 lines (34 loc) · 886 Bytes
/
core.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: php.h
* Author: wuhao
*
* Created on 2015年11月29日, 下午1:31
*/
#ifndef CORE_H
#define CORE_H
#define CORE_EXPORT __attribute__ ((visibility ("default")))
#define CORE_HIDDEN __attribute__ ((visibility ("hidden")))
#include <string>
#include <vector>
#include <map>
extern "C" {
#include "main/php.h"
#include "Zend/zend_interfaces.h"
#include "ext/standard/php_var.h"
#include "ext/standard/md5.h"
}
#include "php/value_iterator.h"
#include "php/value.h"
#include "php/parameter.h"
#include "php/class.h"
#include "php/property.h"
#include "php/module.h"
#include "php/invoke.h"
namespace php {
}
#endif /* CORE_H */