摘要:
#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... 阅读全文