CreateJobObject function kernel32
Creates or opens a job object.
HANDLE CreateJobObjectW(
[in, optional] LPSECURITY_ATTRIBUTES lpJobAttributes,
[in, optional] LPCWSTR lpName
);
Implementation
int CreateJobObject(
Pointer<SECURITY_ATTRIBUTES> lpJobAttributes,
Pointer<Utf16> lpName,
) => _CreateJobObject(lpJobAttributes, lpName);