Staging
v0.5.1
https://github.com/python/cpython
Revision a4ba8a3983356fceb4aedabe0c338180666a79aa authored by Cheryl Sabella on 18 February 2020, 23:01:15 UTC, committed by GitHub on 18 February 2020, 23:01:15 UTC
1 parent af5ee3f
Raw File
Tip revision: a4ba8a3983356fceb4aedabe0c338180666a79aa authored by Cheryl Sabella on 18 February 2020, 23:01:15 UTC
Include subsections in TOC for PDF version of docs. (GH-9629)
Tip revision: a4ba8a3
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