I added:
extern "C"
{
#include <sqlite.h>
}
and I have a problem of compilation:
sqlite.h: No such file or directory
I tested with:
extern "C"
{
#include <sqlite3.h>
}
but I always have the following error:
ZeroLink: unknown symbol '__Z21sqlite3OsFullPathnamePKc'
What to make?
Thank you.
Denis Lurkin.

