*** 24,78 **** *Make a .DEF file* ! 9. Create a new file called sqlite.def in the project directory. The contents of sqlite.def should be: ! EXPORTS ! sqlite_open ! sqlite_close ! sqlite_exec ! sqlite_last_insert_rowid ! sqlite_error_string ! sqlite_interrupt ! sqlite_complete ! sqlite_busy_handler ! sqlite_busy_timeout ! sqlite_get_table ! sqlite_free_table ! sqlite_mprintf ! sqlite_vmprintf ! sqlite_exec_printf ! sqlite_exec_vprintf ! sqlite_get_table_printf ! sqlite_get_table_vprintf ! sqlite_freemem ! sqlite_libversion ! sqlite_libencoding ! sqlite_changes ! sqlite_create_function ! sqlite_create_aggregate ! sqlite_function_type ! sqlite_user_data ! sqlite_aggregate_context ! sqlite_aggregate_count ! sqlite_set_result_string ! sqlite_set_result_int ! sqlite_set_result_double ! sqlite_set_result_error ! sqliteMalloc ! sqliteFree ! sqliteRealloc ! sqlite_set_authorizer ! sqlite_trace ! sqlite_compile ! sqlite_step ! sqlite_finalize ! sqlite_progress_handler ! sqlite_reset ! sqlite_last_statement_changes ! 10. Add the sqlite.def file to the project. ! ! 11. Under Project > Properties navigate to the Linker folder and choose "Input". In the field that says "Module Definition File" type sqlite.def. NOTE: You have to do this twice, once for the Debug configuration and once for the Release configuration. 12. *Compile!* --- 24,34 ---- *Make a .DEF file* ! 9. A .def file should be placed in the project directory. For version 2.x.x download the attached sqlite.def file. For version 3.0.x download the attached sqlite3.def file. ! 10. Add the sqlite[3].def file to the project. ! 11. Under Project > Properties navigate to the Linker folder and choose "Input". In the field that says "Module Definition File" type sqlite[3].def. NOTE: You have to do this twice, once for the Debug configuration and once for the Release configuration. 12. *Compile!*