After a few minutes of searching I've learned that the Win32 API is the lowest-level way to write graphical Windows programs. Is this true? Is there a way to draw things directly to the video buffer? How do demo-coders write demos?
Anyway, I know a bit of C, which seems to be the preferred way to write Win32 programs, and I'm interested in sticking to the lowest-level and most flexible way to write Windows programs.
I've heard of many different frameworks just from Microsoft themselves, .NET, Windows Forms, WPF, MFC, WTL, CLR, ATL. (Can someone clarify which of these actually depends on another?)
Then of course there are the cross-platform toolkits, WxWidgets, GTK, Qt, Mono, tk etc.
What if I just want to write an entire interface in OpenGL? Does everything really depend on the Win32 API? Will I have to write some code that uses Win32 API calls to at least create a window for OpenGL to use?