Files
vxunderground-VX-API/Windows API/Error Handling/EhSetLastError.cpp
T
2022-07-14 22:42:25 -05:00

5 lines
80 B
C++

VOID EhSetLastError(DWORD ErrorCode)
{
GetTeb()->LastErrorValue = ErrorCode;
}