mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Add a fake SContext definition for _M_GENERIC.
This commit is contained in:
@ -7,7 +7,12 @@
|
|||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
|
|
||||||
// meh.
|
// meh.
|
||||||
#if defined(_WIN32)
|
#if defined(_M_GENERIC)
|
||||||
|
// JitBase uses SContext; it should have no concrete implementations in a
|
||||||
|
// generic build.
|
||||||
|
struct FakeGenericContext;
|
||||||
|
typedef FakeGenericContext SContext;
|
||||||
|
#elif defined(_WIN32)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
typedef CONTEXT SContext;
|
typedef CONTEXT SContext;
|
||||||
#if _M_X86_64
|
#if _M_X86_64
|
||||||
|
Reference in New Issue
Block a user