mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
89703bc941
# By PDCurses Upstream * upstream-PDCurses: PDCurses 2021-12-08 (f1cd4f45)
27 lines
417 B
C
27 lines
417 B
C
/* PDCurses */
|
|
|
|
#include "pdcwin.h"
|
|
|
|
void PDC_beep(void)
|
|
{
|
|
PDC_LOG(("PDC_beep() - called\n"));
|
|
|
|
/* MessageBeep(MB_OK); */
|
|
MessageBeep(0XFFFFFFFF);
|
|
}
|
|
|
|
void PDC_napms(int ms)
|
|
{
|
|
PDC_LOG(("PDC_napms() - called: ms=%d\n", ms));
|
|
|
|
if ((SP->termattrs & A_BLINK) && (GetTickCount() >= pdc_last_blink + 500))
|
|
PDC_blink_text();
|
|
|
|
Sleep(ms);
|
|
}
|
|
|
|
const char *PDC_sysname(void)
|
|
{
|
|
return "Windows";
|
|
}
|