blob: 528e7dc6006b13f9196291cd706b4702bbbe2b7a [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
Guido van Rossum96a8fb71999-12-22 14:09:35 +000048dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
Guido van Rossum22a1d361999-12-20 21:18:49 +000049 const char *pathname, FILE *fp)
50{
51 dl_funcptr p;
52 APIRET rc;
53 HMODULE hDLL;
54 char failreason[256];
Guido van Rossum96a8fb71999-12-22 14:09:35 +000055 char funcname[258];
Guido van Rossum22a1d361999-12-20 21:18:49 +000056
57 rc = DosLoadModule(failreason,
58 sizeof(failreason),
59 pathname,
60 &hDLL);
61
62 if (rc != NO_ERROR) {
63 char errBuf[256];
64 sprintf(errBuf,
65 "DLL load failed, rc = %d: %s",
66 rc, failreason);
67 PyErr_SetString(PyExc_ImportError, errBuf);
68 return NULL;
69 }
70
Guido van Rossum96a8fb71999-12-22 14:09:35 +000071 sprintf(funcname, "init%.200s", shortname);
Guido van Rossum22a1d361999-12-20 21:18:49 +000072 rc = DosQueryProcAddr(hDLL, 0L, funcname, &p);
73 if (rc != NO_ERROR)
74 p = NULL; /* Signify Failure to Acquire Entrypoint */
75 return p;
76}