mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
14
Src/replicant/nx/win/nxsleep.c
Normal file
14
Src/replicant/nx/win/nxsleep.c
Normal file
@ -0,0 +1,14 @@
|
||||
#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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user