/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/gui/Src/Memory/MemoryPage.h
23 строки
581 B
Duncan Ogilvie
Add some cross platform example projects
17 авг 2025, 22:08
17 авг 2025, 22:08
f4f93fb
Код
Авторство
О чём код?
#pragma once #include <QObject> #include <Imports.h> class MemoryPage : public QObject { Q_OBJECT public: explicit MemoryPage(duint parBase, duint parSize, QObject* parent = nullptr); virtual bool read(void* parDest, dsint parRVA, duint parSize) const; virtual bool write(const void* parDest, dsint parRVA, duint parSize); duint getSize() const; duint getBase() const; duint va(dsint rva) const; void setAttributes(duint base, duint size); bool inRange(duint va) const; protected: duint mBase; duint mSize; };