-
Notifications
You must be signed in to change notification settings - Fork 583
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
windows: add console input record event member functions #228
base: master
Are you sure you want to change the base?
Conversation
This adds multiple functions to read, count, and discard console input events. Using `ReadConsoleInput` instead of `ReadConsole` or `ReadFile` is necessary to capture extended events such as window resize, focus, and extended key and mouse events. This also define console event types and structs.
Events in `INPUT_RECORD` are defined as `union` with multiple members. Since Go doesn't have a notion of `union`s, we need to decode the input event into their respective types. Here, we use member functions that match the union type names to get the respective event type.
This PR (HEAD: a8df59a) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/sys/+/621496. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/621496. |
This PR (HEAD: 729ebf1) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/sys/+/621496. Important tips:
|
Events in
INPUT_RECORD
are defined asunion
with multiplemembers. Since Go doesn't have a notion of
union
s, we needto decode the input event into their respective types. Here,
we use member functions that match the union type names to get
the respective event type.
This is based on #227