this repo has no description
1
fork

Configure Feed

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

Symbols for Xcode 9/10 (#445)

+984 -349
+2
src/ApplicationServices/ApplicationServices.c
··· 8 8 const CFStringRef kAXUIElementCopyHierarchyReturnAttributeErrorsKey = CFSTR("AXCHRE"); 9 9 const CFStringRef kAXUIElementCopyHierarchySkipInspectionForAttributesKey = CFSTR("AXCHSIA"); 10 10 const CFStringRef kAXUIElementCopyHierarchyTruncateStringsKey = CFSTR("AXTRUNC"); 11 + /* Not const for some reason */ 12 + CFStringRef kAXTrustedCheckOptionPrompt = CFSTR("AXTrustedCheckOptionPrompt");
+1
src/CMakeLists.txt
··· 215 215 ${CMAKE_CURRENT_SOURCE_DIR}/JavaVM/include 216 216 ${CMAKE_CURRENT_SOURCE_DIR}/DirectoryServices/include 217 217 ${CMAKE_CURRENT_SOURCE_DIR}/ConfigurationProfiles/include 218 + ${CMAKE_CURRENT_SOURCE_DIR}/ImageIO/include 218 219 ) 219 220 220 221 add_subdirectory(external/libkqueue)
+2
src/Carbon/CMakeLists.txt
··· 10 10 11 11 SOURCES 12 12 src/Carbon.c 13 + src/constants.c 13 14 14 15 DEPENDENCIES 16 + CoreFoundation 15 17 system 16 18 )
src/Carbon/include/Carbon/Carbon.h
src/Carbon/src/Carbon.c
+6
src/Carbon/src/constants.c
··· 1 + #include <CoreFoundation/CoreFoundation.h> 2 + 3 + /* HIToolbox.framework */ 4 + const CFStringRef kTISPropertyInputSourceID = CFSTR("TISPropertyInputSourceID"); 5 + const CFStringRef kTISPropertyInputSourceIsFromSystem = CFSTR("TISPropertyInputSourceIsFromSystem"); 6 + const CFStringRef kTISPropertyUnicodeKeyLayoutData = CFSTR("TISPropertyUnicodeKeyLayoutData");
+13
src/CoreServices/constants.m
··· 5 5 const CFStringRef kUTTagClassFilenameExtension = CFSTR("public.filename-extension"); 6 6 const CFStringRef kUTTagClassMIMEType = CFSTR("public.mime-type"); 7 7 const CFStringRef kUTTypeDevice = CFSTR("public.device"); 8 + const CFStringRef kUTTypeData = CFSTR("public.data"); 9 + const CFStringRef kUTTypeGIF = CFSTR("com.compuserve.gif"); 10 + const CFStringRef kUTTypeJPEG = CFSTR("public.jpeg"); 11 + const CFStringRef kUTTypePNG = CFSTR("kUTTypePNG"); 12 + const CFStringRef kUTTypePlainText = CFSTR("public.plain-text"); 13 + const CFStringRef kUTTypeTIFF = CFSTR("public.tiff"); 14 + const CFStringRef kUTTypeXMLPropertyList = CFSTR("com.apple.xml-property-list"); 15 + const CFStringRef kUTTypeZipArchive = CFSTR("public.zip-archive"); 16 + 17 + const CFStringRef _kLSASNKey = CFSTR("LSASN"); 18 + const CFStringRef _kLSApplicationTypeKey = CFSTR("ApplicationType"); 19 + const CFStringRef _kLSApplicationUIElementTypeKey = CFSTR("UIElement"); 20 + const CFStringRef _kLSPreviousASNKey = CFSTR("LSOtherASN");
+10 -15
src/ImageIO/CMakeLists.txt
··· 1 1 project(ImageIO) 2 2 3 - add_compile_options( 4 - -nostdinc 5 - ) 6 - 7 - include_directories( 8 - ${CMAKE_CURRENT_SOURCE_DIR} 9 - ) 10 - 11 3 set(DYLIB_COMPAT_VERSION "1.0.0") 12 4 set(DYLIB_CURRENT_VERSION "1.0.0") 13 5 14 6 add_framework(ImageIO 15 - FAT 16 - CURRENT_VERSION 17 - VERSION "A" 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 18 10 19 - SOURCES 20 - functions.c 11 + SOURCES 12 + src/ImageIO.m 21 13 22 - DEPENDENCIES 23 - system 14 + DEPENDENCIES 15 + system 16 + objc 17 + Foundation 18 + CoreFoundation 24 19 )
-169
src/ImageIO/functions.c
··· 1 - /* 2 - This file is part of Darling. 3 - 4 - Copyright (C) 2017 Lubos Dolezel 5 - 6 - Darling is free software: you can redistribute it and/or modify 7 - it under the terms of the GNU General Public License as published by 8 - the Free Software Foundation, either version 3 of the License, or 9 - (at your option) any later version. 10 - 11 - Darling is distributed in the hope that it will be useful, 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - GNU General Public License for more details. 15 - 16 - You should have received a copy of the GNU General Public License 17 - along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 - */ 19 - 20 - void CGCopyBasicPropertiesOfImageAtPath(void) { } 21 - void CGImageConvertExtendedSRGBToColorspace(void) { } 22 - void CGImageCopyFileWithGPSInformation(void) { } 23 - void CGImageCopyFileWithParameters(void) { } 24 - void CGImageCopyJPEGData(void) { } 25 - void CGImageCopyJPEGDataAndColorSpace(void) { } 26 - void CGImageCopySourceData(void) { } 27 - void CGImageCreateByMatchingToColorSpace(void) { } 28 - void CGImageCreateByMatchingToDisplay(void) { } 29 - void CGImageCreateByScaling(void) { } 30 - void CGImageCreateCopyWithAlphaInfo(void) { } 31 - void CGImageCreateCopyWithParameters(void) { } 32 - void CGImageCreateEXIFDataFromProperties(void) { } 33 - void CGImageCreateEXIFJPEGData(void) { } 34 - void CGImageCreateFromIOSurface(void) { } 35 - void CGImageCreateThumb(void) { } 36 - void CGImageDestinationAddImage(void) { } 37 - void CGImageDestinationAddImageAndMetadata(void) { } 38 - void CGImageDestinationAddImageFromSource(void) { } 39 - void CGImageDestinationAddImageFromSourceWithMetadata(void) { } 40 - void CGImageDestinationAddImageWithMetadata(void) { } 41 - void CGImageDestinationCopyImageFormats(void) { } 42 - void CGImageDestinationCopyImageSource(void) { } 43 - void CGImageDestinationCopyTypeIdentifiers(void) { } 44 - void CGImageDestinationCreateWithData(void) { } 45 - void CGImageDestinationCreateWithDataConsumer(void) { } 46 - void CGImageDestinationCreateWithURL(void) { } 47 - void CGImageDestinationFinalize(void) { } 48 - void CGImageDestinationGetTypeID(void) { } 49 - void CGImageDestinationSetProperties(void) { } 50 - void CGImageMetadataCopyStringValueWithPath(void) { } 51 - void CGImageMetadataCopyTagMatchingImageProperty(void) { } 52 - void CGImageMetadataCopyTagWithPath(void) { } 53 - void CGImageMetadataCopyTags(void) { } 54 - void CGImageMetadataCreateFromData(void) { } 55 - void CGImageMetadataCreateFromMetadataProperties(void) { } 56 - void CGImageMetadataCreateFromXMPData(void) { } 57 - void CGImageMetadataCreateMetadataProperties(void) { } 58 - void CGImageMetadataCreateMutable(void) { } 59 - void CGImageMetadataCreateMutableCopy(void) { } 60 - void CGImageMetadataCreateSerializedData(void) { } 61 - void CGImageMetadataCreateSidecar(void) { } 62 - void CGImageMetadataCreateXMPData(void) { } 63 - void CGImageMetadataEnumerateTagsUsingBlock(void) { } 64 - void CGImageMetadataGetTypeID(void) { } 65 - void CGImageMetadataPropertyCreate(void) { } 66 - void CGImageMetadataPropertyGetPropertyName(void) { } 67 - void CGImageMetadataPropertyGetSchema(void) { } 68 - void CGImageMetadataPropertyGetSuggestedPrefix(void) { } 69 - void CGImageMetadataPropertyGetTypeID(void) { } 70 - void CGImageMetadataPropertyGetValue(void) { } 71 - void CGImageMetadataPropertySetValue(void) { } 72 - void CGImageMetadataRegisterNamespaceForPrefix(void) { } 73 - void CGImageMetadataRemoveTagWithPath(void) { } 74 - void CGImageMetadataSerialize(void) { } 75 - void CGImageMetadataSetTagWithPath(void) { } 76 - void CGImageMetadataSetValueMatchingImageProperty(void) { } 77 - void CGImageMetadataSetValueWithPath(void) { } 78 - void CGImageMetadataTagCopyName(void) { } 79 - void CGImageMetadataTagCopyNamespace(void) { } 80 - void CGImageMetadataTagCopyPrefix(void) { } 81 - void CGImageMetadataTagCopyQualifiers(void) { } 82 - void CGImageMetadataTagCopyValue(void) { } 83 - void CGImageMetadataTagCreate(void) { } 84 - void CGImageMetadataTagGetType(void) { } 85 - void CGImageMetadataTagGetTypeID(void) { } 86 - void CGImageMetadataValueAddQualifier(void) { } 87 - void CGImageMetadataValueCreate(void) { } 88 - void CGImageMetadataValueGetNamespaceURI(void) { } 89 - void CGImageMetadataValueGetQualifiers(void) { } 90 - void CGImageMetadataValueGetSuggestedNamespacePrefix(void) { } 91 - void CGImageMetadataValueGetTypeID(void) { } 92 - void CGImageMetadataValueGetValue(void) { } 93 - void CGImageMetadataValueIsAlternate(void) { } 94 - void CGImageMetadataValueIsAlternateText(void) { } 95 - void CGImageMetadataValueSetIsAlternate(void) { } 96 - void CGImageMetadataValueSetIsAlternateText(void) { } 97 - void CGImageMetadataValueSetNamespaceURI(void) { } 98 - void CGImageMetadataValueSetSuggestedNamespacePrefix(void) { } 99 - void CGImagePluginGetMetadata(void) { } 100 - void CGImagePluginGetOptions(void) { } 101 - void CGImagePluginGetProperties(void) { } 102 - void CGImagePluginGetSession(void) { } 103 - void CGImagePluginInitJPEGAtOffset(void) { } 104 - void CGImagePluginInitThumbJPEGAtOffset(void) { } 105 - void CGImagePluginReadRawIPTCProps(void) { } 106 - void CGImagePluginReadRawXMPProps(void) { } 107 - void CGImagePluginReadRawXMPSidecarProps(void) { } 108 - void CGImagePluginSetBandProc(void) { } 109 - void CGImagePluginSetClipPath(void) { } 110 - void CGImagePluginSetImage(void) { } 111 - void CGImagePluginSetImageBlockProc(void) { } 112 - void CGImagePluginSetJpegProvider(void) { } 113 - void CGImageReadSessionCreateFILE(void) { } 114 - void CGImageReadSessionGetBytePointer(void) { } 115 - void CGImageReadSessionGetBytes(void) { } 116 - void CGImageReadSessionGetBytesAtOffset(void) { } 117 - void CGImageReadSessionGetFilePath(void) { } 118 - void CGImageReadSessionGetReadRef(void) { } 119 - void CGImageReadSessionGetSize(void) { } 120 - void CGImageReadSessionIsFinal(void) { } 121 - void CGImageReadSessionReleaseBytePointer(void) { } 122 - void CGImageReadSessionRewind(void) { } 123 - void CGImageReadSessionSeek(void) { } 124 - void CGImageReadSessionSkipBytes(void) { } 125 - void CGImageSaveToFile(void) { } 126 - void CGImageSourceAddProperty(void) { } 127 - void CGImageSourceCopyMetadataAtIndex(void) { } 128 - void CGImageSourceCopyMetadataPropertiesAtIndex(void) { } 129 - void CGImageSourceCopyProperties(void) { } 130 - void CGImageSourceCopyPropertiesAtIndex(void) { } 131 - void CGImageSourceCopyTypeExtensions(void) { } 132 - void CGImageSourceCopyTypeIdentifiers(void) { } 133 - void CGImageSourceCreateIOSurfaceAtIndex(void) { } 134 - void CGImageSourceCreateImageAtIndex(void) { } 135 - void CGImageSourceCreateIncremental(void) { } 136 - void CGImageSourceCreateThumbnailAtIndex(void) { } 137 - void CGImageSourceCreateWithData(void) { } 138 - void CGImageSourceCreateWithDataProvider(void) { } 139 - void CGImageSourceCreateWithFile(void) { } 140 - void CGImageSourceCreateWithURL(void) { } 141 - void CGImageSourceGetCount(void) { } 142 - void CGImageSourceGetImageCacheAtIndex(void) { } 143 - void CGImageSourceGetProperties(void) { } 144 - void CGImageSourceGetPropertiesAtIndex(void) { } 145 - void CGImageSourceGetStatus(void) { } 146 - void CGImageSourceGetStatusAtIndex(void) { } 147 - void CGImageSourceGetType(void) { } 148 - void CGImageSourceGetTypeID(void) { } 149 - void CGImageSourceGetTypeWithData(void) { } 150 - void CGImageSourceGetTypeWithDataProvider(void) { } 151 - void CGImageSourceGetTypeWithExtension(void) { } 152 - void CGImageSourceGetTypeWithFile(void) { } 153 - void CGImageSourceGetTypeWithURL(void) { } 154 - void CGImageSourceIsColorOptimizedForSharing(void) { } 155 - void CGImageSourceRemoveCacheAtIndex(void) { } 156 - void CGImageSourceUpdateData(void) { } 157 - void CGImageSourceUpdateDataProvider(void) { } 158 - void CGImageWriteEXIFJPEGToPath(void) { } 159 - void CGImageWriteEXIFJPEGWithMetadata(void) { } 160 - void CGImageWriteSessionPutBytes(void) { } 161 - void CopyMetadataFromFileAtPath(void) { } 162 - void CopyMetadataFromSequentialDataProviderCallbacks(void) { } 163 - void GetMetadataPropertyMatchingSchemaAndPropertyName(void) { } 164 - void ImageIODebug(void) { } 165 - void ImageIOSetLoggingProc(void) { } 166 - 167 - void* kCGImageSourceCreateThumbnailFromImageAlways; 168 - void* kCGImageSourceThumbnailMaxPixelSize; 169 -
-165
src/ImageIO/functions.h
··· 1 - /* 2 - This file is part of Darling. 3 - 4 - Copyright (C) 2017 Lubos Dolezel 5 - 6 - Darling is free software: you can redistribute it and/or modify 7 - it under the terms of the GNU General Public License as published by 8 - the Free Software Foundation, either version 3 of the License, or 9 - (at your option) any later version. 10 - 11 - Darling is distributed in the hope that it will be useful, 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - GNU General Public License for more details. 15 - 16 - You should have received a copy of the GNU General Public License 17 - along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 - */ 19 - 20 - void CGCopyBasicPropertiesOfImageAtPath(void); 21 - void CGImageConvertExtendedSRGBToColorspace(void); 22 - void CGImageCopyFileWithGPSInformation(void); 23 - void CGImageCopyFileWithParameters(void); 24 - void CGImageCopyJPEGData(void); 25 - void CGImageCopyJPEGDataAndColorSpace(void); 26 - void CGImageCopySourceData(void); 27 - void CGImageCreateByMatchingToColorSpace(void); 28 - void CGImageCreateByMatchingToDisplay(void); 29 - void CGImageCreateByScaling(void); 30 - void CGImageCreateCopyWithAlphaInfo(void); 31 - void CGImageCreateCopyWithParameters(void); 32 - void CGImageCreateEXIFDataFromProperties(void); 33 - void CGImageCreateEXIFJPEGData(void); 34 - void CGImageCreateFromIOSurface(void); 35 - void CGImageCreateThumb(void); 36 - void CGImageDestinationAddImage(void); 37 - void CGImageDestinationAddImageAndMetadata(void); 38 - void CGImageDestinationAddImageFromSource(void); 39 - void CGImageDestinationAddImageFromSourceWithMetadata(void); 40 - void CGImageDestinationAddImageWithMetadata(void); 41 - void CGImageDestinationCopyImageFormats(void); 42 - void CGImageDestinationCopyImageSource(void); 43 - void CGImageDestinationCopyTypeIdentifiers(void); 44 - void CGImageDestinationCreateWithData(void); 45 - void CGImageDestinationCreateWithDataConsumer(void); 46 - void CGImageDestinationCreateWithURL(void); 47 - void CGImageDestinationFinalize(void); 48 - void CGImageDestinationGetTypeID(void); 49 - void CGImageDestinationSetProperties(void); 50 - void CGImageMetadataCopyStringValueWithPath(void); 51 - void CGImageMetadataCopyTagMatchingImageProperty(void); 52 - void CGImageMetadataCopyTagWithPath(void); 53 - void CGImageMetadataCopyTags(void); 54 - void CGImageMetadataCreateFromData(void); 55 - void CGImageMetadataCreateFromMetadataProperties(void); 56 - void CGImageMetadataCreateFromXMPData(void); 57 - void CGImageMetadataCreateMetadataProperties(void); 58 - void CGImageMetadataCreateMutable(void); 59 - void CGImageMetadataCreateMutableCopy(void); 60 - void CGImageMetadataCreateSerializedData(void); 61 - void CGImageMetadataCreateSidecar(void); 62 - void CGImageMetadataCreateXMPData(void); 63 - void CGImageMetadataEnumerateTagsUsingBlock(void); 64 - void CGImageMetadataGetTypeID(void); 65 - void CGImageMetadataPropertyCreate(void); 66 - void CGImageMetadataPropertyGetPropertyName(void); 67 - void CGImageMetadataPropertyGetSchema(void); 68 - void CGImageMetadataPropertyGetSuggestedPrefix(void); 69 - void CGImageMetadataPropertyGetTypeID(void); 70 - void CGImageMetadataPropertyGetValue(void); 71 - void CGImageMetadataPropertySetValue(void); 72 - void CGImageMetadataRegisterNamespaceForPrefix(void); 73 - void CGImageMetadataRemoveTagWithPath(void); 74 - void CGImageMetadataSerialize(void); 75 - void CGImageMetadataSetTagWithPath(void); 76 - void CGImageMetadataSetValueMatchingImageProperty(void); 77 - void CGImageMetadataSetValueWithPath(void); 78 - void CGImageMetadataTagCopyName(void); 79 - void CGImageMetadataTagCopyNamespace(void); 80 - void CGImageMetadataTagCopyPrefix(void); 81 - void CGImageMetadataTagCopyQualifiers(void); 82 - void CGImageMetadataTagCopyValue(void); 83 - void CGImageMetadataTagCreate(void); 84 - void CGImageMetadataTagGetType(void); 85 - void CGImageMetadataTagGetTypeID(void); 86 - void CGImageMetadataValueAddQualifier(void); 87 - void CGImageMetadataValueCreate(void); 88 - void CGImageMetadataValueGetNamespaceURI(void); 89 - void CGImageMetadataValueGetQualifiers(void); 90 - void CGImageMetadataValueGetSuggestedNamespacePrefix(void); 91 - void CGImageMetadataValueGetTypeID(void); 92 - void CGImageMetadataValueGetValue(void); 93 - void CGImageMetadataValueIsAlternate(void); 94 - void CGImageMetadataValueIsAlternateText(void); 95 - void CGImageMetadataValueSetIsAlternate(void); 96 - void CGImageMetadataValueSetIsAlternateText(void); 97 - void CGImageMetadataValueSetNamespaceURI(void); 98 - void CGImageMetadataValueSetSuggestedNamespacePrefix(void); 99 - void CGImagePluginGetMetadata(void); 100 - void CGImagePluginGetOptions(void); 101 - void CGImagePluginGetProperties(void); 102 - void CGImagePluginGetSession(void); 103 - void CGImagePluginInitJPEGAtOffset(void); 104 - void CGImagePluginInitThumbJPEGAtOffset(void); 105 - void CGImagePluginReadRawIPTCProps(void); 106 - void CGImagePluginReadRawXMPProps(void); 107 - void CGImagePluginReadRawXMPSidecarProps(void); 108 - void CGImagePluginSetBandProc(void); 109 - void CGImagePluginSetClipPath(void); 110 - void CGImagePluginSetImage(void); 111 - void CGImagePluginSetImageBlockProc(void); 112 - void CGImagePluginSetJpegProvider(void); 113 - void CGImageReadSessionCreateFILE(void); 114 - void CGImageReadSessionGetBytePointer(void); 115 - void CGImageReadSessionGetBytes(void); 116 - void CGImageReadSessionGetBytesAtOffset(void); 117 - void CGImageReadSessionGetFilePath(void); 118 - void CGImageReadSessionGetReadRef(void); 119 - void CGImageReadSessionGetSize(void); 120 - void CGImageReadSessionIsFinal(void); 121 - void CGImageReadSessionReleaseBytePointer(void); 122 - void CGImageReadSessionRewind(void); 123 - void CGImageReadSessionSeek(void); 124 - void CGImageReadSessionSkipBytes(void); 125 - void CGImageSaveToFile(void); 126 - void CGImageSourceAddProperty(void); 127 - void CGImageSourceCopyMetadataAtIndex(void); 128 - void CGImageSourceCopyMetadataPropertiesAtIndex(void); 129 - void CGImageSourceCopyProperties(void); 130 - void CGImageSourceCopyPropertiesAtIndex(void); 131 - void CGImageSourceCopyTypeExtensions(void); 132 - void CGImageSourceCopyTypeIdentifiers(void); 133 - void CGImageSourceCreateIOSurfaceAtIndex(void); 134 - void CGImageSourceCreateImageAtIndex(void); 135 - void CGImageSourceCreateIncremental(void); 136 - void CGImageSourceCreateThumbnailAtIndex(void); 137 - void CGImageSourceCreateWithData(void); 138 - void CGImageSourceCreateWithDataProvider(void); 139 - void CGImageSourceCreateWithFile(void); 140 - void CGImageSourceCreateWithURL(void); 141 - void CGImageSourceGetCount(void); 142 - void CGImageSourceGetImageCacheAtIndex(void); 143 - void CGImageSourceGetProperties(void); 144 - void CGImageSourceGetPropertiesAtIndex(void); 145 - void CGImageSourceGetStatus(void); 146 - void CGImageSourceGetStatusAtIndex(void); 147 - void CGImageSourceGetType(void); 148 - void CGImageSourceGetTypeID(void); 149 - void CGImageSourceGetTypeWithData(void); 150 - void CGImageSourceGetTypeWithDataProvider(void); 151 - void CGImageSourceGetTypeWithExtension(void); 152 - void CGImageSourceGetTypeWithFile(void); 153 - void CGImageSourceGetTypeWithURL(void); 154 - void CGImageSourceIsColorOptimizedForSharing(void); 155 - void CGImageSourceRemoveCacheAtIndex(void); 156 - void CGImageSourceUpdateData(void); 157 - void CGImageSourceUpdateDataProvider(void); 158 - void CGImageWriteEXIFJPEGToPath(void); 159 - void CGImageWriteEXIFJPEGWithMetadata(void); 160 - void CGImageWriteSessionPutBytes(void); 161 - void CopyMetadataFromFileAtPath(void); 162 - void CopyMetadataFromSequentialDataProviderCallbacks(void); 163 - void GetMetadataPropertyMatchingSchemaAndPropertyName(void); 164 - void ImageIODebug(void); 165 - void ImageIOSetLoggingProc(void);
+180
src/ImageIO/include/ImageIO/ImageIO.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #ifndef _ImageIO_H_ 22 + #define _ImageIO_H_ 23 + 24 + #include <CoreFoundation/CoreFoundation.h> 25 + 26 + #define IMAGEIO_EXTERN extern 27 + 28 + IMAGEIO_EXTERN const CFStringRef kCGImageDestinationLossyCompressionQuality; 29 + IMAGEIO_EXTERN const CFStringRef kCGImageSourceCreateThumbnailFromImageAlways; 30 + IMAGEIO_EXTERN const CFStringRef kCGImageSourceThumbnailMaxPixelSize; 31 + 32 + void* CGCopyBasicPropertiesOfImageAtPath(void); 33 + void* CGImageCopyFileWithGPSInformation(void); 34 + void* CGImageCopyFileWithParameters(void); 35 + void* CGImageCopyJPEGData(void); 36 + void* CGImageCopyJPEGDataAndColorSpace(void); 37 + void* CGImageCopySourceData(void); 38 + void* CGImageCreateByMatchingToColorSpace(void); 39 + void* CGImageCreateByMatchingToDisplay(void); 40 + void* CGImageCreateByScaling(void); 41 + void* CGImageCreateColorSpaceFromDataArray(void); 42 + void* CGImageCreateCopyWithAlphaInfo(void); 43 + void* CGImageCreateCopyWithParameters(void); 44 + void* CGImageCreateEXIFDataFromProperties(void); 45 + void* CGImageCreateEXIFJPEGData(void); 46 + void* CGImageCreateFromIOSurface(void); 47 + void* CGImageCreateMetadataFromDataArray(void); 48 + void* CGImageCreateThumb(void); 49 + void* CGImageCreateWithWBMPData(void); 50 + void* CGImageDestinationAddAuxiliaryDataInfo(void); 51 + void* CGImageDestinationAddImage(void); 52 + void* CGImageDestinationAddImageAndMetadata(void); 53 + void* CGImageDestinationAddImageFromSource(void); 54 + void* CGImageDestinationAddImageFromSourceWithMetadata(void); 55 + void* CGImageDestinationAddImageWithMetadata(void); 56 + void* CGImageDestinationCopyImageFormats(void); 57 + void* CGImageDestinationCopyImageSource(void); 58 + void* CGImageDestinationCopyTypeIdentifiers(void); 59 + void* CGImageDestinationCreateWithData(void); 60 + void* CGImageDestinationCreateWithDataConsumer(void); 61 + void* CGImageDestinationCreateWithURL(void); 62 + void* CGImageDestinationFinalize(void); 63 + void* CGImageDestinationGetTypeID(void); 64 + void* CGImageDestinationSetProperties(void); 65 + void* CGImageIOCreateXMPDataFromMetaData(void); 66 + void* CGImageIsInsideSRGB(void); 67 + void* CGImageMetadataCopyStringValueWithPath(void); 68 + void* CGImageMetadataCopyTagMatchingImageProperty(void); 69 + void* CGImageMetadataCopyTagWithPath(void); 70 + void* CGImageMetadataCopyTags(void); 71 + void* CGImageMetadataCreateFromData(void); 72 + void* CGImageMetadataCreateFromMetadataProperties(void); 73 + void* CGImageMetadataCreateFromXMPData(void); 74 + void* CGImageMetadataCreateMetadataProperties(void); 75 + void* CGImageMetadataCreateMutable(void); 76 + void* CGImageMetadataCreateMutableCopy(void); 77 + void* CGImageMetadataCreateSerializedData(void); 78 + void* CGImageMetadataCreateSidecar(void); 79 + void* CGImageMetadataCreateXMPData(void); 80 + void* CGImageMetadataEnumerateTagsUsingBlock(void); 81 + void* CGImageMetadataGetTypeID(void); 82 + void* CGImageMetadataPropertyCreate(void); 83 + void* CGImageMetadataPropertyGetPropertyName(void); 84 + void* CGImageMetadataPropertyGetSchema(void); 85 + void* CGImageMetadataPropertyGetSuggestedPrefix(void); 86 + void* CGImageMetadataPropertyGetTypeID(void); 87 + void* CGImageMetadataPropertyGetValue(void); 88 + void* CGImageMetadataPropertySetValue(void); 89 + void* CGImageMetadataRegisterNamespaceForPrefix(void); 90 + void* CGImageMetadataRemoveTagWithPath(void); 91 + void* CGImageMetadataSerialize(void); 92 + void* CGImageMetadataSetTagWithPath(void); 93 + void* CGImageMetadataSetValueMatchingImageProperty(void); 94 + void* CGImageMetadataSetValueWithPath(void); 95 + void* CGImageMetadataTagCopyName(void); 96 + void* CGImageMetadataTagCopyNamespace(void); 97 + void* CGImageMetadataTagCopyPrefix(void); 98 + void* CGImageMetadataTagCopyQualifiers(void); 99 + void* CGImageMetadataTagCopyValue(void); 100 + void* CGImageMetadataTagCreate(void); 101 + void* CGImageMetadataTagGetType(void); 102 + void* CGImageMetadataTagGetTypeID(void); 103 + void* CGImageMetadataValueAddQualifier(void); 104 + void* CGImageMetadataValueCreate(void); 105 + void* CGImageMetadataValueGetNamespaceURI(void); 106 + void* CGImageMetadataValueGetQualifiers(void); 107 + void* CGImageMetadataValueGetSuggestedNamespacePrefix(void); 108 + void* CGImageMetadataValueGetTypeID(void); 109 + void* CGImageMetadataValueGetValue(void); 110 + void* CGImageMetadataValueIsAlternate(void); 111 + void* CGImageMetadataValueIsAlternateText(void); 112 + void* CGImageMetadataValueSetIsAlternate(void); 113 + void* CGImageMetadataValueSetIsAlternateText(void); 114 + void* CGImageMetadataValueSetNamespaceURI(void); 115 + void* CGImageMetadataValueSetSuggestedNamespacePrefix(void); 116 + void* CGImagePluginGetMatchToProfileOption(void); 117 + void* CGImagePluginGetMetadata(void); 118 + void* CGImagePluginGetOptions(void); 119 + void* CGImagePluginGetProperties(void); 120 + void* CGImagePluginGetSession(void); 121 + void* CGImagePluginInitJPEGAtOffset(void); 122 + void* CGImagePluginInitThumbJPEGAtOffset(void); 123 + void* CGImagePluginReadRawIPTCProps(void); 124 + void* CGImagePluginReadRawXMPProps(void); 125 + void* CGImagePluginReadRawXMPSidecarProps(void); 126 + void* CGImagePluginSetClipPath(void); 127 + void* CGImagePluginSetImage(void); 128 + void* CGImagePluginSetImageBlockProc(void); 129 + void* CGImagePluginSetJpegProvider(void); 130 + void* CGImageReadSessionCreateFILE(void); 131 + void* CGImageReadSessionGetBytePointer(void); 132 + void* CGImageReadSessionGetBytesAtOffset(void); 133 + void* CGImageReadSessionGetFilePath(void); 134 + void* CGImageReadSessionGetSize(void); 135 + void* CGImageReadSessionGetTypeID(void); 136 + void* CGImageReadSessionIsFinal(void); 137 + void* CGImageReadSessionReleaseBytePointer(void); 138 + void* CGImageReadSessionReleaseCachedImageBlockData(void); 139 + void* CGImageSaveToFile(void); 140 + void* CGImageSourceAddProperty(void); 141 + void* CGImageSourceCopyAuxiliaryDataInfoAtIndex(void); 142 + void* CGImageSourceCopyMetadataAtIndex(void); 143 + void* CGImageSourceCopyMetadataPropertiesAtIndex(void); 144 + void* CGImageSourceCopyProperties(void); 145 + void* CGImageSourceCopyPropertiesAtIndex(void); 146 + void* CGImageSourceCopyTypeExtensions(void); 147 + void* CGImageSourceCopyTypeIdentifiers(void); 148 + void* CGImageSourceCreateIOSurfaceAtIndex(void); 149 + void* CGImageSourceCreateImageAtIndex(void); 150 + void* CGImageSourceCreateIncremental(void); 151 + void* CGImageSourceCreateThumbnailAtIndex(void); 152 + void* CGImageSourceCreateWithData(void); 153 + void* CGImageSourceCreateWithDataProvider(void); 154 + void* CGImageSourceCreateWithFile(void); 155 + void* CGImageSourceCreateWithURL(void); 156 + void* CGImageSourceGetCount(void); 157 + void* CGImageSourceGetImageCacheAtIndex(void); 158 + void* CGImageSourceGetPrimaryImageIndex(void); 159 + void* CGImageSourceGetStatus(void); 160 + void* CGImageSourceGetStatusAtIndex(void); 161 + void* CGImageSourceGetType(void); 162 + void* CGImageSourceGetTypeID(void); 163 + void* CGImageSourceGetTypeWithData(void); 164 + void* CGImageSourceGetTypeWithDataProvider(void); 165 + void* CGImageSourceGetTypeWithExtension(void); 166 + void* CGImageSourceGetTypeWithFile(void); 167 + void* CGImageSourceGetTypeWithURL(void); 168 + void* CGImageSourceIsColorOptimizedForSharing(void); 169 + void* CGImageSourceRemoveCacheAtIndex(void); 170 + void* CGImageSourceUpdateData(void); 171 + void* CGImageSourceUpdateDataProvider(void); 172 + void* CGImageWriteEXIFJPEGToPath(void); 173 + void* CGImageWriteEXIFJPEGWithMetadata(void); 174 + void* CopyMetadataFromFileAtPath(void); 175 + void* CopyMetadataFromSequentialDataProviderCallbacks(void); 176 + void* GetMetadataPropertyMatchingSchemaAndPropertyName(void); 177 + void* ImageIODebug(void); 178 + void* ImageIOSetLoggingProc(void); 179 + 180 + #endif
+770
src/ImageIO/src/ImageIO.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #include <ImageIO/ImageIO.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + #include <CoreFoundation/CoreFoundation.h> 25 + 26 + const CFStringRef kCGImageDestinationLossyCompressionQuality = CFSTR("kCGImageDestinationLossyCompressionQuality"); 27 + const CFStringRef kCGImageSourceCreateThumbnailFromImageAlways = CFSTR("kCGImageSourceCreateThumbnailFromImageAlways"); 28 + const CFStringRef kCGImageSourceThumbnailMaxPixelSize = CFSTR("kCGImageSourceThumbnailMaxPixelSize"); 29 + 30 + static int verbose = 0; 31 + 32 + __attribute__((constructor)) 33 + static void initme(void) { 34 + verbose = getenv("STUB_VERBOSE") != NULL; 35 + } 36 + 37 + void* CGCopyBasicPropertiesOfImageAtPath(void) { 38 + if (verbose) puts("STUB: CGCopyBasicPropertiesOfImageAtPath called"); 39 + return NULL; 40 + } 41 + 42 + void* CGImageCopyFileWithGPSInformation(void) { 43 + if (verbose) puts("STUB: CGImageCopyFileWithGPSInformation called"); 44 + return NULL; 45 + } 46 + 47 + void* CGImageCopyFileWithParameters(void) { 48 + if (verbose) puts("STUB: CGImageCopyFileWithParameters called"); 49 + return NULL; 50 + } 51 + 52 + void* CGImageCopyJPEGData(void) { 53 + if (verbose) puts("STUB: CGImageCopyJPEGData called"); 54 + return NULL; 55 + } 56 + 57 + void* CGImageCopyJPEGDataAndColorSpace(void) { 58 + if (verbose) puts("STUB: CGImageCopyJPEGDataAndColorSpace called"); 59 + return NULL; 60 + } 61 + 62 + void* CGImageCopySourceData(void) { 63 + if (verbose) puts("STUB: CGImageCopySourceData called"); 64 + return NULL; 65 + } 66 + 67 + void* CGImageCreateByMatchingToColorSpace(void) { 68 + if (verbose) puts("STUB: CGImageCreateByMatchingToColorSpace called"); 69 + return NULL; 70 + } 71 + 72 + void* CGImageCreateByMatchingToDisplay(void) { 73 + if (verbose) puts("STUB: CGImageCreateByMatchingToDisplay called"); 74 + return NULL; 75 + } 76 + 77 + void* CGImageCreateByScaling(void) { 78 + if (verbose) puts("STUB: CGImageCreateByScaling called"); 79 + return NULL; 80 + } 81 + 82 + void* CGImageCreateColorSpaceFromDataArray(void) { 83 + if (verbose) puts("STUB: CGImageCreateColorSpaceFromDataArray called"); 84 + return NULL; 85 + } 86 + 87 + void* CGImageCreateCopyWithAlphaInfo(void) { 88 + if (verbose) puts("STUB: CGImageCreateCopyWithAlphaInfo called"); 89 + return NULL; 90 + } 91 + 92 + void* CGImageCreateCopyWithParameters(void) { 93 + if (verbose) puts("STUB: CGImageCreateCopyWithParameters called"); 94 + return NULL; 95 + } 96 + 97 + void* CGImageCreateEXIFDataFromProperties(void) { 98 + if (verbose) puts("STUB: CGImageCreateEXIFDataFromProperties called"); 99 + return NULL; 100 + } 101 + 102 + void* CGImageCreateEXIFJPEGData(void) { 103 + if (verbose) puts("STUB: CGImageCreateEXIFJPEGData called"); 104 + return NULL; 105 + } 106 + 107 + void* CGImageCreateFromIOSurface(void) { 108 + if (verbose) puts("STUB: CGImageCreateFromIOSurface called"); 109 + return NULL; 110 + } 111 + 112 + void* CGImageCreateMetadataFromDataArray(void) { 113 + if (verbose) puts("STUB: CGImageCreateMetadataFromDataArray called"); 114 + return NULL; 115 + } 116 + 117 + void* CGImageCreateThumb(void) { 118 + if (verbose) puts("STUB: CGImageCreateThumb called"); 119 + return NULL; 120 + } 121 + 122 + void* CGImageCreateWithWBMPData(void) { 123 + if (verbose) puts("STUB: CGImageCreateWithWBMPData called"); 124 + return NULL; 125 + } 126 + 127 + void* CGImageDestinationAddAuxiliaryDataInfo(void) { 128 + if (verbose) puts("STUB: CGImageDestinationAddAuxiliaryDataInfo called"); 129 + return NULL; 130 + } 131 + 132 + void* CGImageDestinationAddImage(void) { 133 + if (verbose) puts("STUB: CGImageDestinationAddImage called"); 134 + return NULL; 135 + } 136 + 137 + void* CGImageDestinationAddImageAndMetadata(void) { 138 + if (verbose) puts("STUB: CGImageDestinationAddImageAndMetadata called"); 139 + return NULL; 140 + } 141 + 142 + void* CGImageDestinationAddImageFromSource(void) { 143 + if (verbose) puts("STUB: CGImageDestinationAddImageFromSource called"); 144 + return NULL; 145 + } 146 + 147 + void* CGImageDestinationAddImageFromSourceWithMetadata(void) { 148 + if (verbose) puts("STUB: CGImageDestinationAddImageFromSourceWithMetadata called"); 149 + return NULL; 150 + } 151 + 152 + void* CGImageDestinationAddImageWithMetadata(void) { 153 + if (verbose) puts("STUB: CGImageDestinationAddImageWithMetadata called"); 154 + return NULL; 155 + } 156 + 157 + void* CGImageDestinationCopyImageFormats(void) { 158 + if (verbose) puts("STUB: CGImageDestinationCopyImageFormats called"); 159 + return NULL; 160 + } 161 + 162 + void* CGImageDestinationCopyImageSource(void) { 163 + if (verbose) puts("STUB: CGImageDestinationCopyImageSource called"); 164 + return NULL; 165 + } 166 + 167 + void* CGImageDestinationCopyTypeIdentifiers(void) { 168 + if (verbose) puts("STUB: CGImageDestinationCopyTypeIdentifiers called"); 169 + return NULL; 170 + } 171 + 172 + void* CGImageDestinationCreateWithData(void) { 173 + if (verbose) puts("STUB: CGImageDestinationCreateWithData called"); 174 + return NULL; 175 + } 176 + 177 + void* CGImageDestinationCreateWithDataConsumer(void) { 178 + if (verbose) puts("STUB: CGImageDestinationCreateWithDataConsumer called"); 179 + return NULL; 180 + } 181 + 182 + void* CGImageDestinationCreateWithURL(void) { 183 + if (verbose) puts("STUB: CGImageDestinationCreateWithURL called"); 184 + return NULL; 185 + } 186 + 187 + void* CGImageDestinationFinalize(void) { 188 + if (verbose) puts("STUB: CGImageDestinationFinalize called"); 189 + return NULL; 190 + } 191 + 192 + void* CGImageDestinationGetTypeID(void) { 193 + if (verbose) puts("STUB: CGImageDestinationGetTypeID called"); 194 + return NULL; 195 + } 196 + 197 + void* CGImageDestinationSetProperties(void) { 198 + if (verbose) puts("STUB: CGImageDestinationSetProperties called"); 199 + return NULL; 200 + } 201 + 202 + void* CGImageIOCreateXMPDataFromMetaData(void) { 203 + if (verbose) puts("STUB: CGImageIOCreateXMPDataFromMetaData called"); 204 + return NULL; 205 + } 206 + 207 + void* CGImageIsInsideSRGB(void) { 208 + if (verbose) puts("STUB: CGImageIsInsideSRGB called"); 209 + return NULL; 210 + } 211 + 212 + void* CGImageMetadataCopyStringValueWithPath(void) { 213 + if (verbose) puts("STUB: CGImageMetadataCopyStringValueWithPath called"); 214 + return NULL; 215 + } 216 + 217 + void* CGImageMetadataCopyTagMatchingImageProperty(void) { 218 + if (verbose) puts("STUB: CGImageMetadataCopyTagMatchingImageProperty called"); 219 + return NULL; 220 + } 221 + 222 + void* CGImageMetadataCopyTagWithPath(void) { 223 + if (verbose) puts("STUB: CGImageMetadataCopyTagWithPath called"); 224 + return NULL; 225 + } 226 + 227 + void* CGImageMetadataCopyTags(void) { 228 + if (verbose) puts("STUB: CGImageMetadataCopyTags called"); 229 + return NULL; 230 + } 231 + 232 + void* CGImageMetadataCreateFromData(void) { 233 + if (verbose) puts("STUB: CGImageMetadataCreateFromData called"); 234 + return NULL; 235 + } 236 + 237 + void* CGImageMetadataCreateFromMetadataProperties(void) { 238 + if (verbose) puts("STUB: CGImageMetadataCreateFromMetadataProperties called"); 239 + return NULL; 240 + } 241 + 242 + void* CGImageMetadataCreateFromXMPData(void) { 243 + if (verbose) puts("STUB: CGImageMetadataCreateFromXMPData called"); 244 + return NULL; 245 + } 246 + 247 + void* CGImageMetadataCreateMetadataProperties(void) { 248 + if (verbose) puts("STUB: CGImageMetadataCreateMetadataProperties called"); 249 + return NULL; 250 + } 251 + 252 + void* CGImageMetadataCreateMutable(void) { 253 + if (verbose) puts("STUB: CGImageMetadataCreateMutable called"); 254 + return NULL; 255 + } 256 + 257 + void* CGImageMetadataCreateMutableCopy(void) { 258 + if (verbose) puts("STUB: CGImageMetadataCreateMutableCopy called"); 259 + return NULL; 260 + } 261 + 262 + void* CGImageMetadataCreateSerializedData(void) { 263 + if (verbose) puts("STUB: CGImageMetadataCreateSerializedData called"); 264 + return NULL; 265 + } 266 + 267 + void* CGImageMetadataCreateSidecar(void) { 268 + if (verbose) puts("STUB: CGImageMetadataCreateSidecar called"); 269 + return NULL; 270 + } 271 + 272 + void* CGImageMetadataCreateXMPData(void) { 273 + if (verbose) puts("STUB: CGImageMetadataCreateXMPData called"); 274 + return NULL; 275 + } 276 + 277 + void* CGImageMetadataEnumerateTagsUsingBlock(void) { 278 + if (verbose) puts("STUB: CGImageMetadataEnumerateTagsUsingBlock called"); 279 + return NULL; 280 + } 281 + 282 + void* CGImageMetadataGetTypeID(void) { 283 + if (verbose) puts("STUB: CGImageMetadataGetTypeID called"); 284 + return NULL; 285 + } 286 + 287 + void* CGImageMetadataPropertyCreate(void) { 288 + if (verbose) puts("STUB: CGImageMetadataPropertyCreate called"); 289 + return NULL; 290 + } 291 + 292 + void* CGImageMetadataPropertyGetPropertyName(void) { 293 + if (verbose) puts("STUB: CGImageMetadataPropertyGetPropertyName called"); 294 + return NULL; 295 + } 296 + 297 + void* CGImageMetadataPropertyGetSchema(void) { 298 + if (verbose) puts("STUB: CGImageMetadataPropertyGetSchema called"); 299 + return NULL; 300 + } 301 + 302 + void* CGImageMetadataPropertyGetSuggestedPrefix(void) { 303 + if (verbose) puts("STUB: CGImageMetadataPropertyGetSuggestedPrefix called"); 304 + return NULL; 305 + } 306 + 307 + void* CGImageMetadataPropertyGetTypeID(void) { 308 + if (verbose) puts("STUB: CGImageMetadataPropertyGetTypeID called"); 309 + return NULL; 310 + } 311 + 312 + void* CGImageMetadataPropertyGetValue(void) { 313 + if (verbose) puts("STUB: CGImageMetadataPropertyGetValue called"); 314 + return NULL; 315 + } 316 + 317 + void* CGImageMetadataPropertySetValue(void) { 318 + if (verbose) puts("STUB: CGImageMetadataPropertySetValue called"); 319 + return NULL; 320 + } 321 + 322 + void* CGImageMetadataRegisterNamespaceForPrefix(void) { 323 + if (verbose) puts("STUB: CGImageMetadataRegisterNamespaceForPrefix called"); 324 + return NULL; 325 + } 326 + 327 + void* CGImageMetadataRemoveTagWithPath(void) { 328 + if (verbose) puts("STUB: CGImageMetadataRemoveTagWithPath called"); 329 + return NULL; 330 + } 331 + 332 + void* CGImageMetadataSerialize(void) { 333 + if (verbose) puts("STUB: CGImageMetadataSerialize called"); 334 + return NULL; 335 + } 336 + 337 + void* CGImageMetadataSetTagWithPath(void) { 338 + if (verbose) puts("STUB: CGImageMetadataSetTagWithPath called"); 339 + return NULL; 340 + } 341 + 342 + void* CGImageMetadataSetValueMatchingImageProperty(void) { 343 + if (verbose) puts("STUB: CGImageMetadataSetValueMatchingImageProperty called"); 344 + return NULL; 345 + } 346 + 347 + void* CGImageMetadataSetValueWithPath(void) { 348 + if (verbose) puts("STUB: CGImageMetadataSetValueWithPath called"); 349 + return NULL; 350 + } 351 + 352 + void* CGImageMetadataTagCopyName(void) { 353 + if (verbose) puts("STUB: CGImageMetadataTagCopyName called"); 354 + return NULL; 355 + } 356 + 357 + void* CGImageMetadataTagCopyNamespace(void) { 358 + if (verbose) puts("STUB: CGImageMetadataTagCopyNamespace called"); 359 + return NULL; 360 + } 361 + 362 + void* CGImageMetadataTagCopyPrefix(void) { 363 + if (verbose) puts("STUB: CGImageMetadataTagCopyPrefix called"); 364 + return NULL; 365 + } 366 + 367 + void* CGImageMetadataTagCopyQualifiers(void) { 368 + if (verbose) puts("STUB: CGImageMetadataTagCopyQualifiers called"); 369 + return NULL; 370 + } 371 + 372 + void* CGImageMetadataTagCopyValue(void) { 373 + if (verbose) puts("STUB: CGImageMetadataTagCopyValue called"); 374 + return NULL; 375 + } 376 + 377 + void* CGImageMetadataTagCreate(void) { 378 + if (verbose) puts("STUB: CGImageMetadataTagCreate called"); 379 + return NULL; 380 + } 381 + 382 + void* CGImageMetadataTagGetType(void) { 383 + if (verbose) puts("STUB: CGImageMetadataTagGetType called"); 384 + return NULL; 385 + } 386 + 387 + void* CGImageMetadataTagGetTypeID(void) { 388 + if (verbose) puts("STUB: CGImageMetadataTagGetTypeID called"); 389 + return NULL; 390 + } 391 + 392 + void* CGImageMetadataValueAddQualifier(void) { 393 + if (verbose) puts("STUB: CGImageMetadataValueAddQualifier called"); 394 + return NULL; 395 + } 396 + 397 + void* CGImageMetadataValueCreate(void) { 398 + if (verbose) puts("STUB: CGImageMetadataValueCreate called"); 399 + return NULL; 400 + } 401 + 402 + void* CGImageMetadataValueGetNamespaceURI(void) { 403 + if (verbose) puts("STUB: CGImageMetadataValueGetNamespaceURI called"); 404 + return NULL; 405 + } 406 + 407 + void* CGImageMetadataValueGetQualifiers(void) { 408 + if (verbose) puts("STUB: CGImageMetadataValueGetQualifiers called"); 409 + return NULL; 410 + } 411 + 412 + void* CGImageMetadataValueGetSuggestedNamespacePrefix(void) { 413 + if (verbose) puts("STUB: CGImageMetadataValueGetSuggestedNamespacePrefix called"); 414 + return NULL; 415 + } 416 + 417 + void* CGImageMetadataValueGetTypeID(void) { 418 + if (verbose) puts("STUB: CGImageMetadataValueGetTypeID called"); 419 + return NULL; 420 + } 421 + 422 + void* CGImageMetadataValueGetValue(void) { 423 + if (verbose) puts("STUB: CGImageMetadataValueGetValue called"); 424 + return NULL; 425 + } 426 + 427 + void* CGImageMetadataValueIsAlternate(void) { 428 + if (verbose) puts("STUB: CGImageMetadataValueIsAlternate called"); 429 + return NULL; 430 + } 431 + 432 + void* CGImageMetadataValueIsAlternateText(void) { 433 + if (verbose) puts("STUB: CGImageMetadataValueIsAlternateText called"); 434 + return NULL; 435 + } 436 + 437 + void* CGImageMetadataValueSetIsAlternate(void) { 438 + if (verbose) puts("STUB: CGImageMetadataValueSetIsAlternate called"); 439 + return NULL; 440 + } 441 + 442 + void* CGImageMetadataValueSetIsAlternateText(void) { 443 + if (verbose) puts("STUB: CGImageMetadataValueSetIsAlternateText called"); 444 + return NULL; 445 + } 446 + 447 + void* CGImageMetadataValueSetNamespaceURI(void) { 448 + if (verbose) puts("STUB: CGImageMetadataValueSetNamespaceURI called"); 449 + return NULL; 450 + } 451 + 452 + void* CGImageMetadataValueSetSuggestedNamespacePrefix(void) { 453 + if (verbose) puts("STUB: CGImageMetadataValueSetSuggestedNamespacePrefix called"); 454 + return NULL; 455 + } 456 + 457 + void* CGImagePluginGetMatchToProfileOption(void) { 458 + if (verbose) puts("STUB: CGImagePluginGetMatchToProfileOption called"); 459 + return NULL; 460 + } 461 + 462 + void* CGImagePluginGetMetadata(void) { 463 + if (verbose) puts("STUB: CGImagePluginGetMetadata called"); 464 + return NULL; 465 + } 466 + 467 + void* CGImagePluginGetOptions(void) { 468 + if (verbose) puts("STUB: CGImagePluginGetOptions called"); 469 + return NULL; 470 + } 471 + 472 + void* CGImagePluginGetProperties(void) { 473 + if (verbose) puts("STUB: CGImagePluginGetProperties called"); 474 + return NULL; 475 + } 476 + 477 + void* CGImagePluginGetSession(void) { 478 + if (verbose) puts("STUB: CGImagePluginGetSession called"); 479 + return NULL; 480 + } 481 + 482 + void* CGImagePluginInitJPEGAtOffset(void) { 483 + if (verbose) puts("STUB: CGImagePluginInitJPEGAtOffset called"); 484 + return NULL; 485 + } 486 + 487 + void* CGImagePluginInitThumbJPEGAtOffset(void) { 488 + if (verbose) puts("STUB: CGImagePluginInitThumbJPEGAtOffset called"); 489 + return NULL; 490 + } 491 + 492 + void* CGImagePluginReadRawIPTCProps(void) { 493 + if (verbose) puts("STUB: CGImagePluginReadRawIPTCProps called"); 494 + return NULL; 495 + } 496 + 497 + void* CGImagePluginReadRawXMPProps(void) { 498 + if (verbose) puts("STUB: CGImagePluginReadRawXMPProps called"); 499 + return NULL; 500 + } 501 + 502 + void* CGImagePluginReadRawXMPSidecarProps(void) { 503 + if (verbose) puts("STUB: CGImagePluginReadRawXMPSidecarProps called"); 504 + return NULL; 505 + } 506 + 507 + void* CGImagePluginSetClipPath(void) { 508 + if (verbose) puts("STUB: CGImagePluginSetClipPath called"); 509 + return NULL; 510 + } 511 + 512 + void* CGImagePluginSetImage(void) { 513 + if (verbose) puts("STUB: CGImagePluginSetImage called"); 514 + return NULL; 515 + } 516 + 517 + void* CGImagePluginSetImageBlockProc(void) { 518 + if (verbose) puts("STUB: CGImagePluginSetImageBlockProc called"); 519 + return NULL; 520 + } 521 + 522 + void* CGImagePluginSetJpegProvider(void) { 523 + if (verbose) puts("STUB: CGImagePluginSetJpegProvider called"); 524 + return NULL; 525 + } 526 + 527 + void* CGImageReadSessionCreateFILE(void) { 528 + if (verbose) puts("STUB: CGImageReadSessionCreateFILE called"); 529 + return NULL; 530 + } 531 + 532 + void* CGImageReadSessionGetBytePointer(void) { 533 + if (verbose) puts("STUB: CGImageReadSessionGetBytePointer called"); 534 + return NULL; 535 + } 536 + 537 + void* CGImageReadSessionGetBytesAtOffset(void) { 538 + if (verbose) puts("STUB: CGImageReadSessionGetBytesAtOffset called"); 539 + return NULL; 540 + } 541 + 542 + void* CGImageReadSessionGetFilePath(void) { 543 + if (verbose) puts("STUB: CGImageReadSessionGetFilePath called"); 544 + return NULL; 545 + } 546 + 547 + void* CGImageReadSessionGetSize(void) { 548 + if (verbose) puts("STUB: CGImageReadSessionGetSize called"); 549 + return NULL; 550 + } 551 + 552 + void* CGImageReadSessionGetTypeID(void) { 553 + if (verbose) puts("STUB: CGImageReadSessionGetTypeID called"); 554 + return NULL; 555 + } 556 + 557 + void* CGImageReadSessionIsFinal(void) { 558 + if (verbose) puts("STUB: CGImageReadSessionIsFinal called"); 559 + return NULL; 560 + } 561 + 562 + void* CGImageReadSessionReleaseBytePointer(void) { 563 + if (verbose) puts("STUB: CGImageReadSessionReleaseBytePointer called"); 564 + return NULL; 565 + } 566 + 567 + void* CGImageReadSessionReleaseCachedImageBlockData(void) { 568 + if (verbose) puts("STUB: CGImageReadSessionReleaseCachedImageBlockData called"); 569 + return NULL; 570 + } 571 + 572 + void* CGImageSaveToFile(void) { 573 + if (verbose) puts("STUB: CGImageSaveToFile called"); 574 + return NULL; 575 + } 576 + 577 + void* CGImageSourceAddProperty(void) { 578 + if (verbose) puts("STUB: CGImageSourceAddProperty called"); 579 + return NULL; 580 + } 581 + 582 + void* CGImageSourceCopyAuxiliaryDataInfoAtIndex(void) { 583 + if (verbose) puts("STUB: CGImageSourceCopyAuxiliaryDataInfoAtIndex called"); 584 + return NULL; 585 + } 586 + 587 + void* CGImageSourceCopyMetadataAtIndex(void) { 588 + if (verbose) puts("STUB: CGImageSourceCopyMetadataAtIndex called"); 589 + return NULL; 590 + } 591 + 592 + void* CGImageSourceCopyMetadataPropertiesAtIndex(void) { 593 + if (verbose) puts("STUB: CGImageSourceCopyMetadataPropertiesAtIndex called"); 594 + return NULL; 595 + } 596 + 597 + void* CGImageSourceCopyProperties(void) { 598 + if (verbose) puts("STUB: CGImageSourceCopyProperties called"); 599 + return NULL; 600 + } 601 + 602 + void* CGImageSourceCopyPropertiesAtIndex(void) { 603 + if (verbose) puts("STUB: CGImageSourceCopyPropertiesAtIndex called"); 604 + return NULL; 605 + } 606 + 607 + void* CGImageSourceCopyTypeExtensions(void) { 608 + if (verbose) puts("STUB: CGImageSourceCopyTypeExtensions called"); 609 + return NULL; 610 + } 611 + 612 + void* CGImageSourceCopyTypeIdentifiers(void) { 613 + if (verbose) puts("STUB: CGImageSourceCopyTypeIdentifiers called"); 614 + return NULL; 615 + } 616 + 617 + void* CGImageSourceCreateIOSurfaceAtIndex(void) { 618 + if (verbose) puts("STUB: CGImageSourceCreateIOSurfaceAtIndex called"); 619 + return NULL; 620 + } 621 + 622 + void* CGImageSourceCreateImageAtIndex(void) { 623 + if (verbose) puts("STUB: CGImageSourceCreateImageAtIndex called"); 624 + return NULL; 625 + } 626 + 627 + void* CGImageSourceCreateIncremental(void) { 628 + if (verbose) puts("STUB: CGImageSourceCreateIncremental called"); 629 + return NULL; 630 + } 631 + 632 + void* CGImageSourceCreateThumbnailAtIndex(void) { 633 + if (verbose) puts("STUB: CGImageSourceCreateThumbnailAtIndex called"); 634 + return NULL; 635 + } 636 + 637 + void* CGImageSourceCreateWithData(void) { 638 + if (verbose) puts("STUB: CGImageSourceCreateWithData called"); 639 + return NULL; 640 + } 641 + 642 + void* CGImageSourceCreateWithDataProvider(void) { 643 + if (verbose) puts("STUB: CGImageSourceCreateWithDataProvider called"); 644 + return NULL; 645 + } 646 + 647 + void* CGImageSourceCreateWithFile(void) { 648 + if (verbose) puts("STUB: CGImageSourceCreateWithFile called"); 649 + return NULL; 650 + } 651 + 652 + void* CGImageSourceCreateWithURL(void) { 653 + if (verbose) puts("STUB: CGImageSourceCreateWithURL called"); 654 + return NULL; 655 + } 656 + 657 + void* CGImageSourceGetCount(void) { 658 + if (verbose) puts("STUB: CGImageSourceGetCount called"); 659 + return NULL; 660 + } 661 + 662 + void* CGImageSourceGetImageCacheAtIndex(void) { 663 + if (verbose) puts("STUB: CGImageSourceGetImageCacheAtIndex called"); 664 + return NULL; 665 + } 666 + 667 + void* CGImageSourceGetPrimaryImageIndex(void) { 668 + if (verbose) puts("STUB: CGImageSourceGetPrimaryImageIndex called"); 669 + return NULL; 670 + } 671 + 672 + void* CGImageSourceGetStatus(void) { 673 + if (verbose) puts("STUB: CGImageSourceGetStatus called"); 674 + return NULL; 675 + } 676 + 677 + void* CGImageSourceGetStatusAtIndex(void) { 678 + if (verbose) puts("STUB: CGImageSourceGetStatusAtIndex called"); 679 + return NULL; 680 + } 681 + 682 + void* CGImageSourceGetType(void) { 683 + if (verbose) puts("STUB: CGImageSourceGetType called"); 684 + return NULL; 685 + } 686 + 687 + void* CGImageSourceGetTypeID(void) { 688 + if (verbose) puts("STUB: CGImageSourceGetTypeID called"); 689 + return NULL; 690 + } 691 + 692 + void* CGImageSourceGetTypeWithData(void) { 693 + if (verbose) puts("STUB: CGImageSourceGetTypeWithData called"); 694 + return NULL; 695 + } 696 + 697 + void* CGImageSourceGetTypeWithDataProvider(void) { 698 + if (verbose) puts("STUB: CGImageSourceGetTypeWithDataProvider called"); 699 + return NULL; 700 + } 701 + 702 + void* CGImageSourceGetTypeWithExtension(void) { 703 + if (verbose) puts("STUB: CGImageSourceGetTypeWithExtension called"); 704 + return NULL; 705 + } 706 + 707 + void* CGImageSourceGetTypeWithFile(void) { 708 + if (verbose) puts("STUB: CGImageSourceGetTypeWithFile called"); 709 + return NULL; 710 + } 711 + 712 + void* CGImageSourceGetTypeWithURL(void) { 713 + if (verbose) puts("STUB: CGImageSourceGetTypeWithURL called"); 714 + return NULL; 715 + } 716 + 717 + void* CGImageSourceIsColorOptimizedForSharing(void) { 718 + if (verbose) puts("STUB: CGImageSourceIsColorOptimizedForSharing called"); 719 + return NULL; 720 + } 721 + 722 + void* CGImageSourceRemoveCacheAtIndex(void) { 723 + if (verbose) puts("STUB: CGImageSourceRemoveCacheAtIndex called"); 724 + return NULL; 725 + } 726 + 727 + void* CGImageSourceUpdateData(void) { 728 + if (verbose) puts("STUB: CGImageSourceUpdateData called"); 729 + return NULL; 730 + } 731 + 732 + void* CGImageSourceUpdateDataProvider(void) { 733 + if (verbose) puts("STUB: CGImageSourceUpdateDataProvider called"); 734 + return NULL; 735 + } 736 + 737 + void* CGImageWriteEXIFJPEGToPath(void) { 738 + if (verbose) puts("STUB: CGImageWriteEXIFJPEGToPath called"); 739 + return NULL; 740 + } 741 + 742 + void* CGImageWriteEXIFJPEGWithMetadata(void) { 743 + if (verbose) puts("STUB: CGImageWriteEXIFJPEGWithMetadata called"); 744 + return NULL; 745 + } 746 + 747 + void* CopyMetadataFromFileAtPath(void) { 748 + if (verbose) puts("STUB: CopyMetadataFromFileAtPath called"); 749 + return NULL; 750 + } 751 + 752 + void* CopyMetadataFromSequentialDataProviderCallbacks(void) { 753 + if (verbose) puts("STUB: CopyMetadataFromSequentialDataProviderCallbacks called"); 754 + return NULL; 755 + } 756 + 757 + void* GetMetadataPropertyMatchingSchemaAndPropertyName(void) { 758 + if (verbose) puts("STUB: GetMetadataPropertyMatchingSchemaAndPropertyName called"); 759 + return NULL; 760 + } 761 + 762 + void* ImageIODebug(void) { 763 + if (verbose) puts("STUB: ImageIODebug called"); 764 + return NULL; 765 + } 766 + 767 + void* ImageIOSetLoggingProc(void) { 768 + if (verbose) puts("STUB: ImageIOSetLoggingProc called"); 769 + return NULL; 770 + }