放牧代码和思想
专注自然语言处理、机器学习算法
    This thing called love. Know I would've. Thrown it all away. Wouldn't hesitate.

不建立窗口也能收消息

#include <windows.h>

///////////////////////////WinMain//////////////////////////////////
int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
SetTimer(NULL, 1, 1000, NULL);
    MSG   msg;
while(GetMessage(&msg,NULL,NULL,NULL))
{
   DispatchMessage(&msg);
   switch(msg.message)
   {
   case WM_TIMER:
    {
     MessageBeep(MB_OK);
    }break;
   }
}
    return msg.wParam;
}
///////////////////////////End Sub//////////////////////////////////

知识共享许可协议 知识共享署名-非商业性使用-相同方式共享码农场 » 不建立窗口也能收消息

评论 欢迎留言

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

我的作品

HanLP自然语言处理包《自然语言处理入门》