mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
Make most variables, functions, slots etc. private instead of public. Also make the constructors explicit.
18 lines
271 B
C
18 lines
271 B
C
#ifndef _H_SQLBROWSERUTIL
|
|
#define _H_SQLBROWSERUTIL
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sqlite3.h>
|
|
#include <stdio.h>
|
|
|
|
int load_database(sqlite3 * db, FILE * infile, int * lineErr);
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of the 'extern "C"' block */
|
|
#endif
|
|
|
|
#endif
|