Jackson, Douglas H
<[EMAIL PROTECTED]> wrote:
> I'm trying to find the way to develop loadable extensions using
> Visual Studio 2005.
>
> I've started by using the "half.c" extension from the documentation.
> I'm compiling using this command:
>    cl /LD /I. /Fmhalf.map half.c
> The compilation proceeds without producing errors.
> I get a "half.dll", and the map file indicates that the
> "sqlite3_extension_init" is exported.

Use Dependency Walker (www.dependencywalker.com) to see what name the 
function got exported under. My educated guess is that it's exported 
under some sort of a decorated name (perhaps with a leading underscore).

Use a .DEF file or /EXPORT linker option to export an undecorated name.

Igor Tandetnik



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to