Hi
I wonder, why the switch in the "win32  GUI projct"-Template looks like this:
   switch(uMsg)
    {
    case WM_INITDIALOG:
    {
         // Code
    }
    return TRUE;
    }
    return FALSE;
And so this indentation is a bit confusing.
It should rather look like this:
   switch(uMsg)
    {
          case WM_INITDIALOG:
              // Code
             return TRUE;
    }
    return FALSE;
Is there a reason for that format ?