#ifndef DB_H #define DB_H #define D_INT 0x0001 #define D_STRING 0x0002 struct DATA { WORD wType; void* pData; char* szModule; }; #endif