RtlSetConsoleSessionForegroundProcessId

VOID __stdcall RtlSetConsoleSessionForegroundProcessId(UINT64 ProcessId){
  if( PsIsCurrentThreadInServerSilo() )
    *(_QWORD *)(PsGetCurrentServerSiloGlobals()[141] + 8) = ProcessId;
  else
    KUSER_SHARED_DATA.ConsoleSessionForegroundProcessId = ProcessId;
}

Referenced by:

No references.