diff --git a/src/xenia/base/exception_handler.h b/src/xenia/base/exception_handler.h index 8c387eb12..cf7cc9fbb 100644 --- a/src/xenia/base/exception_handler.h +++ b/src/xenia/base/exception_handler.h @@ -34,8 +34,8 @@ class ExceptionHandler { static bool Initialize(); // Install an exception handler. Returns an ID which you can save to remove - // this later. This will install the exception handler in the last place - // on Windows. + // this later. This will install the exception handler in the last place. + // TODO: ID support! static uint32_t Install(Handler fn); static bool Remove(uint32_t id); diff --git a/src/xenia/base/exception_handler_win.cc b/src/xenia/base/exception_handler_win.cc index 0c432ace3..56667a0a3 100644 --- a/src/xenia/base/exception_handler_win.cc +++ b/src/xenia/base/exception_handler_win.cc @@ -54,6 +54,8 @@ bool ExceptionHandler::Initialize() { uint32_t ExceptionHandler::Install(std::function fn) { handlers_.push_back(fn); + + // TODO: ID support! return 0; } } \ No newline at end of file