Files
LNXRNT/Kore/Backends/System/WindowsApp/Sources/kinc/backend/mouse.c

23 lines
411 B
C
Raw Normal View History

2025-01-29 10:55:49 +01:00
#include <kinc/input/mouse.h>
2026-06-09 12:45:01 -07:00
void kinc_internal_mouse_lock(int window) {}
2025-01-29 10:55:49 +01:00
2026-06-09 12:45:01 -07:00
void kinc_internal_mouse_unlock(void) {}
2025-01-29 10:55:49 +01:00
bool kinc_mouse_can_lock(void) {
return false;
}
2026-06-09 12:45:01 -07:00
void kinc_mouse_show() {}
2025-01-29 10:55:49 +01:00
2026-06-09 12:45:01 -07:00
void kinc_mouse_hide() {}
2025-01-29 10:55:49 +01:00
2026-06-09 12:45:01 -07:00
void kinc_mouse_set_position(int window, int x, int y) {}
2025-01-29 10:55:49 +01:00
2026-06-09 12:45:01 -07:00
void kinc_mouse_get_position(int window, int *x, int *y) {
2025-01-29 10:55:49 +01:00
*x = 0;
*y = 0;
}
2026-06-09 12:45:01 -07:00
void kinc_mouse_set_cursor(int cursor_index) {}