add structures for drivers (#94)

This commit is contained in:
tomaszduda23
2022-07-10 02:57:03 +09:00
committed by GitHub
parent c840ea7306
commit 793edf8203
5 changed files with 98 additions and 17 deletions

View File

@@ -21,9 +21,14 @@
#pragma once
#include <stdint.h>
#include "driver.h"
typedef struct {
bool caps;
bool scroll;
bool num;
} KeyboardLedsState;
namespace DRIVERS {
typedef struct {
bool caps;
bool scroll;
bool num;
} KeyboardLedsState;
}