摘要: #include /*消息处理函数声明*/HRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ HWND hwnd; MSG... 阅读全文
posted @ 2013-08-05 16:36 浪浪辛 阅读(630) 评论(0) 推荐(0)
摘要: #include /*消息处理函数声明*/HRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ HWND hwnd; MSG ... 阅读全文
posted @ 2013-08-05 14:27 浪浪辛 阅读(812) 评论(0) 推荐(0)
摘要: #include /*消息处理函数声明*/HRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ HWND hwnd; MSG ... 阅读全文
posted @ 2013-08-05 14:12 浪浪辛 阅读(563) 评论(0) 推荐(0)
摘要: #include /*消息处理函数声明*/HRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ HWND hwnd; MSG ... 阅读全文
posted @ 2013-08-05 12:52 浪浪辛 阅读(922) 评论(0) 推荐(0)
摘要: #define WINVER 0x0501#include /* Declare Windows procedure */LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);/* Make the class name into a global variable */char szClassName[ ] = "WindowsApp";int WINAPI WinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, ... 阅读全文
posted @ 2013-08-05 08:35 浪浪辛 阅读(437) 评论(0) 推荐(0)