diff options
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread_windows.odin | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index adf59b898..369a61072 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -1,5 +1,6 @@ package thread +import "core:runtime" import "core:sys/win32" Thread_Proc :: #type proc(^Thread) -> int; @@ -15,7 +16,7 @@ Thread :: struct { data: rawptr, user_index: int, - init_context: Context, + init_context: runtime.Context, use_init_context: bool, } |