mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-19 12:15:53 +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
|