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

feat: set keyboard layout functionality #22

Merged
merged 1 commit into from
Mar 14, 2025
Merged

Conversation

pacmancoder
Copy link
Contributor

This PR implements new Agent RDP keyboard layout switcher functionality in the core protocol (spec/rust/C#) and C# client.

@pacmancoder pacmancoder requested review from Copilot and removed request for Copilot March 13, 2025 22:47
| NOW_SET_KBD_LAYOUT_FLAG_NEXT<br>0x00000001 | Switches to next keyboard layout. kbdLayoutId field should contain empty string. Conflicts with NOW_SET_KBD_LAYOUT_FLAG_PREV. |
| NOW_SET_KBD_LAYOUT_FLAG_PREV<br>0x00000002 | Switches to previous keyboard layout. kbdLayoutId field should contain empty string. Conflicts with NOW_SET_KBD_LAYOUT_FLAG_NEXT. |

**kbdLayoutId (variable)**: NOW_STRING structure containing the keyboard layout identifier usually represented as [Windows Keyboard Layout Identifier](https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/windows-language-pack-default-values) (HKL).
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NOW_STRING type reasoning:

While technically we can use u32 here for Windows HKLs, I think it is useful to keep this field as string to allow simple extensibility in future for non-windows agent implementations.

@@ -119,117 +119,62 @@ public void MsgBoxRspError()
Assert.Throws<NowProtocolException>(() => msg.GetResponseOrThrow());
}

/*
Copy link
Contributor Author

@pacmancoder pacmancoder Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

leftovers after recreating rust tests in C#, slipped past previous review

Copy link
Member

@CBenoit CBenoit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@CBenoit CBenoit merged commit 31e0c79 into master Mar 14, 2025
9 checks passed
@CBenoit CBenoit deleted the feat/set-kbd-layout branch March 14, 2025 03:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants