mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 19:41:02 -05:00
14 lines
200 B
C
14 lines
200 B
C
#include "nxsleep.h"
|
|
#include "foundation/error.h"
|
|
int NXSleep(unsigned int milliseconds)
|
|
{
|
|
Sleep(milliseconds);
|
|
return NErr_Success;
|
|
}
|
|
|
|
int NXSleepYield(void)
|
|
{
|
|
Sleep(0);
|
|
return NErr_Success;
|
|
}
|
|
|