mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
16
Src/replicant/nu/MessageLoop.h
Normal file
16
Src/replicant/nu/MessageLoop.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
|
||||
#include "android-armv7/MessageLoop.h"
|
||||
#elif defined(__ANDROID__) && (defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
|
||||
#include "android-arm/MessageLoop.h"
|
||||
#elif defined(__ANDROID__) && defined(__i386__)
|
||||
#include "android-x86/MessageLoop.h"
|
||||
#elif defined(_WIN32)
|
||||
#include "win/MessageLoop.h"
|
||||
#elif defined(__linux__)
|
||||
#include "linux/MessageLoop.h"
|
||||
#elif defined(__APPLE__)
|
||||
#include "osx/MessageLoop.h"
|
||||
#else
|
||||
#error port me!
|
||||
#endif
|
Reference in New Issue
Block a user