InitiateShutdownW method

int InitiateShutdownW(
  1. Pointer<Uint16> lpMachineName,
  2. Pointer<Uint16> lpMessage,
  3. int dwGracePeriod,
  4. int dwShutdownFlags,
  5. int dwReason,
)

Implementation

int InitiateShutdownW(
  ffi.Pointer<ffi.Uint16> lpMachineName,
  ffi.Pointer<ffi.Uint16> lpMessage,
  int dwGracePeriod,
  int dwShutdownFlags,
  int dwReason,
) {
  return _InitiateShutdownW(
    lpMachineName,
    lpMessage,
    dwGracePeriod,
    dwShutdownFlags,
    dwReason,
  );
}