mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
21 lines
365 B
C++
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
|