summaryrefslogtreecommitdiff
path: root/api/db.h
diff options
context:
space:
mode:
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