1
0
Fork 0
x64dbg/x64_dbg_dbg/label.h

21 lines
529 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;
};
2015-03-29 19:24:36 +08:00
bool LabelSet(uint addr, const char* text, bool manual);
bool labelfromstring(const char* text, uint* addr);
2015-03-29 19:24:36 +08:00
bool LabelGet(uint addr, char* text);
bool LabelDelete(uint addr);
void LabelDelRange(uint start, uint end);
void labelcachesave(JSON root);
void labelcacheload(JSON root);
2015-03-29 19:24:36 +08:00
bool LabelEnum(LABELSINFO* labellist, size_t* cbsize);
void LabelClear();