How to disable loading ring when launching WinAPI application?

How to disable loading ring when launching WinAPI application? As I noticed console application runs without that ring. Can I approach this? Didn't find anywhere on the internet.
The "busy" cursor is handled by the global windowing system, independently of your process. I don't think your process has power to disable it.
It should only appear between the process starting and the application pulling events from its queue in the event loop. If your application is taking too long between entering its entry point and starting event processing then you need to make your initialization code faster, or put it in a separate thread. If neither of these is an option then there's no solution.
Last edited on
I see, thanks for explanation.
Last edited on
Topic archived. No new replies allowed.