aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorThomas la Cour <tlc@hyrtwol.dk>2024-03-01 19:56:23 +0100
committerThomas la Cour <tlc@hyrtwol.dk>2024-03-03 19:53:34 +0100
commit6243160ecdbf66462103d8b35b170f4a70672ccc (patch)
tree23239e70bc687aa70ca62220f2314d76b9b4a4dd /core/sys
parent980ee3310fd15bf23dd72f3611dd9af7e5742046 (diff)
Cleanup of ShowCursor after Bill pushed a fix
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/windows/user32.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin
index c1a068857..a589c3ec9 100644
--- a/core/sys/windows/user32.odin
+++ b/core/sys/windows/user32.odin
@@ -93,8 +93,6 @@ foreign user32 {
CreateCursor :: proc(hInst: HINSTANCE, xHotSpot: c_int, yHotSpot: c_int, nWidth: c_int, nHeight: c_int, pvANDPlane: PVOID, pvXORPlane: PVOID) -> HCURSOR ---
DestroyCursor :: proc(hCursor: HCURSOR) -> BOOL ---
- // ShowCursor somehow made the raylib fail with: D:/a/Odin/Odin/vendor/raylib/raylib.odin(1016:22) Redeclaration of foreign procedure 'ShowCursor' with different type signatures
- // ShowCursor :: proc(bShow: BOOL) -> c_int ---
GetWindowRect :: proc(hWnd: HWND, lpRect: LPRECT) -> BOOL ---
GetClientRect :: proc(hWnd: HWND, lpRect: LPRECT) -> BOOL ---