Staging
v0.5.1
https://github.com/python/cpython
Revision b086ea5edc44cf64ecfb645d578927aa96e8c355 authored by Miss Islington (bot) on 10 February 2020, 11:40:15 UTC, committed by GitHub on 10 February 2020, 11:40:15 UTC
(cherry picked from commit 3ed4d251587c36c3853daf42602eaad121b59bba)

Co-authored-by: Don Kirkby <donkirkby@users.noreply.github.com>
1 parent af95d79
Raw File
Tip revision: b086ea5edc44cf64ecfb645d578927aa96e8c355 authored by Miss Islington (bot) on 10 February 2020, 11:40:15 UTC
Grammar fix in tutorial (GH-18425) (GH-18426)
Tip revision: b086ea5
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