摘要: #include "stdafx.h"#include LONG WINAPI WndProc(HWND, UINT, WPARAM, LPARAM);int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow){ WNDCLASS wc; HWND hwnd; MSG msg; BOOL bRet; /**初始化窗口*/ wc.style = 0; wc.lpfnWndProc = (WND... 阅读全文
posted @ 2014-03-31 22:48 RogerGold 阅读(161) 评论(0) 推荐(0) 编辑