Staging
v0.5.1
https://github.com/python/cpython
Revision e0e0029623248e6ed786df91c3cdf9ff4f283d32 authored by Antoine Pitrou on 13 June 2017, 08:21:54 UTC, committed by GitHub on 13 June 2017, 08:21:54 UTC
(cherry picked from commit d79c1d4a9406384f10a37f26a7515ce79f9fdd78)
1 parent 5a86154
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