mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-18 16:45:51 +01:00
11 lines
243 B
C
11 lines
243 B
C
#pragma once
|
|
#if defined(__ANDROID__)
|
|
#include "android/nxcondition.h"
|
|
#elif defined(_WIN32)
|
|
#include "win/nxcondition.h"
|
|
#elif defined(__APPLE__)
|
|
#include "osx/nxcondition.h"
|
|
#elif defined(__linux__)
|
|
#include "linux/nxcondition.h"
|
|
#endif
|