From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/replicant/nu/MessageLoop.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Src/replicant/nu/MessageLoop.h (limited to 'Src/replicant/nu/MessageLoop.h') diff --git a/Src/replicant/nu/MessageLoop.h b/Src/replicant/nu/MessageLoop.h new file mode 100644 index 00000000..5b7548d6 --- /dev/null +++ b/Src/replicant/nu/MessageLoop.h @@ -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 -- cgit