Back to X64dbg

_plugin_unregisterexprfunction

docs/developers/plugins/API/unregisterexprfunction.rst

2026.04.20708 B
Original Source

============================== _plugin_unregisterexprfunction

This function removes an expression function registered by a plugin. It is only possible to remove commands that you previously registered using _plugin_registerexprfunction or _plugin_registerexprfunctionex.

::

bool _plugin_unregisterexprfunction( 
    int pluginHandle, //plugin handle
    const char* name //expression function name
); 

Parameters

:pluginHandle: Handle of the calling plugin. :name: Expression function name.


Return Values

This function returns true when the callback was removed without problems.