We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I remember dealing with this kind of situation in the past, so I apologize if this is a duplicate.
As I explained in [SO]: How to listen for hotkeys in a separate thread using Python with Win32 API and PySide6? (@CristiFati's answer):
[GitHub.MHammond]: win32gui.GetMessage seems to be wrong. It should be rc, MSG = GetMessage(hwnd, min , max).
rc, MSG = GetMessage(hwnd, min , max)
Since (code-wise) that's handled by a SWIG typemap, I'm sure it applies to other functions as well.
Applies to latest version at submit time (v308).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I remember dealing with this kind of situation in the past, so I apologize if this is a duplicate.
As I explained in [SO]: How to listen for hotkeys in a separate thread using Python with Win32 API and PySide6? (@CristiFati's answer):
[GitHub.MHammond]: win32gui.GetMessage seems to be wrong.
It should be
rc, MSG = GetMessage(hwnd, min , max)
.Since (code-wise) that's handled by a SWIG typemap, I'm sure it applies to other functions as well.
Applies to latest version at submit time (v308).
The text was updated successfully, but these errors were encountered: