Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
16
Src/replicant/nu/ThreadLoop.h
Normal file
16
Src/replicant/nu/ThreadLoop.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
#if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
|
||||
#include "android-armv7/ThreadLoop.h"
|
||||
#elif defined(__ANDROID__) && (defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
|
||||
#include "android-arm/ThreadLoop.h"
|
||||
#elif defined(__ANDROID__) && defined(__i386__)
|
||||
#include "android-x86/ThreadLoop.h"
|
||||
#elif defined(_WIN32)
|
||||
#include "win/ThreadLoop.h"
|
||||
#elif defined(__linux__)
|
||||
#include "linux/ThreadLoop.h"
|
||||
#elif defined(__APPLE__)
|
||||
#include "osx/ThreadLoop.h"
|
||||
#else
|
||||
#error port me!
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue