/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/cross/remote_table/TableRpcData.h
28 строк
579 B
Duncan Ogilvie
Switch to fetch-content for udmp-parser
18 авг 2025, 02:04
18 авг 2025, 02:04
54ddde3
Код
Авторство
О чём код?
#pragma once #include "Types.h" #include <nlohmann/json.hpp> #include <vector> #include <string> struct TableRequest { static constexpr const char* method = "table"; duint offset = 0; duint lines = 0; dsint scroll = 0; }; NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(TableRequest, offset, lines, scroll); struct TableResponse { static constexpr const char* method = "table"; std::vector<std::vector<std::string>> rows; }; NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(TableResponse, rows); //QString jsonRpcRequest(const QString& method, )