[python-win32] Please help solving the problem

Mark Hammond mhammond@skippinet.com.au
Tue, 17 Sep 2002 08:08:55 +1000


> step 5: I am having problem in importing 'a' because  'a' need to
> load b.dll
> and c.dll. But I copied c.dll as c.pyd.
>         Please suggest me some solution.

Dont rename the file.  Either stick with the .dll version, or have the
linker create the .pyd directly.

Further, note that a standard DLL can not simply be used.  The DLL must be a
Python extension module.  Check out the Python Embedding and Extending
documentation for more details.  If it is a standard Windows DLL you wish to
call, look for the calldll/dynawin modules.

Mark.