FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Python/importdl.h at 5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975 · python/cpython · GitHub
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
36.1k
Star
77.2k
Code
Issues
5k+
Pull requests
2.7k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Python
/
importdl.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (20 loc) · 534 Bytes
Breadcrumbs
cpython
/
Python
/
importdl.h
Copy path
File metadata and controls
29 lines (20 loc) · 534 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
#ifndef
Py_IMPORTDL_H
#define
Py_IMPORTDL_H
#ifdef
__cplusplus
extern
"C"
{
#endif
extern
const
char
*
_PyImport_DynLoadFiletab
[];
extern
PyObject
*
_PyImport_LoadDynamicModuleWithSpec
(
PyObject
*
spec
,
FILE
*
);
typedef
PyObject
*
(
*
PyModInitFunction
)(
void
);
/* Max length of module suffix searched for -- accommodates "module.slb" */
#define
MAXSUFFIXSIZE
12
#ifdef
MS_WINDOWS
#include
<windows.h>
typedef
FARPROC
dl_funcptr
;
#else
typedef
void
(
*
dl_funcptr
)(
void
);
#endif
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_IMPORTDL_H */
Back
|
FazBrowse Home
|
New Git URL