Hi folks,
Does anyone of you work with the Metrowerks Codewarrior compiler. If I want to use the sqlite dll I need to link with a 'lib' file, and sqlite only provides for a 'def' and 'dll' file. So I tried to compile the source but I get numerous errors regarding illegal casts - primarily concerning functions that require a character pointer and given an unsinged character pointer. I managed to solve this by adding a cast (unsigned char *), but I'm not very comftable with the fact that I cannot predict this to be OK. It all comes down to proper prototyping the functions !
Also for creating a dll on the win32 platform you should use the dllimport/dllexport guidelines.
Anyway, is there a way to obtain the lib file, or get in contact with the source maintainer(s).
Thanks, Pascal

