| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
| # Exists and is documented as a wrapper around TrackMouseEvent | ||
| # See https://learn.microsoft.com/en-us/windows/win32/api/commctrl/nf-commctrl-_trackmouseevent | ||
| def _TrackMouseEvent(tme: tuple[int, int, int], /) -> _win32typing.TRACKMOUSEEVENT: ... |
There was a problem hiding this comment.
This is https://learn.microsoft.com/en-us/windows/win32/api/commctrl/nf-commctrl-_trackmouseevent
pywin32 itself explicitly exposes and documents it: https://mhammond.github.io/pywin32/win32gui___TrackMouseEvent_meth.html
Sorry, something went wrong.
|
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
These solve typing issues if applying types-pywin32 to pywin32 itself using check_untyped_defs = true (so mypy_primer likely won't catch any change)