mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 13:35:03 +00:00
17 lines
216 B
C++
17 lines
216 B
C++
#pragma once
|
|
|
|
namespace Keyboard {
|
|
|
|
enum class LED {
|
|
ScrollLock = 1 << 0,
|
|
NumLock = 1 << 1,
|
|
CapsLock = 1 << 2,
|
|
};
|
|
|
|
void initialize();
|
|
void setLED(LED);
|
|
void unsetLED(LED);
|
|
void handleInterrupt();
|
|
|
|
}
|