pub unsafe extern "C" fn FspLaunchRegGetRecord(
    ClassName: PWSTR,
    Agent: PWSTR,
    PRecord: *mut *mut FSP_LAUNCH_REG_RECORD
) -> NTSTATUS
Expand description

Get a service registry record.

@param ClassName The service class name. @param Agent The name of the agent that is retrieving the service record. This API matches the supplied Agent against the Agent in the service record and it only returns the record if they match. Pass NULL to match any Agent. @param PRecord Pointer to a record pointer. Memory for the service record will be allocated and a pointer to it will be stored at this address. This memory must be later freed using FspLaunchRegFreeRecord. @return STATUS_SUCCESS or error code. @see FspLaunchRegFreeRecord