block_of_code: Support stack unwinding on Windows

This commit is contained in:
MerryMage
2016-12-11 15:38:00 +00:00
committed by Merry
parent 4962d92b79
commit 5bea2e1680
5 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
* This software may be used and distributed according to the terms of the GNU
* General Public License version 2 or any later version.
*/
#include "backend_x64/block_of_code.h"
namespace Dynarmic {
namespace BackendX64 {
struct BlockOfCode::UnwindHandler::Impl final {
};
BlockOfCode::UnwindHandler::UnwindHandler() = default;
BlockOfCode::UnwindHandler::~UnwindHandler() = default;
void BlockOfCode::UnwindHandler::Register(BlockOfCode*) {
// Do nothing
}
} // namespace BackendX64
} // namespace Dynarmic