Public release of the DLU server code!

Have fun!
This commit is contained in:
Unknown
2021-12-05 18:54:36 +01:00
parent 5f7270e4ad
commit 0545adfac3
1146 changed files with 368646 additions and 1 deletions

25
thirdparty/raknet/Source/RakSleep.cpp vendored Normal file
View File

@@ -0,0 +1,25 @@
#if defined(_XBOX360)
#include "Console1Includes.h"
#elif defined(_WIN32)
#include <windows.h> // Sleep
#elif defined(_PS3)
#include "Console2Includes.h"
#include <sys/timer.h>
#else
#include <unistd.h> // usleep
#endif
#include "RakSleep.h"
void RakSleep(unsigned int ms)
{
#ifdef _WIN32
Sleep(ms);
#elif defined(_PS3)
// Use the version of usleep on the console here, this is a macro
_PS3_usleep(ms * 1000);
#else
usleep(ms * 1000);
#endif
}