mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 10:31:02 +00:00
25 lines
488 B
C
25 lines
488 B
C
//
|
|
// OSPortabilityDefs.h
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 3/26/18.
|
|
// Copyright © 2018 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#ifndef OSPortabilityDefs_h
|
|
#define OSPortabilityDefs_h
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#define OSImage UIImage
|
|
#define OSColor UIColor
|
|
#define OSView UIView
|
|
#define OSApplication UIApplication
|
|
#else
|
|
#define OSImage NSImage
|
|
#define OSColor NSColor
|
|
#define OSView NSView
|
|
#define OSApplication NSApplication
|
|
#endif
|
|
|
|
#endif /* OSPortabilityDefs_h */
|