Question about the makecint-generated dll

is there any difference between the makecint-generated dll and the msvc-generated dll?

if there has no difference.
is that mean i can load any dll using the cint?

Hi,

[quote]is that mean i can load any dll using the cint?[/quote]Yes you can, however with 2 caveat. One is that MSVC requires all the libraries to be build with the same set of compiler and linker flags (in particular for optimization and debug levels).

The additional feature in the makecint ‘generated’ dlls is that it includes a dictionary describing the classes contained in the dlls (usually). I.e. if you load an arbitrary dll, its classes/symbols while not be available directly to the interpreter.

Cheers,
Philippe.