Staging
v0.8.1
https://github.com/python/cpython
Revision 6c4c45efaeb40f4f837570f57d90a0b3429c6ae9 authored by Benjamin Peterson on 06 November 2019, 03:21:29 UTC, committed by GitHub on 06 November 2019, 03:21:29 UTC
1 parent 56698d5
Raw File
Tip revision: 6c4c45efaeb40f4f837570f57d90a0b3429c6ae9 authored by Benjamin Peterson on 06 November 2019, 03:21:29 UTC
bpo-38692: Add os.pidfd_open. (GH-17063)
Tip revision: 6c4c45e
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