摘要:
#include <windows.h>#include <tchar.h> LONG WINAPI WndProc(HWND,UINT,WPARAM,LPARAM);int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpszCmdLine,int nCmdShow){ WNDCLASS wc; HWND hwnd; MSG msg; wc.style = 0; wc.lpfnWndProc = (WNDPROC)WndProc; wc.cbClsExtra = 0; wc.cbWn 阅读全文
posted @ 2011-03-11 18:00
好好学习,天天进步
阅读(496)
评论(0)
推荐(0)