joystick/win32: Fix function return type mismatch

Fixes #14804

(cherry picked from commit 55acc0b829)
This commit is contained in:
Frank Praznik
2026-01-11 10:56:06 -05:00
parent f6a979d7e8
commit 75ff70b489

View File

@@ -25,8 +25,8 @@
extern bool RAWINPUT_IsEnabled(void);
// Registers for input events
extern int RAWINPUT_RegisterNotifications(HWND hWnd);
extern int RAWINPUT_UnregisterNotifications(void);
extern bool RAWINPUT_RegisterNotifications(HWND hWnd);
extern bool RAWINPUT_UnregisterNotifications(void);
// Returns 0 if message was handled
extern LRESULT CALLBACK RAWINPUT_WindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);