Hi,

I'd like to know how I can load an external dll in C++ so I can use its API. Just for the record I would like to encode a WAVE file to MP3 so I have founfd this:

http://www.linuks.mine.nu/gnustep/de...ame-3.98.1/API

So I have downloaded the LAME encoder and this is what I have:

BladeMP3EncDLL.def
lame_enc.dll
readme.txt ehich reads:

This is a pre-built DLL of libmp3lame from the lame-3.98
distribution.

This version was built with Visual Studio 2005 and exports
all of the current functions listed in lame.h.

To build, replace the file "lame-3.98.2\Dll\BladeMP3EncDLL.def"
in the LAME source code with the one in this archive and build
with Visual Studio.
so, how can I load the DLL?

thanks