SetInformationJobObject method

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

Implementation

int SetInformationJobObject(
  ffi.Pointer<ffi.Void> hJob,
  int JobObjectInformationClass,
  ffi.Pointer<ffi.Void> lpJobObjectInformation,
  int cbJobObjectInformationLength,
) {
  return _SetInformationJobObject(
    hJob,
    JobObjectInformationClass,
    lpJobObjectInformation,
    cbJobObjectInformationLength,
  );
}