Struct hassle_rs::ffi::IDxcContainerReflection
source · #[repr(C)]pub struct IDxcContainerReflection { /* private fields */ }
Implementations§
source§impl IDxcContainerReflection
impl IDxcContainerReflection
pub unsafe fn load(&self, container: *const IDxcBlob) -> HRESULT
pub unsafe fn get_part_count(&self, result: *mut u32) -> HRESULT
pub unsafe fn get_part_kind(&self, idx: u32, result: *mut u32) -> HRESULT
pub unsafe fn get_part_content(
&self,
idx: u32,
result: *mut *mut IDxcBlob
) -> HRESULT
pub unsafe fn find_first_part_kind(&self, kind: u32, result: *mut u32) -> HRESULT
pub unsafe fn get_part_reflection(
&self,
idx: u32,
iid: &IID,
object: *mut *mut c_void
) -> HRESULT
Methods from Deref<Target = IUnknown>§
sourcepub unsafe fn query_interface(&self, iid: &IID, object: *mut *mut c_void) -> i32
pub unsafe fn query_interface(&self, iid: &IID, object: *mut *mut c_void) -> i32
Retrieves pointers to the supported interfaces on an object.
Use ComPtr::from
instead.