After spending sometimes learning the basic of C Programming Language, starting today I’ll learn a more advance usage of this language: the win32 programming. This is my first win32 program:
 

   #include <windows.h> 
    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
            LPSTR lpCmdLine, int nCmdShow)
   {
      MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
       return 0;
   } 

Hell, don’t ask me what those syntaxes mean in particular. I still don’t understand, yet. I just follow the tutorial given in this site and still in an on-going mission to solve the mystery of those syntaxes.

Hopefully by the end of this week, I can make my own win32 program instead of just being a copycat fellow.

Wish me luck {$lang_emotions_wink}