this repo has no description
1
fork

Configure Feed

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

Merge pull request #1342 from genkiinstruments/imageio-missing-symbols

Add missing symbols for ImageIO

authored by

CuriousTommy and committed by
GitHub
34b70f14 8fe0d106

+9
+3
src/frameworks/ImageIO/include/ImageIO/CGImageSource.h
··· 13 13 typedef struct CF_BRIDGED_TYPE(id) O2ImageSource *CGImageSourceRef; 14 14 15 15 #import <CoreGraphics/CGImage.h> 16 + #import <CoreGraphics/CGDataProvider.h> 16 17 17 18 IMAGEIO_EXTERN CGImageSourceRef CGImageSourceCreateWithData(CFDataRef data, CFDictionaryRef options); 18 19 IMAGEIO_EXTERN CGImageSourceRef CGImageSourceCreateWithURL(CFURLRef url, CFDictionaryRef options); ··· 23 24 24 25 IMAGEIO_EXTERN CGImageRef CGImageSourceCreateImageAtIndex(CGImageSourceRef self, size_t index, CFDictionaryRef options); 25 26 IMAGEIO_EXTERN CFDictionaryRef CGImageSourceCopyPropertiesAtIndex(CGImageSourceRef self, size_t index, CFDictionaryRef options); 27 + 28 + IMAGEIO_EXTERN CGImageSourceRef CGImageSourceCreateWithDataProvider(CGDataProviderRef provider, CFDictionaryRef options);
+6
src/frameworks/ImageIO/src/CGImageSource.m
··· 34 34 { 35 35 return [self type]; 36 36 } 37 + 38 + CGImageSourceRef CGImageSourceCreateWithDataProvider(CGDataProviderRef provider, CFDictionaryRef options) 39 + { 40 + printf("STUB %s\n", __PRETTY_FUNCTION__); 41 + return nil; 42 + }