Files
vxunderground-VX-API/VX-API/SetLastErrorEx.cpp
T
vxunderground 86ca3658a5 update
2022-09-10 13:20:38 -05:00

6 lines
105 B
C++

#include "Win32Helper.h"
VOID SetLastErrorEx(DWORD ErrorCode)
{
GetTeb()->LastErrorValue = ErrorCode;
}