mirror of https://github.com/x64dbg/GleeBug
remove unused librarian breakpoint code
This commit is contained in:
parent
d94ad0e74d
commit
79e52d2d2c
|
|
@ -621,19 +621,6 @@ public:
|
|||
return result;
|
||||
}
|
||||
|
||||
//Librarian Breakpoints
|
||||
bool LibrarianSetBreakPoint(const char* szLibraryName, DWORD bpxType, bool SingleShoot, LPVOID bpxCallBack)
|
||||
{
|
||||
//TODO
|
||||
return false;
|
||||
}
|
||||
|
||||
bool LibrarianRemoveBreakPoint(const char* szLibraryName, DWORD bpxType)
|
||||
{
|
||||
//TODO
|
||||
return false;
|
||||
}
|
||||
|
||||
//Generic Breakpoints
|
||||
bool RemoveAllBreakPoints(DWORD RemoveOption)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -247,17 +247,6 @@ __declspec(dllexport) bool TITCALL GetUnusedHardwareBreakPointRegister(LPDWORD R
|
|||
return emu.GetUnusedHardwareBreakPointRegister(RegisterIndex);
|
||||
}
|
||||
|
||||
//Librarian Breakpoints
|
||||
__declspec(dllexport) bool TITCALL LibrarianSetBreakPoint(const char* szLibraryName, DWORD bpxType, bool SingleShoot, LPVOID bpxCallBack)
|
||||
{
|
||||
return emu.LibrarianSetBreakPoint(szLibraryName, bpxType, SingleShoot, bpxCallBack);
|
||||
}
|
||||
|
||||
__declspec(dllexport) bool TITCALL LibrarianRemoveBreakPoint(const char* szLibraryName, DWORD bpxType)
|
||||
{
|
||||
return emu.LibrarianRemoveBreakPoint(szLibraryName, bpxType);
|
||||
}
|
||||
|
||||
//Generic Breakpoints
|
||||
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue