GCC Code Coverage Report


Directory: components/
File: keyboard_interface/src/keyboard_interface.c
Date: 2025-10-25 23:13:53
Coverage Exec Excl Total
Lines: 0.0% 0 0 4
Functions: 0.0% 0 0 2
Branches: -% 0 0 0

Line Branch Exec Source
1 #include <windows.h>
2 #include "button_interface.h"
3
4 void buttonInterface_init(void)
5 {
6 // No initialization needed for Windows console
7 }
8
9 boolean ButtonInterfaceIsButtonPressed(KeyCodes key)
10 {
11 return (GetAsyncKeyState(key) & 0x8000) != 0;
12 }
13