Function winfsp_sys::FspLaunchStop

source ·
pub unsafe extern "C" fn FspLaunchStop(
    ClassName: PWSTR,
    InstanceName: PWSTR,
    PLauncherError: PULONG
) -> NTSTATUS
Expand description

Stop a service instance.

@param ClassName Class name of the service instance to stop. @param InstanceName Instance name of the service instance to stop. @param PLauncherError Receives the launcher error if any. This is always a Win32 error code. May not be NULL. @return STATUS_SUCCESS if the command is sent successfully to the launcher, even if the launcher returns an error. Other status codes indicate a communication error. Launcher errors are reported through PLauncherError.