[Project64] Add linux friendly catch
This commit is contained in:
parent
1b2ca46906
commit
be7943a35d
|
@ -1,4 +1,21 @@
|
||||||
|
/****************************************************************************
|
||||||
|
* *
|
||||||
|
* Project64 - A Nintendo 64 emulator. *
|
||||||
|
* http://www.pj64-emu.com/ *
|
||||||
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
||||||
|
* *
|
||||||
|
* License: *
|
||||||
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
||||||
|
* *
|
||||||
|
****************************************************************************/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
#include <excpt.h>
|
#include <excpt.h>
|
||||||
|
|
||||||
#define __except_try() __try
|
#define __except_try() __try
|
||||||
#define __except_catch() __except (g_MMU->MemoryFilter(_exception_code(), _exception_info()))
|
#define __except_catch() __except (g_MMU->MemoryFilter(_exception_code(), _exception_info()))
|
||||||
|
#else
|
||||||
|
#define __except_try() __try
|
||||||
|
#define __except_catch() __catch (...)
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue