
To ease my work, I created a header file and import library, such that my octave module is linked with the RDNZL DLL. So I wondered if these files could not be provided in some stand-alone RDNZL.DLL package, such that it could be used by anybody. The import library only publishes C function, so you can even think of providing such a library for MinGW compiler (although I didn't try).
What do you think?
Sounds good to me. Do I understand correctly that I'd just have to add one or two files to the C++ source code as it is now? Then you should just send them and I'll make a new release. (And maybe you should provide some text which can be added to the README file.)
The header can be created by: grep -E '__declspec(dllexport)' *.h | sed -e 's/dllexport/dllimport/g' The import lib file is created by VS200X when building the DLL. Michael.