Add type alias uintp and intp

Commonly used types across Valve Source SDK.
This commit is contained in:
Kawe Mazidjatari 2022-11-29 20:36:45 +01:00
parent 25aa8f02c0
commit 41dbf77715

View File

@ -17,7 +17,11 @@ using std::ostringstream;
using std::unordered_map;
namespace fs = std::filesystem;
typedef DWORD ThreadId_t;
typedef uintptr_t uintp;
typedef intptr_t intp;
typedef const unsigned char* rsig_t;
typedef std::make_signed_t<std::size_t> ssize_t;