mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-10 21:10:15 +00:00
27 lines
575 B
Objective-C
27 lines
575 B
Objective-C
#ifdef IOS
|
|
#include <Availability.h>
|
|
#else
|
|
#include <AvailabilityMacros.h>
|
|
#endif
|
|
|
|
#ifndef __IPHONE_OS_VERSION_MAX_ALLOWED
|
|
#define __IPHONE_OS_VERSION_MAX_ALLOWED 00000
|
|
#endif
|
|
|
|
#include "../apple/common/CFExtensions.m"
|
|
#include "../apple/common/utility.m"
|
|
|
|
#include "../apple/common/RAGameView.m"
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#include "../apple/iOS/platform.m"
|
|
#include "../apple/iOS/menu.m"
|
|
#include "../apple/iOS/browser.m"
|
|
#else
|
|
#include "../apple/OSX/platform.m"
|
|
#include "../apple/OSX/settings.m"
|
|
#endif
|
|
|
|
#ifdef HAVE_MFI
|
|
#include "../apple/common/apple_gamecontroller.m"
|
|
#endif |