Windows程序的入口函数
int WINAPI WinMain(
  HINSTANCE hInstance,      // handle to current instance
  HINSTANCE hPrevInstance,  // handle to previous instance
  LPSTR lpCmdLine,          // command line
  int nCmdShow              // show state
);

 

 


typedef struct _WNDCLASS {
   UINT     style;
   WNDPROC lpfnWndProc;
   int      cbClsExtra;
   int      cbWndExtra;
   HANDLE  hInstance;
   HICON    hIcon;
   HCURSOR  hCursor;
   HBRUSH   hbrBackground;
   LPCTSTR  lpszMenuName;
   LPCTSTR  lpszClassName; 
} WNDCLASS;

Posted on 2011-03-23 17:33  dekill  阅读(239)  评论(0编辑  收藏  举报