From 49d337c83039715fd3100f6ec8a88dff80c08c4b Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Thu, 3 Aug 2017 21:21:56 +0100 Subject: v0.6.2; Use Ada_Case for types --- core/thread.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/thread.odin') diff --git a/core/thread.odin b/core/thread.odin index 82f26eef5..3510ad8af 100644 --- a/core/thread.odin +++ b/core/thread.odin @@ -3,7 +3,7 @@ _ :: compile_assert(ODIN_OS == "windows"); import win32 "sys/windows.odin"; Thread :: struct { - using specific: OsSpecific; + using specific: Os_Specific; procedure: Proc; data: any; user_index: int; @@ -12,7 +12,7 @@ Thread :: struct { use_init_context: bool; Proc :: #type proc(^Thread) -> int; - OsSpecific :: struct { + Os_Specific :: struct { win32_thread: win32.Handle; win32_thread_id: u32; } -- cgit v1.2.3