diff --git a/TitanEngineEmulator/Emulator.h b/TitanEngineEmulator/Emulator.h index 25cba6f..45ad8b6 100644 --- a/TitanEngineEmulator/Emulator.h +++ b/TitanEngineEmulator/Emulator.h @@ -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) { diff --git a/TitanEngineEmulator/TitanEngineEmulator.cpp b/TitanEngineEmulator/TitanEngineEmulator.cpp index 26dbbb2..fdf8021 100644 --- a/TitanEngineEmulator/TitanEngineEmulator.cpp +++ b/TitanEngineEmulator/TitanEngineEmulator.cpp @@ -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) {