14 lines
191 B
C
14 lines
191 B
C
#ifndef _DB_H_
|
|
#define _DB_H_
|
|
|
|
#include <fx/io/directory.h>
|
|
#include <sqlite3.h>
|
|
|
|
extern fx_result open_database(
|
|
fx_directory *root,
|
|
const char *path,
|
|
int flags,
|
|
sqlite3 **out);
|
|
|
|
#endif
|