Staging
v0.5.1
https://github.com/python/cpython
Revision fcfb324e817c4362fb83d905d65968cf94e0d68a authored by Charles-François Natali on 31 August 2013, 12:40:49 UTC, committed by Charles-François Natali on 31 August 2013, 12:40:49 UTC
1 parent 79a53ea
Raw File
Tip revision: fcfb324e817c4362fb83d905d65968cf94e0d68a authored by Charles-François Natali on 31 August 2013, 12:40:49 UTC
Use the recent support.HOSTv6 addition.
Tip revision: fcfb324
importdl.h
#ifndef Py_IMPORTDL_H
#define Py_IMPORTDL_H

#ifdef __cplusplus
extern "C" {
#endif


extern const char *_PyImport_DynLoadFiletab[];

extern PyObject *_PyImport_LoadDynamicModule(PyObject *name, PyObject *pathname,
                                             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