首页 > 代码库 > MFC: 孙鑫教程1笔记

MFC: 孙鑫教程1笔记

typedef struct tagMSG {

  HWND hwnd;

  UNIT message;

  WPARAM wParam;

  LPARAM lParam;

  DWORD time;

  POINT pt;

} MSG;

 

int WINAPI WinMain {

  HINSTANCE hInstance;

  HINSTANCE hPrevInstance;

  LPWSTR lpCmdLine;

  int nShowCmd;

};

 

http://msdn.microsoft.com/zh-cn/vstudio/ms633576

 

MFC: 孙鑫教程1笔记