Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to evdev keycodes #316

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions module/rdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,24 @@ typedef struct _rdpPointer rdpPointer;

struct _rdpKeyboard
{
int pause_spe;
int ctrl_down;
int alt_down;
int shift_down;
/**
* State of tab key
*
* Used to remove mstsc.exe tab KeyRelease before and after TS_SYNC_EVENT
*/
int tab_down;
/* this is toggled every time num lock key is released, not like the
above *_down vars */
int scroll_lock_down;

/**
* Whether or not to skip the next numlock key press/release
*/
int skip_numlock;

int x11_keycode_caps_lock; ///< Used in TS_SYNC_EVENT processing
int x11_keycode_num_lock; ///< Used in TS_SYNC_EVENT processing
int x11_keycode_scroll_lock; ///< Used in TS_SYNC_EVENT processing

int scroll_lock_down; ///< Whether key is up/down
int scroll_lock_state; ///< Toggle state
DeviceIntPtr device;
};
typedef struct _rdpKeyboard rdpKeyboard;
Expand Down
Loading