从零学起----Windows程序设计笔记(二) 窗口
摘要:
----------------#pragma comment(lib,"winmm.lib")#include LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow){ static TCHAR szAppName[] = TEXT("HelloWin"); HWND hwnd; MSG msg; WNDCLASS 阅读全文
posted @ 2013-12-05 16:07 电子幼体 阅读(168) 评论(0) 推荐(0) 编辑