Brown, Daniel <[EMAIL PROTECTED]> wrote: > I'm attempting to wrap SQLite with Managed C++ and I'm getting some > compiler warnings as the compiler/linker is have trouble finding the > declaration of the structure 'sqlite3_stmt', I've tried looking for it > manually but I can't find it either
It's not declared anywhere intended to be used in client programs. sqlite3_stmt* is an opaque handle, you are not supposed to care what's inside. You get it from one API function, and pass it along to others. In C#, I'd represent it as IntPtr. Not sure what the equivalent in C++/CLI is. Igor Tandetnik _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users