Sqlite dll

Happy New Year!!!

Help! I am trying to make sqlite work… but i’m encoutering the ffg. errors to generate a dll…

“Error: class,struct,union or type __int64 not defined sqlite3.h(222)”

btw, i am using a msvc compiler, cint-5.18.00, windows xp, amalgated sqlite.

what could be causing that error?
did someone tried using sqlite?

TIA

Hi,

CINT doesn’t know all system types. You can simply provide a definition to CINT by putting a few typedefs into a header, and passing that to CINT when generating the dictionary. In this case a “typedef long long __int64;” should work.

Cheers, Axel.