NIMPlatform.h 496 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // NIMPlatform.h
  3. // NIMLib
  4. //
  5. // Created by Netease.
  6. // Copyright © 2017年 Netease. All rights reserved.
  7. //
  8. #ifndef NIMPlatform_h
  9. #define NIMPlatform_h
  10. #import <Foundation/Foundation.h>
  11. #if TARGET_OS_IPHONE
  12. #define NIM_IOS 1
  13. #endif
  14. #if TARGET_OS_MAC && !TARGET_OS_IPHONE
  15. #define NIM_MAC 1
  16. #endif
  17. #if NIM_IOS
  18. #import <UIKit/UIKit.h>
  19. #elif NIM_MAC
  20. #import <Cocoa/Cocoa.h>
  21. @compatibility_alias UIImage NSImage;
  22. @compatibility_alias UIView NSView;
  23. #endif
  24. #endif /* NIMPlatform_h */