mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
OS/2 EMX port changes (Python part of patch #450267):
Python/ dynload_shlib.c // EMX port emulates dlopen() etc. for DL extensions import.c // changes to support 8.3 DLL name limit (VACPP+EMX) // and case sensitive import semantics importdl.h thread_os2.h
This commit is contained in:
parent
c487439aa7
commit
d940054ad4
4 changed files with 140 additions and 3 deletions
|
@ -37,7 +37,7 @@ extern PyObject *_PyImport_LoadDynamicModule(char *name, char *pathname,
|
|||
#include <windows.h>
|
||||
typedef FARPROC dl_funcptr;
|
||||
#else
|
||||
#ifdef PYOS_OS2
|
||||
#if defined(PYOS_OS2) && !defined(PYCC_GCC)
|
||||
#include <os2def.h>
|
||||
typedef int (* APIENTRY dl_funcptr)();
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue