mirror of https://github.com/x64dbg/TitanEngine
16 lines
562 B
C++
16 lines
562 B
C++
#ifndef _GLOBAL_BREAKPOINTS_H
|
|
#define _GLOBAL_BREAKPOINTS_H
|
|
|
|
#include <vector>
|
|
#include "Global.Engine.Threading.h"
|
|
|
|
extern std::vector<BreakPointDetail> BreakPointBuffer;
|
|
|
|
void uintdr7(ULONG_PTR dr7, DR7* ret);
|
|
ULONG_PTR dr7uint(DR7* dr7);
|
|
void BreakPointPostReadFilter(ULONG_PTR lpBaseAddress, unsigned char* lpBuffer, SIZE_T nSize);
|
|
void BreakPointPreWriteFilter(ULONG_PTR lpBaseAddress, SIZE_T nSize, MutexLocker* lock);
|
|
void BreakPointPostWriteFilter(ULONG_PTR lpBaseAddress, SIZE_T nSize, MutexLocker* lock);
|
|
|
|
#endif //_GLOBAL_BREAKPOINTS_H
|