GetProcessShutdownParameters function kernel32

int GetProcessShutdownParameters(
  1. Pointer<Uint32> lpdwLevel,
  2. Pointer<Uint32> lpdwFlags
)

Retrieves the shutdown parameters for the currently calling process.

BOOL GetProcessShutdownParameters(
  LPDWORD lpdwLevel,
  LPDWORD lpdwFlags
);

Implementation

int GetProcessShutdownParameters(
        Pointer<Uint32> lpdwLevel, Pointer<Uint32> lpdwFlags) =>
    _GetProcessShutdownParameters(lpdwLevel, lpdwFlags);