Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: e0e0029623248e6ed786df91c3cdf9ff4f283d32 authored by Antoine Pitrou on 13 June 2017, 08:21:54 UTC
[3.5] Mention how to disable signal fd wakeup (GH-2140) (#2150)
Tip revision: e0e0029
importdl.h
#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 *);

/* 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 to top