diff options
| author | Thomas la Cour <tlc@hyrtwol.dk> | 2024-03-01 17:12:24 +0100 |
|---|---|---|
| committer | Thomas la Cour <tlc@hyrtwol.dk> | 2024-03-03 19:53:34 +0100 |
| commit | 980ee3310fd15bf23dd72f3611dd9af7e5742046 (patch) | |
| tree | 86c8d2802cfd8b7c46beb241e87bce2ee15213c1 /core | |
| parent | c5d5d055ac8f4f0891bb610d720f99aaea58ce99 (diff) | |
didn't help :/ so removed it to see if it can build again
Diffstat (limited to 'core')
| -rw-r--r-- | core/sys/windows/user32.odin | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/sys/windows/user32.odin b/core/sys/windows/user32.odin index b9fbe3f65..c1a068857 100644 --- a/core/sys/windows/user32.odin +++ b/core/sys/windows/user32.odin @@ -93,9 +93,8 @@ 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 --- - - @(link_name="ShowCursor") // 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 --- + // 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 --- |