From 2983b0c090bb50e570a2a614edb70a0aab340dc7 Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Fri, 11 Sep 2015 17:12:49 -0500 Subject: [PATCH] Update some documentation. --- src/xenia/base/exception_handler.h | 4 ++-- src/xenia/base/exception_handler_win.cc | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) 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