|  PHP gevorderde |  | alles staat in c:\MinGW\bin de compiler (gcc.exe), de iostream.h en de hoi.c.
 wel vreemd, want als ik deze code doe:
 
 
    
    
        
            
                #include <windows.h>
   int WINAPI WinMain (HINSTANCE hInstance, 
                        HINSTANCE hPrevInstance, 
                        PSTR szCmdLine, 
                        int iCmdShow) 
   {
      MessageBox (NULL, "Hello", "Hello Demo", MB_OK);
      return (0);
   } #include <windows.h>    int WINAPI WinMain (HINSTANCE hInstance,                         HINSTANCE hPrevInstance,                         PSTR szCmdLine,                         int iCmdShow)    {      MessageBox (NULL, "Hello", "Hello Demo", MB_OK);      return (0);   }
   en het windows.h bestand ook in de bin zet doetie het gewoon.
 
 |