summaryrefslogtreecommitdiff
path: root/Source/Kernel/DeviceManager/Kbd.ns.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/DeviceManager/Kbd.ns.h')
-rw-r--r--Source/Kernel/DeviceManager/Kbd.ns.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Kernel/DeviceManager/Kbd.ns.h b/Source/Kernel/DeviceManager/Kbd.ns.h
index efd7a48..34ad0e4 100644
--- a/Source/Kernel/DeviceManager/Kbd.ns.h
+++ b/Source/Kernel/DeviceManager/Kbd.ns.h
@@ -2,7 +2,7 @@
#define DEF_KBD_NS_H
#include <Core/common.wtf.h>
-#include <Library/wchar.class.h>
+#include <Library/WChar.class.h>
//Used by variable kbdstatus
#define STATUS_SCRL 0x40
@@ -87,12 +87,12 @@ namespace Kbd {
bool haschar;
u8int modifiers;
u8int command;
- wchar character; //is 0 if !haschar
+ WChar character; //is 0 if !haschar
keypress_t() : hascmd(false), haschar(false), command(0), character('\0') {};
};
void setFocus(VirtualTerminal* vt);
- void setKeymap(wchar* kmNormal, wchar* kmShift, wchar* kmAltgr, wchar* kmShiftAltgr = NULL);
+ void setKeymap(WChar* kmNormal, WChar* kmShift, WChar* kmCaps, WChar* kmAltgr, WChar* kmShiftAltgr = NULL);
void updateLeds();
void keyPress(u8int scancode);
void keyRelease(u8int scancode);