SetInformationJobObject function kernel32

int SetInformationJobObject(
  1. int hJob,
  2. int JobObjectInformationClass,
  3. Pointer<NativeType> lpJobObjectInformation,
  4. int cbJobObjectInformationLength,
)

Sets limits for a job object.

BOOL SetInformationJobObject(
  [in] HANDLE             hJob,
  [in] JOBOBJECTINFOCLASS JobObjectInformationClass,
  [in] LPVOID             lpJobObjectInformation,
  [in] DWORD              cbJobObjectInformationLength
);

Implementation

int SetInformationJobObject(int hJob, int JobObjectInformationClass,
        Pointer lpJobObjectInformation, int cbJobObjectInformationLength) =>
    _SetInformationJobObject(hJob, JobObjectInformationClass,
        lpJobObjectInformation, cbJobObjectInformationLength);