/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
docs/developers/plugins/Structures/pluginit.rst
16 строк
602 B
Duncan Ogilvie
Move https://github.com/x64dbg/docs into this repo
04 июл 2025, 02:32
04 июл 2025, 02:32
699342d
Код
Авторство
О чём код?
PLUG_INITSTRUCT =============== This structure is used by the only **needed** export in the plugin interface: :: struct PLUG_INITSTRUCT { //data provided by the debugger to the plugin. [IN] int pluginHandle; //handle of the plugin //data provided by the plugin to the debugger (required). [OUT] int sdkVersion; //plugin SDK version, use the PLUG_SDKVERSION define for this [OUT] int pluginVersion; //plugin version, useful for crash reports [OUT] char pluginName[256]; //plugin name, also useful for crash reports };