From cfcb0514bf706219bbaa02e36da6430466e67bf3 Mon Sep 17 00:00:00 2001 From: CaptainKraft Date: Sun, 9 Dec 2018 20:52:03 -0600 Subject: [PATCH] Add the missing INVALID_HANDLE so that the demo will build and run on Linux. --- core/os/os_linux.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/core/os/os_linux.odin b/core/os/os_linux.odin index 1ca41ee77..2080b4455 100644 --- a/core/os/os_linux.odin +++ b/core/os/os_linux.odin @@ -12,6 +12,7 @@ Handle :: distinct i32; File_Time :: distinct u64; Errno :: distinct i32; +INVALID_HANDLE :: ~Handle(0); O_RDONLY :: 0x00000; O_WRONLY :: 0x00001;