pub trait IAllSystemAppletProxiesService: IObject {
    fn open_library_applet_proxy(
        &mut self,
        process_id: ProcessId,
        self_process_handle: CopyHandle,
        applet_attribute: InMapAliasBuffer<AppletAttribute>
    ) -> Result<Shared<dyn ILibraryAppletProxy>>; fn sf_server_impl_open_library_applet_proxy(
        &mut self,
        protocol: CommandProtocol,
        ctx: &mut ServerContext<'_>
    ) -> Result<()> { ... } fn get_sf_command_metadata_table(&self) -> CommandMetadataTable { ... } }

Required Methods

Provided Methods

Implementors