Use semicolons as field delimiters in records

This commit is contained in:
Ginger Bill
2017-07-10 13:49:50 +01:00
parent 81336b58cb
commit 66e4aaffc5
15 changed files with 460 additions and 343 deletions
+5 -5
View File
@@ -4,14 +4,14 @@ import (
)
Semaphore :: struct {
// _handle: win32.Handle,
// _handle: win32.Handle;
}
Mutex :: struct {
_semaphore: Semaphore,
_counter: i32,
_owner: i32,
_recursion: i32,
_semaphore: Semaphore;
_counter: i32;
_owner: i32;
_recursion: i32;
}
current_thread_id :: proc() -> i32 {