From: Joseph Spiros Date: Fri, 19 Sep 2008 12:35:10 +0000 (+0000) Subject: Oops, defined the sqlite3_*_objc_object functions as "static" instead of "extern... X-Git-Url: http://git.ithinksw.org/ITFoundation.git/commitdiff_plain/ecf80bca64f1e1a0c83ec0b90f370f41db477024 Oops, defined the sqlite3_*_objc_object functions as "static" instead of "extern". Fixed! --- diff --git a/ITSQLite3Database.h b/ITSQLite3Database.h index ed13477..a8b93b0 100644 --- a/ITSQLite3Database.h +++ b/ITSQLite3Database.h @@ -12,8 +12,8 @@ #import #import -static int sqlite3_bind_objc_object(sqlite3_stmt *statement, int index, id object); -static id sqlite3_column_objc_object(sqlite3_stmt *statement, int columnIndex); +extern int sqlite3_bind_objc_object(sqlite3_stmt *statement, int index, id object); +extern id sqlite3_column_objc_object(sqlite3_stmt *statement, int columnIndex); @interface ITSQLite3Database : NSObject { NSString *dbPath;