Is it possible to disable the mouse feedback cursor when a process begins from within the process?
I know you can use the STARTF_FORCEOFFFEEDBACK
flag when creating the process, and that the feedback cursor will turn off when the process displays a window. However, I do not have control over the code that creates my process and my process is only used for background computation, so it does not display a window.
Anybody know of any system calls I can make to turn off the feedback cursor, other than creating a temporary window and immediately destroying it?