首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴akuidefbug的代码贴全部
#include <windows.h>

/* This is where all the input to the window goes to */
LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
switch(Message) {

/* Upon destruction, tell the main thread to stop */
case WM_DESTROY: {
PostQuitMessage(0);
break;
}

......................
阅读全部 | 2020年5月12日 20:44
1
akuidefbug