Back to X64dbg

_plugin_unregisterformatfunction

docs/developers/plugins/API/unregisterformatfunction.rst

2026.04.20707 B
Original Source

================================ _plugin_unregisterformatfunction

This function removes a string format function registered by a plugin. It is only possible to remove commands that you previously registered using _plugin_registerformatfunction.

::

bool _plugin_unregisterformatfunction( 
    int pluginHandle, //plugin handle
    const char* type  //string format function name
); 

Parameters

:pluginHandle: Handle of the calling plugin. :type: String format function name.


Return Values

This function returns true when the string format function was removed without problems.