summaryrefslogtreecommitdiff
path: root/api/db.h
blob: 7e08814cb53ad46e1eaffa849ba9fc89a5ae32b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DB_H
#define DB_H
#define D_INT 0x0001
#define D_STRING 0x0002
struct DATA
{
	WORD wType;
	void* pData;
	char* szModule;
};
#endif