blob: 6090c3300ba2fcffd88c593bf05973499b4a2a27 [file] [log] [blame]
Guido van Rossum22a1d361999-12-20 21:18:49 +00001/***********************************************************
2Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
16
17While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
29
30******************************************************************/
31
32/* Support for dynamic loading of extension modules */
33
34#define INCL_DOSERRORS
35#define INCL_DOSMODULEMGR
36#include <os2.h>
37
38#include "Python.h"
39#include "importdl.h"
40
41
42const struct filedescr _PyImport_DynLoadFiletab[] = {
43 {".pyd", "rb", C_EXTENSION},
44 {".dll", "rb", C_EXTENSION},
45 {0, 0}
46};
47
48dl_funcptr _PyImport_GetDynLoadFunc(const char *name, const char *funcname,
49 const char *pathname, FILE *fp)
50{
51 dl_funcptr p;
52 APIRET rc;
53 HMODULE hDLL;
54 char failreason[256];
55
56 rc = DosLoadModule(failreason,
57 sizeof(failreason),
58 pathname,
59 &hDLL);
60
61 if (rc != NO_ERROR) {
62 char errBuf[256];
63 sprintf(errBuf,
64 "DLL load failed, rc = %d: %s",
65 rc, failreason);
66 PyErr_SetString(PyExc_ImportError, errBuf);
67 return NULL;
68 }
69
70 rc = DosQueryProcAddr(hDLL, 0L, funcname, &p);
71 if (rc != NO_ERROR)
72 p = NULL; /* Signify Failure to Acquire Entrypoint */
73 return p;
74}