Struct hassle_rs::intellisense::IDxcCursor
source · #[repr(C)]pub struct IDxcCursor { /* private fields */ }
Implementations§
source§impl IDxcCursor
impl IDxcCursor
pub unsafe fn get_extent(&self, range: *mut *mut IDxcSourceRange) -> HRESULT
pub unsafe fn get_location(
&self,
result: *mut *mut IDxcSourceLocation
) -> HRESULT
pub unsafe fn get_kind(&self, result: *mut DxcCursorKind) -> HRESULT
pub unsafe fn get_kind_flags(&self, result: *mut DxcCursorKindFlags) -> HRESULT
pub unsafe fn get_semantic_parent(&self, result: *mut *mut IDxcCursor) -> HRESULT
pub unsafe fn get_lexical_parent(&self, result: *mut *mut IDxcCursor) -> HRESULT
pub unsafe fn get_cursor_type(&self, result: *mut *mut IDxcType) -> HRESULT
pub unsafe fn get_num_arguments(&self, result: *mut i32) -> HRESULT
pub unsafe fn get_argument_at(
&self,
index: i32,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_referenced_cursor(
&self,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_definition_cursor(
&self,
result: *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn find_references_in_file(
&self,
file: *const IDxcFile,
skip: u32,
top: u32,
result_length: *mut u32,
result: *mut *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_spelling(&self, result: *mut LPSTR) -> HRESULT
pub unsafe fn is_equal_to(
&self,
other: *const IDxcCursor,
result: *mut bool
) -> HRESULT
pub unsafe fn is_null(&self, result: *mut bool) -> HRESULT
pub unsafe fn is_definition(&self, result: *mut bool) -> HRESULT
pub unsafe fn get_display_name(&self, result: *mut BSTR) -> HRESULT
pub unsafe fn get_qualified_name(
&self,
include_template_args: bool,
result: *mut BSTR
) -> HRESULT
pub unsafe fn get_formatted_name(
&self,
formatting: DxcCursorFormatting,
result: *mut BSTR
) -> HRESULT
pub unsafe fn get_children(
&self,
skip: u32,
top: u32,
result_length: *mut u32,
result: *mut *mut *mut IDxcCursor
) -> HRESULT
pub unsafe fn get_snapped_child(
&self,
location: *const IDxcSourceLocation,
result: *mut *mut IDxcCursor
) -> 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.