summaryrefslogtreecommitdiff
path: root/api/db.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-08-05 03:06:17 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-08-05 03:06:17 +0300
commit42c3b355be96c5a21ded27dbc25ee0d6a4f7668f (patch)
tree28fdf65c784af91a3efdfdb8476ee7a4776b3f07 /api/db.h
parent63edbec1418f493ff86a3e0615a50b0fb83ab6a5 (diff)
modified: ../../api/db.h
modified: ../../api/pluginapi.h modified: main.cpp
Diffstat (limited to 'api/db.h')
-rw-r--r--api/db.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/api/db.h b/api/db.h
index 7e08814..24dd4a1 100644
--- a/api/db.h
+++ b/api/db.h
@@ -2,10 +2,12 @@
#define DB_H
#define D_INT 0x0001
#define D_STRING 0x0002
+#define D_BLOB 0x0003
struct DATA
{
- WORD wType;
- void* pData;
- char* szModule;
+ 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
};
#endif