pub unsafe extern "C" fn FspLaunchGetInfo(
    ClassName: PWSTR,
    InstanceName: PWSTR,
    Buffer: PWSTR,
    PSize: PULONG,
    PLauncherError: PULONG
) -> NTSTATUS
Expand description

Get information about a service instance.

The information is a list of NULL-terminated strings: the class name of the service instance, the instance name of the service instance and the full command line used to start the service instance.

@param ClassName Class name of the service instance to stop. @param InstanceName Instance name of the service instance to stop. @param Buffer Buffer that receives the command response. May be NULL. @param PSize Pointer to a ULONG. On input it contains the size of the Buffer. On output it contains the number of bytes transferred. May be NULL. @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.