initial commit

This commit is contained in:
alexeevdv
2015-02-13 16:59:11 +03:00
parent e7e6193f9a
commit 529598ef70
38 changed files with 6355 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef TYPES_H
#define TYPES_H
#include <string>
#include <cstdint>
typedef char BYTE;
typedef const char * LPCTSTR;
typedef char * LPTSTR;
typedef unsigned int ULONG;
typedef uint16_t WORD;
typedef uint32_t DWORD;
typedef unsigned int UINT;
typedef bool BOOL;
typedef char TCHAR;
#define TRUE true
#define FALSE false
typedef size_t INT_PTR;
#endif // TYPES_H