/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/cross/minidump/MiniThreads.h
37 строк
712 B
Duncan Ogilvie
Add thread/register view to cross/minidump
14 апр 2026, 21:27
14 апр 2026, 21:27
2827f88
Код
Авторство
О чём код?
#pragma once #include <QSplitter> #include <QTableWidget> #include <vector> #include <cstdint> #include "Gui/RegistersView.h" struct ThreadInfo { uint32_t threadId = 0; uint64_t teb = 0; uint64_t cip = 0; bool is64 = false; REGDUMP_AVX512 registers; }; class FileParser; class MiniThreads : public QSplitter { Q_OBJECT public: explicit MiniThreads(QWidget* parent = nullptr); void loadThreads(const std::vector<ThreadInfo> & threads); private slots: void onThreadSelected(int row, int column); private: QTableWidget* mThreadList = nullptr; RegistersView* mRegistersView = nullptr; std::vector<ThreadInfo> mThreads; };