]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.10/Include/eval.h
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Include / eval.h
CommitLineData
c8042e10
DM
1\r
2/* Interface to execute compiled code */\r
3\r
4#ifndef Py_EVAL_H\r
5#define Py_EVAL_H\r
6#ifdef __cplusplus\r
7extern "C" {\r
8#endif\r
9\r
10PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);\r
11\r
12PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,\r
13 PyObject *globals,\r
14 PyObject *locals,\r
15 PyObject **args, int argc,\r
16 PyObject **kwds, int kwdc,\r
17 PyObject **defs, int defc,\r
18 PyObject *closure);\r
19\r
20PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);\r
21\r
22#ifdef __cplusplus\r
23}\r
24#endif\r
25#endif /* !Py_EVAL_H */\r