this repo has no description
1
fork

Configure Feed

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

Build ImageIO stubs

+352
+1
src/CMakeLists.txt
··· 191 191 add_subdirectory(external/patch_cmds) 192 192 add_subdirectory(external/DSTools) 193 193 add_subdirectory(external/DirectoryService) 194 + add_subdirectory(ImageIO) 194 195 195 196 add_subdirectory(external/libcxxabi) 196 197 add_subdirectory(external/libcxx)
+21
src/ImageIO/CMakeLists.txt
··· 1 + project(ImageIO) 2 + 3 + add_compile_options( 4 + -nostdinc 5 + ) 6 + 7 + include_directories( 8 + ${CMAKE_CURRENT_SOURCE_DIR} 9 + ) 10 + 11 + add_framework(ImageIO 12 + FAT 13 + CURRENT_VERSION 14 + VERSION "A" 15 + 16 + SOURCES 17 + functions.c 18 + 19 + DEPENDENCIES 20 + system 21 + )
+165
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) { }
+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);