summaryrefslogtreecommitdiff
path: root/api/db.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-10-13 00:17:40 +0300
commit42992bc2c04dcfd322ead3fda1134439a2cfcf3a (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /api/db.h
parent599d73442416d9bad663e4d0900265e073946600 (diff)
cleanup, switching to wxwidgets as main development framework
Diffstat (limited to 'api/db.h')
-rw-r--r--api/db.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/api/db.h b/api/db.h
deleted file mode 100644
index 337f8bb..0000000
--- a/api/db.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef DB_H
-#define DB_H
-#define D_INT 0x0001
-#define D_STRING 0x0002
-#define D_BLOB 0x0003
-struct DATA
-{
- WORD wType; //data type
- void* pData; //pointer to some data (set or get buffer)
- char* szModule; //database nodue (used when reading info)
- char* szSetting; //setting name
-};
-
-#define DB_WRITE_SETTING "Db/WriteSetting"
-#define DB_GET_SETTING "Db/GetSetting"
-#define DB_DELETE_SETTING "Db/DeleteSetting"
-#define dbGetSetting(a, b) CallService(DB_GET_SETTING, a, b)
-#define dbSetSetting(a, b) CallService(DB_WRITE_SETTING, a, b)
-#define dbDeleteSetting(a, b) CallService(DB_DELETE_SETTING, a, b)
-
-#endif