/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/headless/tostring.h
28 строк
535 B
Duncan Ogilvie
Fix compilation with clang-cl
30 мар 2025, 18:50
30 мар 2025, 18:50
2a08360
Код
Авторство
О чём код?
#pragma once static const char* guimsg2str(GUIMSG msg) { switch(msg) { #define GUIMSG_NAME(msg, param1, param2) case msg: return #msg; GUIMSG_LIST(GUIMSG_NAME) #undef GUIMSG_NAME } return "<unknown>"; } static const char* dbgstate2str(DBGSTATE s) { switch(s) { case initialized: return "initialized"; case paused: return "paused"; case running: return "running"; case stopped: return "stopped"; } return "<unknown>"; }