mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user