/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/dbg/label.h
25 строк
779 B
Duncan Ogilvie
Fix code formatting
17 авг 2025, 21:36
17 авг 2025, 21:36
9e6fc87
Код
Авторство
О чём код?
#ifndef _LABEL_H #define _LABEL_H #include "_global.h" #include "addrinfo.h" struct LABELSINFO : AddrInfo { std::string text; }; bool LabelSet(duint Address, const char* Text, bool Manual, bool Temp = false); bool LabelFromString(const char* Text, duint* Address); bool LabelGet(duint Address, char* Text); bool LabelIsTemporary(duint Address); bool LabelDelete(duint Address); void LabelDelRange(duint Start, duint End, bool Manual); void LabelCacheSave(JSON root); void LabelCacheLoad(JSON root); void LabelClear(); void LabelGetList(std::vector<LABELSINFO> & list); bool LabelGetInfo(duint Address, LABELSINFO* info); std::vector<std::string> LabelFindPrefix(const std::string & prefix, int maxCount, bool isCaseSensitive); #endif // _LABEL_H