-
Notifications
You must be signed in to change notification settings - Fork 119
feat(ffi): add a client example using Avalonia #443
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
Conversation
Coverage Report 🤖 ⚙️Past: New: Diff: -0.02% [this comment will be updated automatically] |
@@ -27,7 +27,7 @@ pub mod ffi { | |||
} | |||
|
|||
impl ClientConnectorState { | |||
pub fn get_type(&self) -> Result<ClientConnectorStateType, Box<IronRdpError>> { | |||
pub fn get_enum_type(&self) -> Result<ClientConnectorStateType, Box<IronRdpError>> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid naming conflict with C# GetType()
Nice job! Do you have a demonstration video? |
Do you mean a demo video for running the example? |
Co-authored-by: Benoît Cortier <[email protected]>
Co-authored-by: Benoît Cortier <[email protected]>
…ronRDP into ffi-binding-client-example
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job!
Demo:
Avalonia.Demo.mp4
Note: As this is an example for demonstration purpose, many things are not implemented.
Currently only simple keyboard and cursor move/click events are implemented.