aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage_sqlite.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 14:00:32 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 14:00:32 +0200
commit258a0e9f84a54b41bb59b90f570f759cffd9abf3 (patch)
tree979c3639254a8cb1f0825c45c113825e5afca231 /src/storage_sqlite.h
parentsqlite: add run status field (diff)
downloadcimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.tar.gz
cimple-258a0e9f84a54b41bb59b90f570f759cffd9abf3.zip
storage_sqlite: refactoring
Diffstat (limited to 'src/storage_sqlite.h')
-rw-r--r--src/storage_sqlite.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/storage_sqlite.h b/src/storage_sqlite.h
index 30a5dd4..e9e0581 100644
--- a/src/storage_sqlite.h
+++ b/src/storage_sqlite.h
@@ -9,15 +9,15 @@
#define __STORAGE_SQLITE_H__
struct storage_settings;
-struct storage_settings_sqlite;
+struct storage_sqlite_setttings;
struct storage;
struct storage_sqlite;
-int storage_settings_create_sqlite(struct storage_settings *, const char *path);
-void storage_settings_destroy_sqlite(const struct storage_settings *);
+int storage_sqlite_settings_create(struct storage_settings *, const char *path);
+void storage_sqlite_settings_destroy(const struct storage_settings *);
-int storage_create_sqlite(struct storage *, const struct storage_settings *);
-void storage_destroy_sqlite(struct storage *);
+int storage_sqlite_create(struct storage *, const struct storage_settings *);
+void storage_sqlite_destroy(struct storage *);
#endif