CreateJobObjectA method

Pointer<Void> CreateJobObjectA(
  1. Pointer<SECURITY_ATTRIBUTES> lpJobAttributes,
  2. Pointer<Int8> lpName
)

Implementation

ffi.Pointer<ffi.Void> CreateJobObjectA(
  ffi.Pointer<SECURITY_ATTRIBUTES> lpJobAttributes,
  ffi.Pointer<ffi.Int8> lpName,
) {
  return _CreateJobObjectA(
    lpJobAttributes,
    lpName,
  );
}