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