FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/pytypedefs.h at pythoninfo-add-vpath · FFY00/cpython · GitHub
FFY00
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
pytypedefs.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (25 loc) · 851 Bytes
Breadcrumbs
cpython
/
Include
/
pytypedefs.h
Copy path
File metadata and controls
30 lines (25 loc) · 851 Bytes
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
// Forward declarations of types of the Python C API.
// Declare them at the same place since redefining typedef is a C11 feature.
// Only use a forward declaration if there is an interdependency between two
// header files.
#ifndef
Py_PYTYPEDEFS_H
#define
Py_PYTYPEDEFS_H
#ifdef
__cplusplus
extern
"C"
{
#endif
typedef
struct
PyModuleDef
PyModuleDef
;
typedef
struct
PyModuleDef_Slot
PyModuleDef_Slot
;
typedef
struct
PyMethodDef
PyMethodDef
;
typedef
struct
PyGetSetDef
PyGetSetDef
;
typedef
struct
PyMemberDef
PyMemberDef
;
typedef
struct
_object
PyObject
;
typedef
struct
_longobject
PyLongObject
;
typedef
struct
_typeobject
PyTypeObject
;
typedef
struct
PyCodeObject
PyCodeObject
;
typedef
struct
_frame
PyFrameObject
;
typedef
struct
_ts
PyThreadState
;
typedef
struct
_is
PyInterpreterState
;
#ifdef
__cplusplus
}
#endif
#endif
// !Py_PYTYPEDEFS_H
Back
|
FazBrowse Home
|
New Git URL