aboutsummaryrefslogtreecommitdiffstats
path: root/coroutine/win32/Context.h
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/win32/Context.h')
-rw-r--r--coroutine/win32/Context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/coroutine/win32/Context.h b/coroutine/win32/Context.h
index 95b4ccdba1..c4f041f501 100644
--- a/coroutine/win32/Context.h
+++ b/coroutine/win32/Context.h
@@ -19,10 +19,10 @@ extern "C" {
/* This doesn't include thread information block */
const size_t COROUTINE_REGISTERS = 4;
-struct coroutine_context
+typedef struct
{
void **stack_pointer;
-};
+} coroutine_context;
typedef void(__fastcall * coroutine_start)(coroutine_context *from, coroutine_context *self);