Staging
v0.5.1
https://github.com/python/cpython
Revision 9415bc41aba17e8e0adc9312ad9d96e4eeb5c842 authored by Serhiy Storchaka on 03 June 2016, 07:30:25 UTC, committed by Serhiy Storchaka on 03 June 2016, 07:30:25 UTC
1 parent 8891dfe
Raw File
Tip revision: 9415bc41aba17e8e0adc9312ad9d96e4eeb5c842 authored by Serhiy Storchaka on 03 June 2016, 07:30:25 UTC
Issue #27185: Rename test_string.py to test_string_merged.py.
Tip revision: 9415bc4
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