Update sys/windows.odin to use Bool :: b32; rather than i32

This commit is contained in:
gingerBill
2018-01-17 14:02:19 +00:00
parent 9428d86f2b
commit 4b14d608f4
2 changed files with 6 additions and 8 deletions
+1 -3
View File
@@ -26,9 +26,7 @@ Wnd_Proc :: #type proc "c" (Hwnd, u32, Wparam, Lparam) -> Lresult;
Long_Ptr :: int;
Bool :: i32;
FALSE: Bool : 0;
TRUE: Bool : 1;
Bool :: b32;
Point :: struct {
x, y: i32,