[I haven't seen an answer for this older question, so I figured I'd go
ahead and post one]
Andras Balogh wrote:
>
> The problem is that, in debug mode, Python expects every module name to
> be postfixed with _d, which makes my dynamic loading (using LoadLibrary)
> not work, unless I #ifdef it ever
The project I'm working on is written mainly C/C++, spiced with some
Python scripts. Now, I have several dlls, which work both as a Python
extension modules, exporting functions to Python via "initmodule", and
as normal dynamic libraries, to which I link dynamically from within my
C program.
T