Remove type prefix declarations

This commit is contained in:
Ginger Bill
2017-06-28 23:23:10 +01:00
parent 0622509807
commit 4f28e9e1fb
17 changed files with 233 additions and 256 deletions
+4 -5
View File
@@ -1,9 +1,8 @@
import win32 "sys/windows.odin";
type (
Handle int;
FileTime u64;
)
Handle :: int;
FileTime :: u64;
INVALID_HANDLE: Handle : -1;
@@ -22,7 +21,7 @@ O_SYNC :: 0x01000;
O_ASYNC :: 0x02000;
O_CLOEXEC :: 0x80000;
type Errno int;
Errno :: int;
ERROR_NONE: Errno : 0;
ERROR_FILE_NOT_FOUND: Errno : 2;