Original Post
I have seen a few notable programs which can create windows from console applications. For instance, MCEdit (Minecraft World Editor), it first executes a console, then creates a window.
If I were to guess how it is called, it first goes through main(), then does something, then initializes and do CreateWindow().
How do you create a window without using WinMain() as the entry point? And what are the advantages to doing such things? (Like MCEdit, which is truly popular)
If I were to guess how it is called, it first goes through main(), then does something, then initializes and do CreateWindow().
How do you create a window without using WinMain() as the entry point? And what are the advantages to doing such things? (Like MCEdit, which is truly popular)