Staging
v0.5.1
https://github.com/python/cpython
Revision cccbb9b23db56f32638ef192d73e72e13ddc63b7 authored by Miss Islington (bot) on 19 September 2018, 21:34:14 UTC, committed by Steve Dower on 19 September 2018, 21:34:14 UTC
(cherry picked from commit 76531e2e82319a487d659bc469441bd4b8251608)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
1 parent c927649
Raw File
Tip revision: cccbb9b23db56f32638ef192d73e72e13ddc63b7 authored by Miss Islington (bot) on 19 September 2018, 21:34:14 UTC
Ignores failure to update lists (GH-9424)
Tip revision: cccbb9b
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