epg/epgsql.h

12 lines
369 B
C
Raw Normal View History

2019-03-29 12:39:05 +00:00
#include <sqlite3.h>
static int callback(void *NotUsed, int argc, char **argv, char **azColName);
int OpenCreateDB(char * DBFile, sqlite3 **db);
int CloseDB(sqlite3 *db);
int InitDB(char * InitScript, sqlite3 *db);
int ExecSQLStatement(char *SQL, sqlite3 *db);
2020-04-22 13:43:58 +00:00
int ExecSQLStatementRowCount(char *SQL, sqlite3 *db);
2019-03-29 12:39:05 +00:00
void GetFileTimestamp(unsigned int *);