this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Allow ApplicationServices to be included in C code

Remove all Objective-C syntax usages

+11 -8
+6 -3
src/ImageIO/include/ImageIO/CGImageDestination.h
··· 1 - @class O2ImageDestination; 2 - typedef O2ImageDestination *CGImageDestinationRef; 1 + #include <ImageIO/ImageIOBase.h> 3 2 4 - #include <ImageIO/ImageIOBase.h> 3 + typedef struct CF_BRIDGED_TYPE(id) O2ImageDestination *CGImageDestinationRef; 5 4 6 5 #import <CoreGraphics/CGImage.h> 7 6 #import <ImageIO/CGImageSource.h> 8 7 #import <CoreGraphics/CGDataConsumer.h> 9 8 #import <CoreFoundation/CFURL.h> 9 + 10 + CF_IMPLICIT_BRIDGING_ENABLED 10 11 11 12 IMAGEIO_EXTERN const CFStringRef kCGImageDestinationLossyCompressionQuality; 12 13 IMAGEIO_EXTERN const CFStringRef kCGImageDestinationBackgroundColor; ··· 26 27 IMAGEIO_EXTERN void CGImageDestinationAddImageFromSource(CGImageDestinationRef self, CGImageSourceRef imageSource, size_t index, CFDictionaryRef properties); 27 28 28 29 IMAGEIO_EXTERN bool CGImageDestinationFinalize(CGImageDestinationRef self); 30 + 31 + CF_IMPLICIT_BRIDGING_DISABLED
+1 -2
src/ImageIO/include/ImageIO/CGImageSource.h
··· 10 10 #import <CoreFoundation/CFDictionary.h> 11 11 #import <CoreFoundation/CFURL.h> 12 12 13 - @class O2ImageSource; 14 - typedef O2ImageSource *CGImageSourceRef; 13 + typedef struct CF_BRIDGED_TYPE(id) O2ImageSource *CGImageSourceRef; 15 14 16 15 #import <CoreGraphics/CGImage.h> 17 16
+2
src/ImageIO/include/ImageIO/ImageIOBase.h
··· 23 23 24 24 #define IMAGEIO_EXTERN extern 25 25 26 + #include <CoreFoundation/CoreFoundation.h> 27 + 26 28 #endif
+2 -3
src/frameworks/ApplicationServices/PrintCore/include/PrintCore/PrintCore.h
··· 21 21 #ifndef _PrintCore_H_ 22 22 #define _PrintCore_H_ 23 23 24 - #import <Foundation/Foundation.h> 25 - 26 - #import <PrintCore/PMInkChecker.h> 24 + /* Private */ 25 + /* #import <PrintCore/PMInkChecker.h> */ 27 26 28 27 void* CPLAutoSelectCancel(void); 29 28 void* CPLAutoSelectCopyLocation(void);