Files
vxunderground f0b5d2bd5d Function renames, code base refactor
Some function names renamed to avoid confusion, some function annotations added.
2022-09-13 06:16:55 -05:00

6 lines
113 B
C++

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