pub trait IGameExplorer2_Impl: Sized {
    // Required methods
    fn InstallGame(
        &self,
        binarygdfpath: &PCWSTR,
        installdirectory: &PCWSTR,
        installscope: GAME_INSTALL_SCOPE
    ) -> Result<()>;
    fn UninstallGame(&self, binarygdfpath: &PCWSTR) -> Result<()>;
    fn CheckAccess(&self, binarygdfpath: &PCWSTR) -> Result<BOOL>;
}

Required Methods§

fn InstallGame( &self, binarygdfpath: &PCWSTR, installdirectory: &PCWSTR, installscope: GAME_INSTALL_SCOPE ) -> Result<()>

fn UninstallGame(&self, binarygdfpath: &PCWSTR) -> Result<()>

fn CheckAccess(&self, binarygdfpath: &PCWSTR) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§