Struct hassle_rs::intellisense::IDxcIntelliSense
source · #[repr(C)]pub struct IDxcIntelliSense { /* private fields */ }
Implementations§
source§impl IDxcIntelliSense
impl IDxcIntelliSense
pub unsafe fn create_index(&self, index: *mut *mut IDxcIndex) -> HRESULT
pub unsafe fn get_null_location(
&self,
location: *mut *mut IDxcSourceLocation
) -> HRESULT
pub unsafe fn get_null_range(
&self,
location: *mut *mut IDxcSourceRange
) -> HRESULT
pub unsafe fn get_range(
&self,
start: *const IDxcSourceLocation,
end: *const IDxcSourceLocation,
location: *mut *mut IDxcSourceRange
) -> HRESULT
pub unsafe fn get_default_diagnostic_display_options(
&self,
value: *mut DxcDiagnosticDisplayOptions
) -> HRESULT
pub unsafe fn get_default_editing_tu_options(
&self,
value: *mut DxcTranslationUnitFlags
) -> HRESULT
pub unsafe fn create_unsaved_file(
&self,
file_name: LPCSTR,
contents: LPCSTR,
content_length: u32,
result: *mut *mut IDxcUnsavedFile
) -> 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.