IsProcessInJob function kernel32
Determines whether the process is running in the specified job.
BOOL IsProcessInJob(
[in] HANDLE ProcessHandle,
[in, optional] HANDLE JobHandle,
[out] PBOOL Result
);
Implementation
int IsProcessInJob(int ProcessHandle, int JobHandle, Pointer<Int32> Result) =>
_IsProcessInJob(ProcessHandle, JobHandle, Result);