A simple game loop might look like this:
Code:
while(!exit)
{
   showIntro()
   while(game)
   {
   }
}
Writing a game loop in using the Windows API doesn't seem so straight forward. What is one method?