SQLite Forum

SQLite3 extensions: extension-functions.c in Windows doesn't load
Login
I have the DLL in the proper directory. I think the error states that the sqlite doesn't find the entry point.

I run `dumpbin /exports libsqlitefunctions.dll` and found that there is not a single exported function. However, in the `uuid.c`, such a point exists, and the initialization function was decorated (for Windows) with `__declspec(dllexport)`. The same doesn't happen in `extension-functions.c`: such decoration doesn't exist in any function.

Do you have a source file for extension-functions compatible with Windows (ie properly decorated), or should I edit the source file and decorate the initialization function?