diff options
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 |