On Mon, Feb 25, 2008 at 2:37 AM, Sam Carleton
<[EMAIL PROTECTED]> wrote:
>  Thank you, I know all about LoadLibrary.  I also saw the header file
>  that contains a structure with function pointers to all the exported
>  methods.  But are you telling me that no one has published the code to
>  load up that structure? In the mean time I used the info from the
>  other post to simply compile the one big .c file as a DLL that
>  generated the stub lib I needed to link my code against and it seems
>  to run fine with the officially compiled DLL.

The reason an import library isn't included is because you need a
different one for each compiler you use to link.

With Microsoft compilers you can use LIB.EXE to generate an import
library for you given a DLL and a .DEF file. You can also google for
IMPLIB. It does the same job for you, but without needing a .DEF file.

Other compilers have similar systems.

I don't recall the exact parameters, so just look at the command help
(or google is your friend).


Regards,
~Nuno Lucas
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to