Files
int2ssl/Hacks/Types.h
T
2015-02-13 16:59:11 +03:00

21 lines
365 B
C++

#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