diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-04-13 19:29:17 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-04-13 19:29:17 +0100 |
| commit | d8d22e34dd63547cb6492e8e15b55fcaec4cb3e5 (patch) | |
| tree | 2356e8733f06e73af03391f0511f965661bd4d3e /core/sys | |
| parent | 627ee002e8d09a00b29c7e5a9f1cf6d96a48b57f (diff) | |
Fix fmt for type; remove dead stuff
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/windows.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/sys/windows.odin b/core/sys/windows.odin index 2493a29e1..3d29bfa83 100644 --- a/core/sys/windows.odin +++ b/core/sys/windows.odin @@ -349,6 +349,7 @@ SetWindowPos :: proc(wnd: Hwnd, wndInsertAfter: Hwnd, x, y, width, height: GetWindowPlacement :: proc(wnd: Hwnd, wndpl: ^Window_Placement) -> Bool #foreign user32; SetWindowPlacement :: proc(wnd: Hwnd, wndpl: ^Window_Placement) -> Bool #foreign user32; +GetWindowRect :: proc(wnd: Hwnd, rect: ^Rect) -> Bool #foreign user32; GetWindowLongPtrA :: proc(wnd: Hwnd, index: i32) -> i64 #foreign user32; SetWindowLongPtrA :: proc(wnd: Hwnd, index: i32, new: i64) -> i64 #foreign user32; |