1999-12-21 05:22:24 +08:00
|
|
|
#ifndef Py_IMPORTDL_H
|
|
|
|
#define Py_IMPORTDL_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1995-01-03 03:04:15 +08:00
|
|
|
|
2012-05-05 03:20:40 +08:00
|
|
|
extern const char *_PyImport_DynLoadFiletab[];
|
1995-01-03 03:04:15 +08:00
|
|
|
|
2015-05-23 20:24:10 +08:00
|
|
|
extern PyObject *_PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *);
|
1995-01-03 03:04:15 +08:00
|
|
|
|
1997-07-21 22:54:36 +08:00
|
|
|
/* Max length of module suffix searched for -- accommodates "module.slb" */
|
|
|
|
#define MAXSUFFIXSIZE 12
|
1999-12-21 05:22:24 +08:00
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
1999-12-21 06:55:03 +08:00
|
|
|
#include <windows.h>
|
1999-12-21 05:22:24 +08:00
|
|
|
typedef FARPROC dl_funcptr;
|
|
|
|
#else
|
|
|
|
typedef void (*dl_funcptr)(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_IMPORTDL_H */
|