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