Files
ropkg/libropkg/db.h
T
2026-06-22 17:45:54 +01:00

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