Staging
v0.8.1
Revision 0596f319020ad34010cbf98608021080ba2a1d4b authored by Miss Islington (bot) on 01 May 2018, 14:40:17 UTC, committed by Ned Deily on 01 May 2018, 14:40:17 UTC
(cherry picked from commit ddbe976964933cb943c6383a776e800cc7e0f47d)

Co-authored-by: Matthias Klose <doko42@users.noreply.github.com>
1 parent 77fa783
Raw File
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