1
0
Fork 0
x64dbg/x64_dbg_dbg/reference.h

20 lines
363 B
C

#ifndef _REFERENCE_H
#define _REFERENCE_H
#include "_global.h"
#include "disasm_fast.h"
//structs
struct REFINFO
{
int refcount;
void* userinfo;
};
//typedefs
typedef bool (*CBREF)(DISASM* disasm, BASIC_INSTRUCTION_INFO* basicinfo, REFINFO* refinfo);
//functions
int reffind(uint page, CBREF cbRef, void* userinfo, bool silent);
#endif //_REFERENCE_H