You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
609 B
Plaintext
26 lines
609 B
Plaintext
//
|
|
// Prefix header for all source files of the 'UDKRemote' target in the 'UDKRemote' project
|
|
//
|
|
#import <Availability.h>
|
|
|
|
#ifndef __IPHONE_3_0
|
|
#warning "This project uses features only available in iPhone SDK 3.0 and later."
|
|
#endif
|
|
|
|
|
|
#ifdef __OBJC__
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <CoreFoundation/CFSocket.h>
|
|
#import <CFNetwork/CFHost.h>
|
|
#import <CoreMotion/CoreMotion.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <unistd.h>
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
|
|
// count elements in a static array
|
|
#define ARRAY_COUNT(A) (sizeof(A) / sizeof(A[0]))
|