Create RfGetCurrentProcessId.cpp

This commit is contained in:
vxunderground 2022-07-14 22:48:19 -05:00 committed by GitHub
parent ed9df71a60
commit dacb2181ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,4 @@
DWORD RfGetCurrentProcessId(VOID)
{
return HandleToUlong(GetTeb()->ClientId.UniqueProcess);
}