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