From 42c3b355be96c5a21ded27dbc25ee0d6a4f7668f Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Thu, 5 Aug 2010 03:06:17 +0300 Subject: modified: ../../api/db.h modified: ../../api/pluginapi.h modified: main.cpp --- api/db.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'api/db.h') 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 -- cgit v1.2.3