Re: [sqlite] sqlite3_stmt declaration

2008-08-25 Thread Alex Katebi
Write a C test.c program that uses the desired type. Then do "gcc -E test.c > test.txt". This will expand/flatten all the macros. Open the test.txt file and look for the type. On Mon, Aug 25, 2008 at 5:30 PM, Brown, Daniel <[EMAIL PROTECTED]> wrote: > Good afternoon list, > > I'm attempting to

Re: [sqlite] sqlite3_stmt declaration

2008-08-25 Thread Brown, Daniel
, 2008 2:31 PM To: General Discussion of SQLite Database Subject: [sqlite] sqlite3_stmt declaration Good afternoon list, 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

Re: [sqlite] sqlite3_stmt declaration

2008-08-25 Thread Igor Tandetnik
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

Re: [sqlite] sqlite3_stmt declaration

2008-08-25 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brown, Daniel 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

Re: [sqlite] sqlite3_stmt declaration

2008-08-25 Thread Nicolas Williams
On Mon, Aug 25, 2008 at 02:30:44PM -0700, Brown, Daniel 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

[sqlite] sqlite3_stmt declaration

2008-08-25 Thread Brown, Daniel
Good afternoon list, 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 all I can find is a typedef on