CreateJobObjectW method

Pointer<Void> CreateJobObjectW(
  1. Pointer<SECURITY_ATTRIBUTES> lpJobAttributes,
  2. Pointer<Uint16> lpName
)

Implementation

ffi.Pointer<ffi.Void> CreateJobObjectW(
  ffi.Pointer<SECURITY_ATTRIBUTES> lpJobAttributes,
  ffi.Pointer<ffi.Uint16> lpName,
) {
  return _CreateJobObjectW(
    lpJobAttributes,
    lpName,
  );
}