/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/dbg/loop.h
32 строки
880 B
Duncan Ogilvie
DBG: improve loop API
04 июн 2020, 18:26
04 июн 2020, 18:26
b9b8e52
Код
Авторство
О чём код?
#ifndef _LOOP_H #define _LOOP_H #include "addrinfo.h" struct LOOPSINFO { duint modhash; duint start; duint end; duint parent; int depth; bool manual; duint instructioncount; std::string mod() const { return ModNameFromHash(modhash); } }; bool LoopAdd(duint Start, duint End, bool Manual, duint InstructionCount = 0); bool LoopGet(int Depth, duint Address, duint* Start = nullptr, duint* End = nullptr, duint* InstructionCount = nullptr); bool LoopOverlaps(int Depth, duint Start, duint End, int* FinalDepth, duint* FinalStart = nullptr, duint* FinalEnd = nullptr); void LoopDeleteRange(duint Start, duint End); bool LoopDelete(int Depth, duint Address); void LoopCacheSave(JSON Root); void LoopCacheLoad(JSON Root); bool LoopEnum(LOOPSINFO* List, size_t* Size); void LoopClear(); #endif //_LOOP_H