Back to X64dbg

_plugin_unregistercommand

docs/developers/plugins/API/unregistercommand.rst

2026.04.20610 B
Original Source

========================= _plugin_unregistercommand

This function removes a command set by a plugin. It is only possible to remove commands that you previously registered using _plugin_registercommand.

::

bool _plugin_unregistercommand( 
    int pluginHandle, //plugin handle
    const char* command //command name
); 

Parameters

:pluginHandle: Handle of the calling plugin. :command: Command name.


Return Values

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