--- Jonathan Kahn <[EMAIL PROTECTED]> wrote:
> I really appreciate your response.  What do you suggest I do?  Is there
> something else I need to include aside from sqlite3.lib?  I am willing to
> try anything.

I only use GNU C++, so I can't help you with .lib files.

I'd suggest to compile sqlite3.c with a C compiler or change sqlite3.c to 
include this:

 #ifdef __cplusplus
 extern "C" {
 #endif

 ... contents of sqlite3.c ...

 #ifdef __cplusplus
 }
 #endif

sqlite3.h has the correct __cplusplus extern wrapper.

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to