remove unused librarian breakpoint code

This commit is contained in:
Duncan Ogilvie 2017-12-11 20:49:00 +01:00
parent d94ad0e74d
commit 79e52d2d2c
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
2 changed files with 0 additions and 24 deletions

View File

@ -621,19 +621,6 @@ public:
return result; 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 //Generic Breakpoints
bool RemoveAllBreakPoints(DWORD RemoveOption) bool RemoveAllBreakPoints(DWORD RemoveOption)
{ {

View File

@ -247,17 +247,6 @@ __declspec(dllexport) bool TITCALL GetUnusedHardwareBreakPointRegister(LPDWORD R
return emu.GetUnusedHardwareBreakPointRegister(RegisterIndex); 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 //Generic Breakpoints
__declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption) __declspec(dllexport) bool TITCALL RemoveAllBreakPoints(DWORD RemoveOption)
{ {