mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Add a fake SContext definition for _M_GENERIC.
This commit is contained in:
parent
0a1855d2ca
commit
9cdd842080
@ -7,7 +7,12 @@
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
// 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>
|
||||
typedef CONTEXT SContext;
|
||||
#if _M_X86_64
|
||||
|
Loading…
x
Reference in New Issue
Block a user