diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-05 01:31:34 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-05 01:31:34 +0300 |
commit | 63edbec1418f493ff86a3e0615a50b0fb83ab6a5 (patch) | |
tree | 6ad5b2fe9b34d88c0b919e5d37681ebbe0d87027 /api | |
parent | 3be8db3edc326f02c9e345d7a8e6a9f2aa960864 (diff) |
new file: ../../api/db.h
modified: ../dbsqlite/main.cpp
modified: main.cpp
Diffstat (limited to 'api')
-rw-r--r-- | api/db.h | 11 |
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 |