mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 15:15:45 -04:00
Initial community commit
This commit is contained in:
14
Src/replicant/nx/nxonce.h
Normal file
14
Src/replicant/nx/nxonce.h
Normal file
@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
|
||||
#include "android-armv7/nxonce.h"
|
||||
#elif defined(__ANDROID__)
|
||||
#include "android-armv5/nxonce.h"
|
||||
#elif defined(_WIN32)
|
||||
#include "win/nxonce.h"
|
||||
#elif defined(__APPLE__) && defined(__amd64__)
|
||||
#include "osx-amd64/nxonce.h"
|
||||
#elif defined(__APPLE__) && defined(__i386__)
|
||||
#include "osx-x86/nxonce.h"
|
||||
#elif defined(__linux__)
|
||||
#include "linux/nxonce.h"
|
||||
#endif
|
Reference in New Issue
Block a user