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.
On Thu, 26 Oct 2006 10:18:13 +0200, "Goffioul Michael" goffioul@imec.be wrote:
The header can be created by:
grep -E '__declspec(dllexport)' *.h | sed -e 's/dllexport/dllimport/g'
OK.
The import lib file is created by VS200X when building the DLL.
So, I don't need to include it, right?