mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
17 lines
267 B
C
17 lines
267 B
C
#pragma once
|
|
#include "nx/nxapi.h"
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
#include <windows.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NX_API int NXSleep(unsigned int milliseconds);
|
|
NX_API int NXSleepYield(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|