MSFindSymbol

Function MSFindSymbol 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn MSFindSymbol( _image: MSImageRef, name: *const c_char, ) -> *mut c_void
Expand description

Find a symbol by name within a loaded image.

§Arguments

  • _image - Reference to the loaded image (currently unused)
  • name - C string containing the symbol name to find

§Returns

Pointer to the symbol if found, null pointer otherwise.

§Safety

The name parameter must be a valid null-terminated C string.