mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-15 09:05:39 +00:00
24 lines
762 B
C
24 lines
762 B
C
#pragma once
|
|
|
|
enum Keystroke_e {NOT_ASCII=0, ASCII};
|
|
|
|
void ClipboardInitiatePaste();
|
|
|
|
void KeybReset();
|
|
void KeybSetAltGrSendsWM_CHAR(bool state);
|
|
bool KeybGetCapsStatus();
|
|
bool KeybGetP8CapsStatus();
|
|
bool KeybGetAltStatus();
|
|
bool KeybGetCtrlStatus();
|
|
bool KeybGetShiftStatus();
|
|
void KeybUpdateCtrlShiftStatus();
|
|
BYTE KeybGetKeycode ();
|
|
void KeybQueueKeypress(WPARAM key, Keystroke_e bASCII);
|
|
void KeybToggleCapsLock ();
|
|
void KeybToggleP8ACapsLock ();
|
|
void KeybAnyKeyDown(UINT message, WPARAM wparam, bool bIsExtended);
|
|
BYTE KeybReadData (void);
|
|
BYTE KeybReadFlag (void);
|
|
void KeybSaveSnapshot(class YamlSaveHelper& yamlSaveHelper);
|
|
void KeybLoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT version);
|