``define_user_symbol`` adds a symbol to the internal list of user added Symbol objects. .. warning:: If multiple symbols for the same address are defined, only the most recent symbol will ever be used. :param Symbol sym: the symbol to define :rtype: None
(self, sym: '_types.CoreSymbol')
| 6313 | core.BNUndefineAutoSymbol(self.handle, sym.handle) |
| 6314 | |
| 6315 | def define_user_symbol(self, sym: '_types.CoreSymbol') -> None: |
| 6316 | """ |
| 6317 | ``define_user_symbol`` adds a symbol to the internal list of user added Symbol objects. |
| 6318 | |
| 6319 | .. warning:: If multiple symbols for the same address are defined, only the most recent symbol will ever be used. |
| 6320 | |
| 6321 | :param Symbol sym: the symbol to define |
| 6322 | :rtype: None |
| 6323 | """ |
| 6324 | core.BNDefineUserSymbol(self.handle, sym.handle) |
| 6325 | |
| 6326 | def undefine_user_symbol(self, sym: '_types.CoreSymbol') -> None: |
| 6327 | """ |
no outgoing calls
no test coverage detected