#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//////////////////////////////////