summaryrefslogtreecommitdiff
path: root/api/db.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-08-05 01:31:34 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-08-05 01:31:34 +0300
commit63edbec1418f493ff86a3e0615a50b0fb83ab6a5 (patch)
tree6ad5b2fe9b34d88c0b919e5d37681ebbe0d87027 /api/db.h
parent3be8db3edc326f02c9e345d7a8e6a9f2aa960864 (diff)
new file: ../../api/db.h
modified: ../dbsqlite/main.cpp modified: main.cpp
Diffstat (limited to 'api/db.h')
-rw-r--r--api/db.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/api/db.h b/api/db.h
new file mode 100644
index 0000000..7e08814
--- /dev/null
+++ b/api/db.h
@@ -0,0 +1,11 @@
+#ifndef DB_H
+#define DB_H
+#define D_INT 0x0001
+#define D_STRING 0x0002
+struct DATA
+{
+ WORD wType;
+ void* pData;
+ char* szModule;
+};
+#endif