1
0
Fork 0
x64dbg/x64_dbg_dbg/label.h

21 lines
534 B
C
Raw Normal View History

2015-03-29 19:24:36 +08:00
#pragma once
#include "_global.h"
struct LABELSINFO
{
char mod[MAX_MODULE_SIZE];
uint addr;
char text[MAX_LABEL_SIZE];
bool manual;
};
bool LabelSet(uint Address, const char* Text, bool Manual);
bool LabelFromString(const char* Text, uint* Address);
bool LabelGet(uint Address, char* Text);
bool LabelDelete(uint Address);
void LabelDelRange(uint Start, uint End);
void labelcachesave(JSON root);
void labelcacheload(JSON root);
bool LabelEnum(LABELSINFO* List, size_t* Size);
2015-03-29 19:24:36 +08:00
void LabelClear();