mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-30 03:10:06 +00:00
Change record field syntax
This commit is contained in:
+5
-5
@@ -2,14 +2,14 @@
|
||||
#import "atomic.odin";
|
||||
|
||||
type Semaphore struct {
|
||||
handle: win32.HANDLE;
|
||||
handle win32.HANDLE;
|
||||
}
|
||||
|
||||
type Mutex struct {
|
||||
semaphore: Semaphore;
|
||||
counter: i32;
|
||||
owner: i32;
|
||||
recursion: i32;
|
||||
semaphore Semaphore;
|
||||
counter i32;
|
||||
owner i32;
|
||||
recursion i32;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user