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
114 B
C++

#include "Win32Helper.h"
VOID SetLastNtStatusInTeb(_In_ NTSTATUS Status)
{
GetTeb()->LastStatusValue = Status;
}