pub trait ICreatePropBagOnRegKey_Impl: Sized {
    // Required method
    fn Create(
        &self,
        hkey: HKEY,
        subkey: &PCWSTR,
        uloptions: u32,
        samdesired: u32,
        iid: *const GUID,
        ppbag: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn Create( &self, hkey: HKEY, subkey: &PCWSTR, uloptions: u32, samdesired: u32, iid: *const GUID, ppbag: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§