mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-02 02:04:34 +00:00
19 lines
601 B
C
19 lines
601 B
C
#pragma once
|
|
|
|
void ClipboardInitiatePaste();
|
|
|
|
void KeybReset();
|
|
void KeybGetCapsStatus (BOOL *);
|
|
bool KeybGetShiftStatus();
|
|
bool KeybGetCtrlStatus();
|
|
void KeybUpdateCtrlShiftStatus();
|
|
BYTE KeybGetKeycode ();
|
|
DWORD KeybGetNumQueries ();
|
|
void KeybQueueKeypress (int,BOOL);
|
|
void KeybToggleCapsLock ();
|
|
DWORD KeybGetSnapshot(SS_IO_Keyboard* pSS);
|
|
DWORD KeybSetSnapshot(SS_IO_Keyboard* pSS);
|
|
|
|
BYTE __stdcall KeybReadData (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall KeybReadFlag (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|