Browse Source

Trying to resolve a strange nameclash on ShowCursor seems like raylib is also defining that. Unsure why exactly this is related so for now just tried to change the name here to _ShowCursor :/

Thomas la Cour 1 year ago
parent
commit
c5d5d055ac
1 changed files with 3 additions and 1 deletions
  1. 3 1
      core/sys/windows/user32.odin

+ 3 - 1
core/sys/windows/user32.odin

@@ -93,7 +93,9 @@ 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 :: proc(bShow: BOOL) -> c_int ---
+
+	@(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 ---
 
 	GetWindowRect :: proc(hWnd: HWND, lpRect: LPRECT) -> BOOL ---
 	GetClientRect :: proc(hWnd: HWND, lpRect: LPRECT) -> BOOL ---