I want to detect if the mouse is currently hidden, something that is often done by 3D applications on Windows. This appears to be trickier than it sounds as I can’t find any way to do this.
Preferably I want to do this using Python but if that’s not possible I could resort to C. Thanks!
The
GetCursorInfofunction returns aCURSORINFOstructure that has aflagsfield that contains the global cursor state. Would this do what you need? I’m not familiar with Python so I don’t know if you can call this function from Python.