├── .apianalyzer ├── clangargs.txt ├── header_frameworks.txt └── source_frameworks.txt ├── .ci-repo.xml ├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitmodules ├── Frameworks ├── AVFoundation │ ├── AVAsset.mm │ ├── AVAssetExportSession.mm │ ├── AVAssetImageGenerator.mm │ ├── AVAssetReader.mm │ ├── AVAssetReaderAudioMixOutput.mm │ ├── AVAssetReaderOutput.mm │ ├── AVAssetReaderOutputMetadataAdaptor.mm │ ├── AVAssetReaderSampleReferenceOutput.mm │ ├── AVAssetReaderTrackOutput.mm │ ├── AVAssetReaderVideoCompositionOutput.mm │ ├── AVAssetResourceLoader.mm │ ├── AVAssetResourceLoadingContentInformationRequest.mm │ ├── AVAssetResourceLoadingDataRequest.mm │ ├── AVAssetResourceLoadingRequest.mm │ ├── AVAssetResourceRenewalRequest.mm │ ├── AVAssetTrack.mm │ ├── AVAssetTrackGroup.mm │ ├── AVAssetTrackSegment.mm │ ├── AVAssetWriter.mm │ ├── AVAssetWriterInput.mm │ ├── AVAssetWriterInputGroup.mm │ ├── AVAssetWriterInputMetadataAdaptor.mm │ ├── AVAssetWriterInputPassDescription.mm │ ├── AVAssetWriterInputPixelBufferAdaptor.mm │ ├── AVAsynchronousVideoCompositionRequest.mm │ ├── AVAudioBuffer.mm │ ├── AVAudioChannelLayout.mm │ ├── AVAudioEngine.mm │ ├── AVAudioEnvironmentDistanceAttenuationParameters.mm │ ├── AVAudioEnvironmentNode.mm │ ├── AVAudioEnvironmentReverbParameters.mm │ ├── AVAudioFile.mm │ ├── AVAudioFormat.mm │ ├── AVAudioIONode.mm │ ├── AVAudioInputNode.mm │ ├── AVAudioMix.mm │ ├── AVAudioMixInputParameters.mm │ ├── AVAudioMixerNode.mm │ ├── AVAudioNode.mm │ ├── AVAudioOutputNode.mm │ ├── AVAudioPCMBuffer.mm │ ├── AVAudioPlayer.mm │ ├── AVAudioPlayerNode.mm │ ├── AVAudioRecorder.mm │ ├── AVAudioSession.mm │ ├── AVAudioSessionChannelDescription.mm │ ├── AVAudioSessionDataSourceDescription.mm │ ├── AVAudioSessionPortDescription.mm │ ├── AVAudioSessionRouteDescription.mm │ ├── AVAudioTime.mm │ ├── AVAudioUnit.mm │ ├── AVAudioUnitDelay.mm │ ├── AVAudioUnitDistortion.mm │ ├── AVAudioUnitEQ.mm │ ├── AVAudioUnitEQFilterParameters.mm │ ├── AVAudioUnitEffect.mm │ ├── AVAudioUnitGenerator.mm │ ├── AVAudioUnitMIDIInstrument.mm │ ├── AVAudioUnitReverb.mm │ ├── AVAudioUnitSampler.mm │ ├── AVAudioUnitTimeEffect.mm │ ├── AVAudioUnitTimePitch.mm │ ├── AVAudioUnitVarispeed.mm │ ├── AVCaptureAudioChannel.mm │ ├── AVCaptureAudioDataOutput.mm │ ├── AVCaptureAutoExposureBracketedStillImageSettings.mm │ ├── AVCaptureBracketedStillImageSettings.mm │ ├── AVCaptureConnection.mm │ ├── AVCaptureDevice.mm │ ├── AVCaptureDeviceFormat.mm │ ├── AVCaptureDeviceInput.mm │ ├── AVCaptureFileOutput.mm │ ├── AVCaptureInput.mm │ ├── AVCaptureInputPort.mm │ ├── AVCaptureManualExposureBracketedStillImageSettings.mm │ ├── AVCaptureMetadataOutput.mm │ ├── AVCaptureMovieFileOutput.mm │ ├── AVCaptureOutput.mm │ ├── AVCaptureSession.mm │ ├── AVCaptureStillImageOutput.mm │ ├── AVCaptureVideoDataOutput.mm │ ├── AVCaptureVideoPreviewLayer.mm │ ├── AVComposition.mm │ ├── AVCompositionTrack.mm │ ├── AVCompositionTrackSegment.mm │ ├── AVFoundationConstants.mm │ ├── AVFrameRateRange.mm │ ├── AVMIDIPlayer.mm │ ├── AVMediaSelectionGroup.mm │ ├── AVMediaSelectionOption.mm │ ├── AVMetadataFaceObject.mm │ ├── AVMetadataGroup.mm │ ├── AVMetadataItem.mm │ ├── AVMetadataItemFilter.mm │ ├── AVMetadataMachineReadableCodeObject.mm │ ├── AVMetadataObject.mm │ ├── AVMutableAudioMix.mm │ ├── AVMutableAudioMixInputParameters.mm │ ├── AVMutableComposition.mm │ ├── AVMutableCompositionTrack.mm │ ├── AVMutableMetadataItem.mm │ ├── AVMutableTimedMetadataGroup.mm │ ├── AVMutableVideoComposition.mm │ ├── AVMutableVideoCompositionInstruction.mm │ ├── AVMutableVideoCompositionLayerInstruction.mm │ ├── AVOutputSettingsAssistant.mm │ ├── AVPlayer.mm │ ├── AVPlayerItem.mm │ ├── AVPlayerItemAccessLog.mm │ ├── AVPlayerItemAccessLogEvent.mm │ ├── AVPlayerItemErrorLog.mm │ ├── AVPlayerItemErrorLogEvent.mm │ ├── AVPlayerItemLegibleOutput.mm │ ├── AVPlayerItemMetadataOutput.mm │ ├── AVPlayerItemOutput.mm │ ├── AVPlayerItemTrack.mm │ ├── AVPlayerItemVideoOutput.mm │ ├── AVPlayerLayer.mm │ ├── AVPlayerMediaSelectionCriteria.mm │ ├── AVQueuePlayer.mm │ ├── AVSampleBufferDisplayLayer.mm │ ├── AVSpeechSynthesisVoice.mm │ ├── AVSpeechSynthesizer.mm │ ├── AVSpeechUtterance.mm │ ├── AVSynchronizedLayer.mm │ ├── AVTextStyleRule.mm │ ├── AVTimedMetadataGroup.mm │ ├── AVURLAsset.mm │ ├── AVVideoComposition.mm │ ├── AVVideoCompositionCoreAnimationTool.mm │ ├── AVVideoCompositionInstruction.mm │ ├── AVVideoCompositionLayerInstruction.mm │ └── AVVideoCompositionRenderContext.mm ├── AVKit │ ├── AVPictureInPictureController.mm │ └── AVPlayerViewController.mm ├── Accelerate │ ├── ErrorHandler.mm │ ├── blasCDouble.cpp │ ├── blasCFloat.cpp │ ├── blasDouble.cpp │ ├── blasFloat.cpp │ ├── cblas_globals.c │ ├── cblas_xerbla.c │ ├── vDSP.cpp │ ├── vImage.cpp │ └── vImage.mm ├── Accounts │ ├── ACAccount.mm │ ├── ACAccountCredential.mm │ ├── ACAccountStore.mm │ └── ACAccountType.mm ├── AdSupport │ └── ASIdentifierManager.mm ├── AddressBook │ ├── ABAddressBook.mm │ ├── ABAddressBookManagerInternal.h │ ├── ABAddressBookManagerInternal.mm │ ├── ABContactInternal.h │ ├── ABContactInternal.mm │ ├── ABGroup.mm │ ├── ABMultiValue.mm │ ├── ABMultiValueInternal.h │ ├── ABMultiValueInternal.mm │ ├── ABMutableMultiValue.mm │ ├── ABPerson.mm │ ├── ABRecord.mm │ ├── ABRecordInternal.h │ ├── ABRecordInternal.mm │ ├── ABSource.mm │ ├── ABSourceInternal.h │ ├── ABSourceInternal.mm │ ├── NSDate+AddressBookAdditions.h │ └── NSDate+AddressBookAdditions.mm ├── AddressBookUI │ ├── ABNewPersonViewController.mm │ ├── ABPeoplePickerNavigationController.mm │ ├── ABPersonViewController.mm │ ├── ABUnknownPersonViewController.mm │ └── AddressBookUIFunctions.mm ├── AssetsLibrary │ ├── ALAsset.mm │ ├── ALAssetInternal.h │ ├── ALAssetRepresentation.mm │ ├── ALAssetRepresentationInternal.h │ ├── ALAssetsFilter.mm │ ├── ALAssetsGroup.mm │ └── ALAssetsLibrary.mm ├── AudioToolbox │ ├── AudioConverter.mm │ ├── AudioFile.mm │ ├── AudioFileStream.mm │ ├── AudioFormat.mm │ ├── AudioQueue.mm │ ├── AudioSession.mm │ ├── AudioToolboxDebugging.mm │ ├── AudioUnitProcessingGraph.mm │ ├── CAFDecoder.h │ ├── CAFDecoder.mm │ ├── ExtendedAudioFile.mm │ ├── MusicSequence.mm │ ├── MusicTrack.mm │ ├── SystemSound.mm │ └── stb_vorbis.c ├── AudioUnit │ ├── AUAudioUnit.mm │ ├── AUAudioUnitBus.mm │ ├── AUAudioUnitBusArray.mm │ ├── AUAudioUnitPreset.mm │ ├── AUAudioUnitV2Bridge.mm │ ├── AUParameter.mm │ ├── AUParameterGroup.mm │ ├── AUParameterNode.mm │ ├── AUParameterTree.mm │ ├── AudioComponent.mm │ ├── AudioOutput.mm │ └── AudioUnit.mm ├── AutoLayout │ └── AutoLayout.mm ├── CFNetwork │ ├── CFFTPStream.mm │ ├── CFHTTPAuthentication.mm │ ├── CFHTTPMessage.mm │ ├── CFHTTPStream.mm │ ├── CFHost.mm │ ├── CFNetDiagnostics.mm │ ├── CFNetServices.mm │ ├── CFNetworkBase.mm │ ├── CFProxySupport.mm │ └── CFSocketStream.mm ├── CloudKit │ ├── CKAsset.mm │ ├── CKContainer.mm │ ├── CKDatabase.mm │ ├── CKDatabaseOperation.mm │ ├── CKDiscoverAllContactsOperation.mm │ ├── CKDiscoverUserInfosOperation.mm │ ├── CKDiscoveredUserInfo.mm │ ├── CKFetchNotificationChangesOperation.mm │ ├── CKFetchRecordChangesOperation.mm │ ├── CKFetchRecordZonesOperation.mm │ ├── CKFetchRecordsOperation.mm │ ├── CKFetchSubscriptionsOperation.mm │ ├── CKLocationSortDescriptor.mm │ ├── CKMarkNotificationsReadOperation.mm │ ├── CKModifyBadgeOperation.mm │ ├── CKModifyRecordZonesOperation.mm │ ├── CKModifyRecordsOperation.mm │ ├── CKModifySubscriptionsOperation.mm │ ├── CKNotification.mm │ ├── CKNotificationID.mm │ ├── CKNotificationInfo.mm │ ├── CKOperation.mm │ ├── CKQuery.mm │ ├── CKQueryCursor.mm │ ├── CKQueryNotification.mm │ ├── CKQueryOperation.mm │ ├── CKRecord.mm │ ├── CKRecordID.mm │ ├── CKRecordZone.mm │ ├── CKRecordZoneID.mm │ ├── CKRecordZoneNotification.mm │ ├── CKReference.mm │ ├── CKServerChangeToken.mm │ ├── CKSubscription.mm │ └── CloudKitFrameworkConstants.mm ├── Contacts │ ├── CNContact.mm │ ├── CNContactFetchRequest.mm │ ├── CNContactFormatter.mm │ ├── CNContactProperty.mm │ ├── CNContactRelation.mm │ ├── CNContactStore.mm │ ├── CNContactVCardSerialization.mm │ ├── CNContainer.mm │ ├── CNGroup.mm │ ├── CNInstantMessageAddress.mm │ ├── CNLabeledValue.mm │ ├── CNMutableContact.mm │ ├── CNMutableGroup.mm │ ├── CNMutablePostalAddress.mm │ ├── CNPhoneNumber.mm │ ├── CNPostalAddress.mm │ ├── CNPostalAddressFormatter.mm │ ├── CNSaveRequest.mm │ ├── CNSocialProfile.mm │ └── ContactsConstants.mm ├── CoreAudio │ └── CoreAudioData.mm ├── CoreAudioKit │ ├── CABTMIDICentralViewController.mm │ └── CABTMIDILocalPeripheralViewController.mm ├── CoreBluetooth │ ├── CBATTRequest.mm │ ├── CBAttribute.mm │ ├── CBCentral.mm │ ├── CBCentralManager.mm │ ├── CBCentralManagerDelegate.mm │ ├── CBCharacteristic.mm │ ├── CBConstants.mm │ ├── CBDescriptor.mm │ ├── CBMutableCharacteristic.mm │ ├── CBMutableDescriptor.mm │ ├── CBMutableService.mm │ ├── CBPeer.mm │ ├── CBPeripheral.mm │ ├── CBPeripheralManager.mm │ ├── CBPeripheralManagerDelegate.mm │ ├── CBService.mm │ └── CBUUID.mm ├── CoreData │ ├── CoreDataConstants.mm │ ├── NSAtomicStore.mm │ ├── NSAtomicStoreCacheNode.mm │ ├── NSAttributeDescription.mm │ ├── NSEntityDescription.mm │ ├── NSEntityMapping.mm │ ├── NSEntityMigrationPolicy.mm │ ├── NSExpressionDescription.mm │ ├── NSFetchRequest.mm │ ├── NSFetchRequestExpression.mm │ ├── NSFetchedPropertyDescription.mm │ ├── NSFetchedResultsController.mm │ ├── NSIncrementalStore.mm │ ├── NSIncrementalStoreNode.mm │ ├── NSManagedObject.mm │ ├── NSManagedObjectContext.mm │ ├── NSManagedObjectID.mm │ ├── NSManagedObjectModel-XMLParsing.mm │ ├── NSManagedObjectModel.mm │ ├── NSMappingModel.mm │ ├── NSMergeConflict.mm │ ├── NSMergePolicy.mm │ ├── NSMigrationManager.mm │ ├── NSPersistentStore.mm │ ├── NSPersistentStoreCoordinator.mm │ ├── NSPersistentStoreRequest.mm │ ├── NSPropertyDescription.mm │ ├── NSPropertyMapping.mm │ ├── NSRelationshipDescription.mm │ └── NSSaveChangesRequest.mm ├── CoreFoundation │ ├── AppServices.subproj │ │ ├── CFUserNotification.c │ │ └── CFUserNotification.h │ ├── Base.subproj │ │ ├── CFAvailability.h │ │ ├── CFBase.c │ │ ├── CFBase.h │ │ ├── CFBridgeUtilities.h │ │ ├── CFByteOrder.h │ │ ├── CFFileUtilities.c │ │ ├── CFInternal.h │ │ ├── CFLogUtilities.h │ │ ├── CFPlatform.c │ │ ├── CFPriv.h │ │ ├── CFRuntime.c │ │ ├── CFRuntime.h │ │ ├── CFSortFunctions.c │ │ ├── CFSystemDirectories.c │ │ ├── CFUUID.c │ │ ├── CFUUID.h │ │ ├── CFUtilities.c │ │ ├── CFUtilities.h │ │ ├── CoreFoundation.h │ │ ├── CoreFoundation_Prefix.h │ │ ├── DarwinSymbolAliases │ │ ├── ForFoundationOnly.h │ │ ├── ForSwiftFoundationOnly.h │ │ ├── SwiftRuntime │ │ │ ├── CoreFoundation.h │ │ │ └── TargetConditionals.h │ │ ├── SymbolAliases │ │ ├── linux.modulemap │ │ └── module.modulemap │ ├── CharacterSets │ │ ├── CFCharacterSetBitmaps.bitmap │ │ ├── CFUniCharPropertyDatabase.data │ │ ├── CFUnicodeData-B.mapping │ │ └── CFUnicodeData-L.mapping │ ├── Collections.subproj │ │ ├── CFArray.c │ │ ├── CFArray.h │ │ ├── CFBag.c │ │ ├── CFBag.h │ │ ├── CFBasicHash.c │ │ ├── CFBasicHash.h │ │ ├── CFBasicHashFindBucket.m │ │ ├── CFBinaryHeap.c │ │ ├── CFBinaryHeap.h │ │ ├── CFBitVector.c │ │ ├── CFBitVector.h │ │ ├── CFData.c │ │ ├── CFData.h │ │ ├── CFDictionary.c │ │ ├── CFDictionary.h │ │ ├── CFSet.c │ │ ├── CFSet.h │ │ ├── CFStorage.c │ │ ├── CFStorage.h │ │ ├── CFTree.c │ │ └── CFTree.h │ ├── Error.subproj │ │ ├── CFError.c │ │ ├── CFError.h │ │ └── CFError_Private.h │ ├── Info.plist │ ├── Locale.subproj │ │ ├── CFCalendar.c │ │ ├── CFCalendar.h │ │ ├── CFDateFormatter.c │ │ ├── CFDateFormatter.h │ │ ├── CFICULogging.h │ │ ├── CFLocale.c │ │ ├── CFLocale.h │ │ ├── CFLocaleIdentifier.c │ │ ├── CFLocaleInternal.h │ │ ├── CFLocaleKeys.c │ │ ├── CFNumberFormatter.c │ │ ├── CFNumberFormatter.h │ │ └── CFStringLocalizedFormattingInternal.h │ ├── NumberDate.subproj │ │ ├── CFBigNumber.c │ │ ├── CFBigNumber.h │ │ ├── CFDate.c │ │ ├── CFDate.h │ │ ├── CFNumber.c │ │ ├── CFNumber.h │ │ ├── CFTimeZone.c │ │ └── CFTimeZone.h │ ├── Parsing.subproj │ │ ├── CFBinaryPList.c │ │ ├── CFOldStylePList.c │ │ ├── CFPropertyList.c │ │ ├── CFPropertyList.h │ │ ├── CFXMLInputStream.c │ │ ├── CFXMLInputStream.h │ │ ├── CFXMLInterface.c │ │ ├── CFXMLInterface.h │ │ ├── CFXMLNode.c │ │ ├── CFXMLNode.h │ │ ├── CFXMLParser.c │ │ ├── CFXMLParser.h │ │ └── CFXMLTree.c │ ├── PlugIn.subproj │ │ ├── CFBundle.c │ │ ├── CFBundle.h │ │ ├── CFBundlePriv.h │ │ ├── CFBundle_Binary.c │ │ ├── CFBundle_BinaryTypes.h │ │ ├── CFBundle_Grok.c │ │ ├── CFBundle_InfoPlist.c │ │ ├── CFBundle_Internal.h │ │ ├── CFBundle_Locale.c │ │ ├── CFBundle_Resources.c │ │ ├── CFBundle_Strings.c │ │ ├── CFPlugIn.c │ │ ├── CFPlugIn.h │ │ ├── CFPlugInCOM.h │ │ ├── CFPlugIn_Factory.c │ │ ├── CFPlugIn_Factory.h │ │ ├── CFPlugIn_Instance.c │ │ └── CFPlugIn_PlugIn.c │ ├── Preferences.subproj │ │ ├── CFApplicationPreferences.c │ │ ├── CFPreferences.c │ │ └── CFPreferences.h │ ├── RunLoop.subproj │ │ ├── CFMachPort.c │ │ ├── CFMachPort.h │ │ ├── CFMessagePort.c │ │ ├── CFMessagePort.h │ │ ├── CFRunLoop.c │ │ ├── CFRunLoop.h │ │ ├── CFSocket.c │ │ └── CFSocket.h │ ├── Stream.subproj │ │ ├── CFConcreteStreams.c │ │ ├── CFSocketStream.c │ │ ├── CFStream.c │ │ ├── CFStream.h │ │ ├── CFStreamAbstract.h │ │ ├── CFStreamInternal.h │ │ └── CFStreamPriv.h │ ├── String.subproj │ │ ├── CFAttributedString.c │ │ ├── CFAttributedString.h │ │ ├── CFBurstTrie.c │ │ ├── CFBurstTrie.h │ │ ├── CFCharacterSet.c │ │ ├── CFCharacterSet.h │ │ ├── CFCharacterSetData.S │ │ ├── CFCharacterSetPriv.h │ │ ├── CFRegularExpression.c │ │ ├── CFRegularExpression.h │ │ ├── CFRunArray.c │ │ ├── CFRunArray.h │ │ ├── CFString.c │ │ ├── CFString.h │ │ ├── CFStringDefaultEncoding.h │ │ ├── CFStringEncodingExt.h │ │ ├── CFStringEncodings.c │ │ ├── CFStringLocalizedFormattingInternal.h │ │ ├── CFStringScanner.c │ │ ├── CFStringTransform.c │ │ ├── CFStringUtilities.c │ │ ├── CFUniCharPropertyDatabase.S │ │ └── CFUnicodeDataL.S │ ├── StringEncodings.subproj │ │ ├── CFBuiltinConverters.c │ │ ├── CFICUConverters.c │ │ ├── CFICUConverters.h │ │ ├── CFPlatformConverters.c │ │ ├── CFStringEncodingConverter.c │ │ ├── CFStringEncodingConverter.h │ │ ├── CFStringEncodingConverterExt.h │ │ ├── CFStringEncodingConverterPriv.h │ │ ├── CFStringEncodingDatabase.c │ │ ├── CFStringEncodingDatabase.h │ │ ├── CFUniChar.c │ │ ├── CFUniChar.h │ │ ├── CFUniCharPriv.h │ │ ├── CFUnicodeDecomposition.c │ │ ├── CFUnicodeDecomposition.h │ │ ├── CFUnicodePrecomposition.c │ │ └── CFUnicodePrecomposition.h │ ├── URL.subproj │ │ ├── CFURL.c │ │ ├── CFURL.h │ │ ├── CFURL.inc.h │ │ ├── CFURLAccess.c │ │ ├── CFURLAccess.h │ │ ├── CFURLComponents.c │ │ ├── CFURLComponents.h │ │ ├── CFURLComponents_Internal.h │ │ ├── CFURLComponents_URIParser.c │ │ └── CFURLPriv.h │ └── linux.ld ├── CoreFoundationAdditions │ ├── CFStringTokenizer.mm │ ├── _CFLocaleInternal.mm │ ├── _NSCFNumber.mm │ ├── _NSCFString.h │ ├── _NSCFString.mm │ ├── _NSCFTemporaryRootObject.mm │ └── _NSCFType.mm ├── CoreGraphics │ ├── CGAffineTransform.mm │ ├── CGColor.mm │ ├── CGColorSpace.mm │ ├── CGContext.mm │ ├── CGDataConsumer.mm │ ├── CGDataProvider.mm │ ├── CGFont.mm │ ├── CGFunction.mm │ ├── CGGeometry.mm │ ├── CGGradient.mm │ ├── CGImage.mm │ ├── CGLayer.mm │ ├── CGPDFArray.mm │ ├── CGPDFContentStream.mm │ ├── CGPDFContext.mm │ ├── CGPDFDictionary.mm │ ├── CGPDFDocument.mm │ ├── CGPDFObject.mm │ ├── CGPDFOperatorTable.mm │ ├── CGPDFPage.mm │ ├── CGPDFScanner.mm │ ├── CGPDFStream.mm │ ├── CGPDFString.mm │ ├── CGPath.mm │ ├── CGPattern.mm │ ├── CGRect.mm │ ├── CGShading.mm │ ├── D2DWrapper.mm │ ├── D2DWrapper_CGPathApply.mm │ ├── DWriteFontBinaryDataCollectionLoader.h │ ├── DWriteFontBinaryDataCollectionLoader.mm │ ├── DWriteFontBinaryDataLoader.h │ ├── DWriteFontBinaryDataLoader.mm │ ├── DWriteFontCollectionHelper.h │ ├── DWriteFontCollectionHelper.mm │ ├── DWriteWrapper.mm │ └── _CGLifetimeBridgingType.mm ├── CoreImage │ ├── CIColor.mm │ ├── CIColorKernel.mm │ ├── CIContext.mm │ ├── CIDetector.mm │ ├── CIFaceFeature.mm │ ├── CIFeature.mm │ ├── CIFilter.mm │ ├── CIFilterShape.mm │ ├── CIImage.mm │ ├── CIImageAccumulator.mm │ ├── CIImageProvider.mm │ ├── CIKernel.mm │ ├── CIQRCodeFeature.mm │ ├── CIRectangleFeature.mm │ ├── CISampler.mm │ ├── CITextFeature.mm │ ├── CIVector.mm │ └── CIWarpKernel.mm ├── CoreLocation │ ├── CLBeacon.mm │ ├── CLBeaconRegion.mm │ ├── CLCircularRegion.mm │ ├── CLFloor.mm │ ├── CLGeocoder.mm │ ├── CLHeading.mm │ ├── CLHeadingInternal.h │ ├── CLLocation.mm │ ├── CLLocationManager.mm │ ├── CLPlacemark.mm │ ├── CLPlacemarkInternal.h │ ├── CLRegion.mm │ ├── CLVisit.mm │ ├── CoreLocation.def │ ├── CoreLocationConstants.mm │ ├── CoreLocationFunctions.mm │ └── NSValue+CoreLocationAdditions.mm ├── CoreMIDI │ ├── MIDINetworkConnection.mm │ ├── MIDINetworkHost.mm │ ├── MIDINetworkSession.mm │ ├── MIDIServices.mm │ ├── MIDISetup.mm │ └── MIDIThruConnection.mm ├── CoreMedia │ ├── CMAttachment.mm │ ├── CMBlockBuffer.mm │ ├── CMBufferQueue.mm │ ├── CMFormatDescription.mm │ ├── CMSampleBuffer.mm │ ├── CMSync.mm │ ├── CMTextMarkup.mm │ ├── CMTime.mm │ └── CMTimeRange.mm ├── CoreMotion │ ├── CMAccelerometerData.mm │ ├── CMAltimeter.mm │ ├── CMAltitudeData.mm │ ├── CMAttitude.mm │ ├── CMDeviceMotion.mm │ ├── CMGyroData.mm │ ├── CMLogItem.mm │ ├── CMLogItemInternal.h │ ├── CMMagnetometerData.mm │ ├── CMMotionActivity.mm │ ├── CMMotionActivityManager.mm │ ├── CMMotionManager.mm │ ├── CMMotionManagerInternal.h │ ├── CMPedometer.mm │ ├── CMPedometerData.mm │ ├── CMRecordedAccelerometerData.mm │ ├── CMSensorDataList.mm │ ├── CMSensorRecorder.mm │ └── CMStepCounter.mm ├── CoreTelephony │ ├── CTCall.mm │ ├── CTCallCenter.mm │ ├── CTCarrier.mm │ ├── CTSubscriber.mm │ └── CTTelephonyNetworkInfo.mm ├── CoreText │ ├── CTFont.mm │ ├── CTFontCollection.mm │ ├── CTFontDescriptor.mm │ ├── CTFontManager.mm │ ├── CTFrame.mm │ ├── CTFramesetter.mm │ ├── CTGlyphInfo.mm │ ├── CTLine.mm │ ├── CTParagraphStyle.mm │ ├── CTRun.mm │ ├── CTRunDelegate.mm │ ├── CTStringAttributes.mm │ ├── CTTextTab.mm │ ├── CTTypesetter.mm │ ├── CTUtilities.mm │ ├── DWriteWrapper_CGPath.mm │ ├── DWriteWrapper_CTFont.mm │ ├── DWriteWrapper_CoreText.h │ └── DWriteWrapper_CoreText.mm ├── CoreVideo │ ├── CVBuffer.mm │ ├── CVImageBuffer.mm │ ├── CVMetalTexture.mm │ ├── CVMetalTextureCache.mm │ ├── CVOpenGLESTexture.mm │ ├── CVOpenGLESTextureCache.mm │ ├── CVPixelBuffer.mm │ ├── CVPixelBufferPool.mm │ ├── CVPixelFormatDescription.mm │ └── CVTime.mm ├── EventKit │ ├── EKAlarm.mm │ ├── EKCalendar.mm │ ├── EKCalendarItem.mm │ ├── EKEvent.mm │ ├── EKEventStore.mm │ ├── EKObject.mm │ ├── EKParticipant.mm │ ├── EKRecurrenceDayOfWeek.mm │ ├── EKRecurrenceEnd.mm │ ├── EKRecurrenceRule.mm │ ├── EKReminder.mm │ ├── EKSource.mm │ ├── EKStructuredLocation.mm │ └── EventKitConstants.mm ├── EventKitUI │ ├── EKCalendarChooser.mm │ ├── EKEventEditViewController.mm │ └── EKEventViewController.mm ├── Foundation │ ├── CFBridgeBase.mm │ ├── CFHelpers.h │ ├── CFHelpers.mm │ ├── FormatPrintf.mm │ ├── IcuHelper.mm │ ├── MainDispatcher.mm │ ├── NSArray.mm │ ├── NSAssertionHandler.mm │ ├── NSAttributedString.mm │ ├── NSAutoreleasePool.mm │ ├── NSBlockOperation.mm │ ├── NSBlocks.mm │ ├── NSBooleanPredicate.mm │ ├── NSBundle.mm │ ├── NSBundleResourceRequest.mm │ ├── NSByteCountFormatter.mm │ ├── NSByteOrder.mm │ ├── NSCFArray.h │ ├── NSCFArray.mm │ ├── NSCFAttributedString.h │ ├── NSCFAttributedString.mm │ ├── NSCFCalendar.h │ ├── NSCFCalendar.mm │ ├── NSCFCharacterSet.h │ ├── NSCFCharacterSet.mm │ ├── NSCFCollectionSupport.h │ ├── NSCFCollectionSupport.mm │ ├── NSCFData.h │ ├── NSCFData.mm │ ├── NSCFDate.h │ ├── NSCFDate.mm │ ├── NSCFDictionary.h │ ├── NSCFDictionary.mm │ ├── NSCFError.h │ ├── NSCFError.mm │ ├── NSCFInputStream.h │ ├── NSCFInputStream.mm │ ├── NSCFLocale.h │ ├── NSCFLocale.mm │ ├── NSCFMutableString.mm │ ├── NSCFNumber.h │ ├── NSCFNumber.mm │ ├── NSCFOutputStream.h │ ├── NSCFOutputStream.mm │ ├── NSCFSet.h │ ├── NSCFSet.mm │ ├── NSCFString.h │ ├── NSCFString.mm │ ├── NSCFTimeZone.h │ ├── NSCFTimeZone.mm │ ├── NSCFURL.h │ ├── NSCFURL.mm │ ├── NSCache.mm │ ├── NSCachedURLResponse.mm │ ├── NSCalendar.mm │ ├── NSCharacterSet.mm │ ├── NSCoder.mm │ ├── NSColor.h │ ├── NSColor.mm │ ├── NSComparisonPredicate.mm │ ├── NSCompoundPredicate.mm │ ├── NSCondition.mm │ ├── NSConditionLock.mm │ ├── NSConstantString.h │ ├── NSConstantString.mm │ ├── NSCountedSet.mm │ ├── NSData.mm │ ├── NSDataDetector.mm │ ├── NSDate.mm │ ├── NSDateComponents.mm │ ├── NSDateComponentsFormatter.mm │ ├── NSDateFormatter.mm │ ├── NSDateIntervalFormatter.mm │ ├── NSDecimal.mm │ ├── NSDecimalNumber.mm │ ├── NSDecimalNumberHandler.mm │ ├── NSDelayedPerform.h │ ├── NSDelayedPerform.mm │ ├── NSDictionary+NSFileManagerExtensions.mm │ ├── NSDictionary.mm │ ├── NSDictionaryInternal.h │ ├── NSDirectoryEnumerator.mm │ ├── NSDirectoryEnumeratorInternal.h │ ├── NSEnergyFormatter.mm │ ├── NSEnumerator.mm │ ├── NSError.mm │ ├── NSErrorRecoveryAttempting.mm │ ├── NSException.cl.cpp │ ├── NSException.mm │ ├── NSExceptionInternal.h │ ├── NSExpression.mm │ ├── NSExpressionConstantValue.mm │ ├── NSExpressionDefaultFunctions.mm │ ├── NSExpressionEvaluatedObject.mm │ ├── NSExpressionFunction.mm │ ├── NSExpressionKeyPath.mm │ ├── NSExpressionVariable.mm │ ├── NSExtensionContext.mm │ ├── NSExtensionItem.mm │ ├── NSFileAccessIntent.mm │ ├── NSFileCoordinator.mm │ ├── NSFileHandle.mm │ ├── NSFileManager.mm │ ├── NSFileSecurity.mm │ ├── NSFileVersion.mm │ ├── NSFileWrapper.mm │ ├── NSFormatter.mm │ ├── NSHTTPCookie.mm │ ├── NSHTTPCookieInternal.h │ ├── NSHTTPCookieStorage.mm │ ├── NSHTTPURLResponse.mm │ ├── NSHashTable.mm │ ├── NSIndexPath.mm │ ├── NSIndexSet.mm │ ├── NSIndexSetInternal.h │ ├── NSInputSource.mm │ ├── NSInputStream.mm │ ├── NSInvocation.mm │ ├── NSInvocationInternal.h │ ├── NSInvocationOperation.mm │ ├── NSItemProvider.mm │ ├── NSJSONSerialization.mm │ ├── NSKVOSupport.mm │ ├── NSKVOSwizzling.mm │ ├── NSKeyValueCoding.mm │ ├── NSKeyedArchiver.mm │ ├── NSKeyedArchiverInternal.h │ ├── NSKeyedUnarchiver.mm │ ├── NSLengthFormatter.mm │ ├── NSLinguisticTagger.mm │ ├── NSLocale.mm │ ├── NSLock.mm │ ├── NSLog.mm │ ├── NSLogging.mm │ ├── NSMachPort.mm │ ├── NSMapTable.mm │ ├── NSMassFormatter.mm │ ├── NSMessagePort.mm │ ├── NSMetadataItem.mm │ ├── NSMetadataQuery.mm │ ├── NSMetadataQueryAttributeValueTuple.mm │ ├── NSMetadataQueryResultGroup.mm │ ├── NSMethodSignature.mm │ ├── NSMethodSignatureInternal.h │ ├── NSMutableArray.mm │ ├── NSMutableAttributedString.mm │ ├── NSMutableCharacterSet.mm │ ├── NSMutableData.mm │ ├── NSMutableDictionary.mm │ ├── NSMutableIndexSet.mm │ ├── NSMutableOrderedSet.mm │ ├── NSMutableSet.mm │ ├── NSMutableString.mm │ ├── NSMutableURLRequest.mm │ ├── NSNetService.mm │ ├── NSNetServiceBrowser.mm │ ├── NSNotification.mm │ ├── NSNotificationCenter.mm │ ├── NSNotificationQueue.mm │ ├── NSNull.mm │ ├── NSNumber.mm │ ├── NSNumberFormatter.mm │ ├── NSObject.mm │ ├── NSObjectInternal.h │ ├── NSObject_NSCoding.mm │ ├── NSObject_NSKeyValueArrayAdapter.mm │ ├── NSObject_NSKeyValueOrderedSetAdapter.mm │ ├── NSObject_NSKeyValueSetAdapter.mm │ ├── NSOperation.mm │ ├── NSOperationInternal.h │ ├── NSOperationQueue.mm │ ├── NSOrderedPerform.h │ ├── NSOrderedPerform.mm │ ├── NSOrderedSet.mm │ ├── NSOrthography.mm │ ├── NSOutputStream.mm │ ├── NSPathUtilities.mm │ ├── NSPathUtilitiesInternal.h │ ├── NSPathUtilitiesInternal.mm │ ├── NSPersistentDomain.h │ ├── NSPersistentDomain.mm │ ├── NSPersonNameComponents.mm │ ├── NSPersonNameComponentsFormatter.mm │ ├── NSPipe.mm │ ├── NSPointerArray.mm │ ├── NSPointerFunctions.mm │ ├── NSPort.mm │ ├── NSPortMessage.mm │ ├── NSPredicate.mm │ ├── NSPredicateUtil.mm │ ├── NSProcessInfo.mm │ ├── NSProgress.mm │ ├── NSPropertyListSerialization.mm │ ├── NSProxy.mm │ ├── NSPurgeableData.mm │ ├── NSRange.mm │ ├── NSRecursiveLock.mm │ ├── NSRegularExpression.mm │ ├── NSRunLoop.mm │ ├── NSRunLoopSource.mm │ ├── NSRunLoopState.mm │ ├── NSSSLHandler.h │ ├── NSSSLHandler.mm │ ├── NSScanner.mm │ ├── NSSelectInputSource.h │ ├── NSSelectInputSource.mm │ ├── NSSelectSet.h │ ├── NSSelectSet.mm │ ├── NSSet.mm │ ├── NSSocket.h │ ├── NSSocket.mm │ ├── NSSortDescriptor.mm │ ├── NSStream.mm │ ├── NSString+HSTRING.mm │ ├── NSString.mm │ ├── NSStringAdditionsForCF.h │ ├── NSTextCheckingResult.mm │ ├── NSThread.mm │ ├── NSTimeZone.mm │ ├── NSTimer.mm │ ├── NSTimerInternal.h │ ├── NSURL.mm │ ├── NSURLAuthenticationChallenge.mm │ ├── NSURLCache.mm │ ├── NSURLComponents.mm │ ├── NSURLConnection.mm │ ├── NSURLCredential.mm │ ├── NSURLCredentialStorage.mm │ ├── NSURLInternal.h │ ├── NSURLProtectionSpace.mm │ ├── NSURLProtocol.mm │ ├── NSURLProtocolInternal.h │ ├── NSURLProtocol_WinHTTP.mm │ ├── NSURLProtocol_file.h │ ├── NSURLProtocol_file.mm │ ├── NSURLQueryItem.mm │ ├── NSURLRequest.mm │ ├── NSURLResponse.mm │ ├── NSURLSession.mm │ ├── NSURLSessionConfiguration.mm │ ├── NSURLSessionDataTask.mm │ ├── NSURLSessionDownloadTask.mm │ ├── NSURLSessionTask.mm │ ├── NSURLSessionUploadTask.mm │ ├── NSUUID.mm │ ├── NSUbiquitousKeyValueStore.mm │ ├── NSUndoManager.mm │ ├── NSUserActivity.mm │ ├── NSUserDefaults.mm │ ├── NSValue.mm │ ├── NSValueTransformer.mm │ ├── NSXMLParser.mm │ ├── NSZone.mm │ ├── Utils.mm │ ├── _NSFileHandleNullDevice.mm │ ├── _NSInvocation.arm.asm │ ├── _NSInvocation.arm.h │ ├── _NSInvocation.arm.mm │ ├── _NSInvocation.x86.asm │ ├── _NSInvocation.x86.h │ ├── _NSInvocation.x86.mm │ ├── _NSKeyValueCodingAggregateFunctions.mm │ ├── _NSURLSessionDownloadResumeInfo.mm │ ├── _NSUndoBasicAction.mm │ ├── _NSUndoGroup.mm │ ├── _NSUndoManagerInternal.h │ ├── _NSUndoManagerStack.mm │ ├── lex.yy.m │ └── rules.tab.m ├── GLKit │ ├── GLKEffect.mm │ ├── GLKMath.mm │ ├── GLKMatrixStack.mm │ ├── GLKShader.mm │ ├── GLKSkyboxEffect.mm │ ├── GLKTexture.mm │ ├── GLKView.mm │ ├── GLKViewController.mm │ ├── ShaderGen.h │ ├── ShaderGen.mm │ ├── ShaderInfo.h │ ├── ShaderInfo.mm │ ├── ShaderProg.h │ └── ShaderProg.mm ├── GameController │ ├── GCController.mm │ ├── GCControllerAxisInput.mm │ ├── GCControllerButtonInput.mm │ ├── GCControllerDirectionPad.mm │ ├── GCControllerElement.mm │ ├── GCExtendedGamepad.mm │ ├── GCExtendedGamepadSnapshot.mm │ ├── GCGamepad.mm │ ├── GCGamepadSnapshot.mm │ ├── GCMotion.mm │ └── GCSnapshot.mm ├── GameKit │ ├── GKAchievement.mm │ ├── GKAchievementChallenge.mm │ ├── GKAchievementDescription.mm │ ├── GKAchievementViewController.mm │ ├── GKChallenge.mm │ ├── GKChallengeEventHandler.mm │ ├── GKConstants.mm │ ├── GKFriendRequestComposeViewController.mm │ ├── GKGameCenterViewController.mm │ ├── GKInvite.mm │ ├── GKLeaderboard.mm │ ├── GKLeaderboardSet.mm │ ├── GKLeaderboardViewController.mm │ ├── GKLocalPlayer.mm │ ├── GKMatch.mm │ ├── GKMatchRequest.mm │ ├── GKMatchmaker.mm │ ├── GKMatchmakerViewController.mm │ ├── GKNotificationBanner.mm │ ├── GKPeerPickerController.mm │ ├── GKPlayer.mm │ ├── GKSavedGame.mm │ ├── GKScore.mm │ ├── GKScoreChallenge.mm │ ├── GKSession.mm │ ├── GKTurnBasedEventHandler.mm │ ├── GKTurnBasedExchange.mm │ ├── GKTurnBasedExchangeReply.mm │ ├── GKTurnBasedMatch.mm │ ├── GKTurnBasedMatchmakerViewController.mm │ ├── GKTurnBasedParticipant.mm │ ├── GKVoiceChat.mm │ └── GKVoiceChatService.mm ├── GamePlayKit │ ├── GKARC4RandomSource.mm │ ├── GKAgent.mm │ ├── GKAgent2D.mm │ ├── GKBehavior.mm │ ├── GKCircleObstacle.mm │ ├── GKComponent.mm │ ├── GKComponentSystem.mm │ ├── GKEntity.mm │ ├── GKGaussianDistribution.mm │ ├── GKGoal.mm │ ├── GKGraph.mm │ ├── GKGraphNode.mm │ ├── GKGraphNode2D.mm │ ├── GKGridGraph.mm │ ├── GKGridGraphNode.mm │ ├── GKLinearCongruentialRandomSource.mm │ ├── GKMersenneTwisterRandomSource.mm │ ├── GKMinmaxStrategist.mm │ ├── GKNSPredicateRule.mm │ ├── GKObstacle.mm │ ├── GKObstacleGraph.mm │ ├── GKPath.mm │ ├── GKPolygonObstacle.mm │ ├── GKRandomDistribution.mm │ ├── GKRandomSource.mm │ ├── GKRule.mm │ ├── GKRuleSystem.mm │ ├── GKShuffledDistribution.mm │ ├── GKState.mm │ └── GKStateMachine.mm ├── HealthKit │ ├── HKAnchoredObjectQuery.mm │ ├── HKBiologicalSexObject.mm │ ├── HKBloodTypeObject.mm │ ├── HKCategorySample.mm │ ├── HKCategoryType.mm │ ├── HKCharacteristicType.mm │ ├── HKCorrelation.mm │ ├── HKCorrelationQuery.mm │ ├── HKCorrelationType.mm │ ├── HKDeletedObject.mm │ ├── HKDevice.mm │ ├── HKFitzpatrickSkinTypeObject.mm │ ├── HKHealthStore.mm │ ├── HKObject.mm │ ├── HKObjectType.mm │ ├── HKObserverQuery.mm │ ├── HKQuantity.mm │ ├── HKQuantitySample.mm │ ├── HKQuantityType.mm │ ├── HKQuery.mm │ ├── HKSample.mm │ ├── HKSampleQuery.mm │ ├── HKSampleType.mm │ ├── HKSource.mm │ ├── HKSourceQuery.mm │ ├── HKSourceRevision.mm │ ├── HKStatistics.mm │ ├── HKStatisticsCollection.mm │ ├── HKStatisticsCollectionQuery.mm │ ├── HKStatisticsQuery.mm │ ├── HKUnit.mm │ ├── HKWorkout.mm │ ├── HKWorkoutEvent.mm │ ├── HKWorkoutType.mm │ └── HealthKitConstants.mm ├── HomeKit │ ├── HMAccessory.mm │ ├── HMAccessoryBrowser.mm │ ├── HMAction.mm │ ├── HMActionSet.mm │ ├── HMCharacteristic.mm │ ├── HMCharacteristicMetadata.mm │ ├── HMCharacteristicWriteAction.mm │ ├── HMHome.mm │ ├── HMHomeManager.mm │ ├── HMRoom.mm │ ├── HMService.mm │ ├── HMServiceGroup.mm │ ├── HMTimerTrigger.mm │ ├── HMTrigger.mm │ ├── HMUser.mm │ ├── HMZone.mm │ └── HomeKitConstants.mm ├── ImageIO │ ├── CGImageDestination.mm │ ├── CGImageDestinationInternal.h │ ├── CGImageProperties.mm │ ├── CGImageSource.mm │ └── CGImageSourceInternal.h ├── LocalAuthentication │ └── LAContext.mm ├── MapKit │ ├── MKAnnotationView.mm │ ├── MKCircle.mm │ ├── MKCircleRenderer.mm │ ├── MKCircleView.mm │ ├── MKDirections.mm │ ├── MKDirectionsRequest.mm │ ├── MKDirectionsResponse.mm │ ├── MKDistanceFormatter.mm │ ├── MKETAResponse.mm │ ├── MKGeodesicPolyline.mm │ ├── MKLocalSearch.mm │ ├── MKLocalSearchRequest.mm │ ├── MKLocalSearchResponse.mm │ ├── MKMapCamera.mm │ ├── MKMapItem.mm │ ├── MKMapSnapshot.mm │ ├── MKMapSnapshotOptions.mm │ ├── MKMapSnapshotter.mm │ ├── MKMapView.mm │ ├── MKMultiPoint.mm │ ├── MKOverlayPathRenderer.mm │ ├── MKOverlayPathView.mm │ ├── MKOverlayRenderer.mm │ ├── MKOverlayView.mm │ ├── MKPinAnnotationView.mm │ ├── MKPlacemark.mm │ ├── MKPointAnnotation.mm │ ├── MKPolygon.mm │ ├── MKPolygonRenderer.mm │ ├── MKPolygonView.mm │ ├── MKPolyline.mm │ ├── MKPolylineRenderer.mm │ ├── MKPolylineView.mm │ ├── MKReverseGeocoder.mm │ ├── MKRoute.mm │ ├── MKRouteStep.mm │ ├── MKShape.mm │ ├── MKTileOverlay.mm │ ├── MKTileOverlayRenderer.mm │ ├── MKUserLocation.mm │ ├── MKUserTrackingBarButtonItem.mm │ ├── MapKitConstants.mm │ ├── MapKitFunctions.mm │ └── NSValue+MapKitAdditions.mm ├── MediaAccessibility │ ├── MAAppearance.mm │ └── MAConstants.mm ├── MediaPlayer │ ├── MPChangePlaybackRateCommand.mm │ ├── MPChangePlaybackRateCommandEvent.mm │ ├── MPContentItem.mm │ ├── MPFeedbackCommand.mm │ ├── MPFeedbackCommandEvent.mm │ ├── MPMediaEntity.mm │ ├── MPMediaItem.mm │ ├── MPMediaItemArtwork.mm │ ├── MPMediaItemCollection.mm │ ├── MPMediaLibrary.mm │ ├── MPMediaPickerController.mm │ ├── MPMediaPlaylist.mm │ ├── MPMediaPredicate.mm │ ├── MPMediaPropertyPredicate.mm │ ├── MPMediaQuery.mm │ ├── MPMediaQuerySection.mm │ ├── MPMovieAccessLog.mm │ ├── MPMovieAccessLogEvent.mm │ ├── MPMovieErrorLog.mm │ ├── MPMovieErrorLogEvent.mm │ ├── MPMoviePlayerController.mm │ ├── MPMoviePlayerViewController.mm │ ├── MPMusicPlayerController.mm │ ├── MPNowPlayingInfoCenter.mm │ ├── MPPlayableContentManager.mm │ ├── MPRatingCommand.mm │ ├── MPRatingCommandEvent.mm │ ├── MPRemoteCommand.mm │ ├── MPRemoteCommandCenter.mm │ ├── MPRemoteCommandEvent.mm │ ├── MPSeekCommandEvent.mm │ ├── MPSkipIntervalCommand.mm │ ├── MPSkipIntervalCommandEvent.mm │ ├── MPTimedMetadata.mm │ ├── MPVolumeView.mm │ ├── MediaPlayerFunctions.mm │ └── UIViewController.mm ├── MessageUI │ ├── MFMailComposeViewController.mm │ └── MFMessageComposeViewController.mm ├── Metal │ ├── MTLArgument.mm │ ├── MTLArrayType.mm │ ├── MTLCommandBuffer.mm │ ├── MTLCompileOptions.mm │ ├── MTLComputePipelineDescriptor.mm │ ├── MTLComputePipelineReflection.mm │ ├── MTLDepthStencilDescriptor.mm │ ├── MTLLibrary.mm │ ├── MTLRenderPassAttachmentDescriptor.mm │ ├── MTLRenderPassColorAttachmentDescriptor.mm │ ├── MTLRenderPassColorAttachmentDescriptorArray.mm │ ├── MTLRenderPassDepthAttachmentDescriptor.mm │ ├── MTLRenderPassDescriptor.mm │ ├── MTLRenderPassStencilAttachmentDescriptor.mm │ ├── MTLRenderPipelineColorAttachmentDescriptor.mm │ ├── MTLRenderPipelineColorAttachmentDescriptorArray.mm │ ├── MTLRenderPipelineDescriptor.mm │ ├── MTLRenderPipelineReflection.mm │ ├── MTLSamplerDescriptor.mm │ ├── MTLStencilDescriptor.mm │ ├── MTLStructMember.mm │ ├── MTLStructType.mm │ ├── MTLTextureDescriptor.mm │ ├── MTLVertexAttribute.mm │ ├── MTLVertexAttributeDescriptor.mm │ ├── MTLVertexAttributeDescriptorArray.mm │ ├── MTLVertexBufferLayoutDescriptor.mm │ ├── MTLVertexBufferLayoutDescriptorArray.mm │ ├── MTLVertexDescriptor.mm │ └── MetalFunctions.mm ├── MobileCoreServices │ ├── UTType.cpp │ └── UTTypeInternal.cpp ├── OpenGLES │ ├── EAGLContext.mm │ ├── GLES.mm │ └── GLES1122 │ │ ├── OpenGLES20 │ │ ├── Attribute.h │ │ ├── Attribute.mm │ │ ├── MatrixStack.h │ │ ├── MatrixStack.mm │ │ ├── OpenGLES20Context.h │ │ ├── OpenGLES20Context.mm │ │ ├── OpenGLES20Implementation.h │ │ ├── OpenGLES20Implementation.mm │ │ ├── OpenGLESState.h │ │ ├── OpenGLESState.mm │ │ ├── Shader.h │ │ ├── Shader20.mm │ │ ├── ShaderFile.h │ │ ├── ShaderFile.mm │ │ ├── ShaderProgram.h │ │ ├── ShaderProgram.mm │ │ ├── ShaderSource.h │ │ ├── ShaderSource.mm │ │ ├── Uniform.h │ │ └── Uniform.mm │ │ ├── OpenGLESConfig.h │ │ ├── OpenGLESConfig.mm │ │ ├── OpenGLESContext.h │ │ ├── OpenGLESContext.mm │ │ ├── OpenGLESFile.h │ │ ├── OpenGLESFile.mm │ │ ├── OpenGLESImplementation.h │ │ ├── OpenGLESImplementation.mm │ │ ├── OpenGLESMath.h │ │ ├── OpenGLESString.h │ │ ├── OpenGLESString.mm │ │ ├── OpenGLESUtil.h │ │ └── OpenGLESUtil.mm ├── QuartzCore │ ├── CAAnimation.mm │ ├── CAAnimationGroup.mm │ ├── CABasicAnimation.mm │ ├── CABasicAnimationInternal.h │ ├── CAConstants.mm │ ├── CADisplayLink.mm │ ├── CAEAGLLayer.h │ ├── CAEAGLLayer.mm │ ├── CAEAGLLayerInternal.h │ ├── CAEmitterCell.mm │ ├── CAEmitterLayer.mm │ ├── CAGradientLayer.mm │ ├── CAKeyframeAnimation.mm │ ├── CALayer.mm │ ├── CAMediaTiming.mm │ ├── CAMediaTimingFunction.mm │ ├── CAMetalLayer.mm │ ├── CAPropertyAnimation.mm │ ├── CARenderer.mm │ ├── CAReplicatorLayer.mm │ ├── CAScrollLayer.mm │ ├── CAShapeLayer.mm │ ├── CATextLayer.mm │ ├── CATiledLayer.mm │ ├── CATransaction.mm │ ├── CATransform3D.mm │ ├── CATransformLayer.mm │ ├── CATransition.mm │ ├── CAValueFunction.mm │ └── CoreAnimationFunctions.mm ├── QuickLook │ └── QLPreviewController.mm ├── RTObjCInterop │ ├── InteropBase.mm │ ├── ObjCHelpers.mm │ ├── RTHelpers.mm │ └── RTObject.mm ├── SafariServices │ ├── SFSafariOAuthViewController.h │ ├── SFSafariOAuthViewController.mm │ ├── SFSafariViewController.mm │ ├── SFSafariViewControllerInternal.h │ ├── SFSafariWebViewController.h │ └── SFSafariWebViewController.mm ├── Security │ ├── GenericPasswordItemHandler.h │ ├── GenericPasswordItemHandler.mm │ ├── SecCertificate.mm │ ├── SecIdentity.mm │ ├── SecItem.mm │ ├── SecItemHandlerProtocol.h │ ├── SecKey.mm │ ├── SecPolicy.mm │ ├── SecRandom.mm │ ├── SecTrust.mm │ └── SecureTransport.mm ├── Social.Xaml │ ├── ShareSheet.xaml │ ├── ShareSheet.xaml.cpp │ ├── ShareSheet.xaml.h │ ├── pch.cpp │ └── pch.h ├── Social │ ├── SLComposeServiceViewController.mm │ ├── SLComposeSheetConfigurationItem.mm │ ├── SLComposeViewController.mm │ ├── SLRequest.mm │ ├── _SLFBComposeViewController.h │ └── _SLFBComposeViewController.mm ├── Starboard │ ├── AssetFile.cpp │ ├── CommonCryptor.cpp │ ├── CommonDigest.cpp │ ├── CommonHMAC.cpp │ ├── DNSService.cpp │ ├── EbrDevRandomFile.cpp │ ├── EbrDevRandomFile.h │ ├── EbrFile.cpp │ ├── EbrFile.h │ ├── EbrIOFile.cpp │ ├── EbrIOFile.h │ ├── EbrStorageFile.cpp │ ├── EbrStorageFile.h │ ├── MurmurHash3.cpp │ ├── PathMapper.cpp │ ├── PathMapper.h │ ├── PlatformSupport.cpp │ ├── Quaternion.mm │ ├── RawBuffer.cpp │ ├── String.cpp │ ├── WinMainLinkage.cpp │ ├── pevents.cpp │ └── pthread.cpp ├── StoreKit │ ├── SKDownload.mm │ ├── SKMutablePayment.mm │ ├── SKPayment.mm │ ├── SKPaymentQueue.mm │ ├── SKPaymentTransaction.mm │ ├── SKProduct.mm │ ├── SKProductsRequest.mm │ ├── SKProductsResponse.mm │ ├── SKReceiptRefreshRequest.mm │ ├── SKRequest.mm │ ├── SKStoreProductViewController.mm │ └── StoreKitConstants.mm ├── SystemConfiguration │ └── SCNetworkReachability.mm ├── Twitter │ ├── TWRequest.mm │ └── TWTweetComposeViewController.mm ├── UIKit.Xaml │ ├── ActivityIndicatorView.xaml │ ├── ActivityIndicatorView.xaml.cpp │ ├── ActivityIndicatorView.xaml.h │ ├── Button.xaml │ ├── Button.xaml.cpp │ ├── Button.xaml.h │ ├── ContentDialog.xaml │ ├── ContentDialog.xaml.cpp │ ├── ContentDialog.xaml.h │ ├── ILayer.cpp │ ├── ILayer.h │ ├── Label.xaml │ ├── Label.xaml.cpp │ ├── Label.xaml.h │ ├── Layer.xaml │ ├── Layer.xaml.cpp │ ├── Layer.xaml.h │ ├── ObjCXamlControls.h │ ├── ProgressView.xaml │ ├── ProgressView.xaml.cpp │ ├── ProgressView.xaml.h │ ├── ScrollView.xaml │ ├── ScrollView.xaml.cpp │ ├── ScrollView.xaml.h │ ├── Slider.xaml │ ├── Slider.xaml.cpp │ ├── Slider.xaml.h │ ├── TextField.xaml │ ├── TextField.xaml.cpp │ ├── TextField.xaml.h │ ├── Themes │ │ └── Generic.xaml │ ├── UIKit.Xaml.Export.h │ ├── pch.cpp │ └── pch.h ├── UIKit │ ├── ForceInclusion.mm │ ├── NSAttributedString+UIKitAdditions.mm │ ├── NSBundle+UIKitAdditions.mm │ ├── NSCoder+UIKitAdditions.mm │ ├── NSDataAsset.mm │ ├── NSFileProviderExtension.mm │ ├── NSIndexPath+UITableView.mm │ ├── NSLayoutAnchor.mm │ ├── NSLayoutAnchorInternal.h │ ├── NSLayoutConstraint.mm │ ├── NSLayoutDimension.mm │ ├── NSLayoutManager.mm │ ├── NSLayoutXAxisAnchor.mm │ ├── NSLayoutYAxisAnchor.mm │ ├── NSMutableAttributedString+UIKitAdditions.mm │ ├── NSMutableParagraphStyle.mm │ ├── NSObject+UIKitAdditions.mm │ ├── NSParagraphStyle.mm │ ├── NSShadow.mm │ ├── NSString+UIKitAdditions.mm │ ├── NSStringDrawingContext.mm │ ├── NSTextAttachment.mm │ ├── NSTextContainer.mm │ ├── NSTextStorage.mm │ ├── NSTextTab.mm │ ├── NSValue+UIKitAdditions.mm │ ├── StarboardXaml │ │ ├── ApplicationMain.h │ │ ├── ApplicationMain.mm │ │ ├── DisplayProperties.h │ │ ├── DisplayProperties.mm │ │ ├── DisplayTexture.cpp │ │ ├── DisplayTexture.h │ │ ├── DisplayTexture.mm │ │ ├── LayerAnimation.cpp │ │ ├── LayerAnimation.h │ │ ├── LayerAnimation.mm │ │ ├── LayerCoordinator.cpp │ │ ├── LayerCoordinator.h │ │ ├── LayerProxy.cpp │ │ ├── LayerProxy.h │ │ ├── LayerProxy.mm │ │ ├── LayerTransaction.h │ │ ├── LayerTransaction.mm │ │ ├── StarboardXaml.cpp │ │ ├── StarboardXaml.h │ │ ├── StoryboardManager.cpp │ │ ├── StoryboardManager.h │ │ ├── StringConversion.h │ │ ├── StringConversion.mm │ │ ├── UWPBackgroundTask.h │ │ ├── UWPBackgroundTask.mm │ │ ├── XamlCompositor.cpp │ │ ├── XamlCompositor.h │ │ └── XamlCompositor.mm │ ├── UIAcceleration.mm │ ├── UIAccelerometer.mm │ ├── UIAccessibility.mm │ ├── UIAccessibilityCustomAction.mm │ ├── UIAccessibilityElement.mm │ ├── UIActionSheet.mm │ ├── UIActivity.mm │ ├── UIActivityIndicatorView.mm │ ├── UIActivityItemProvider.mm │ ├── UIActivityViewController.mm │ ├── UIAlertAction.mm │ ├── UIAlertController.mm │ ├── UIAlertView.mm │ ├── UIAnimationNotification.h │ ├── UIAnimationNotification.mm │ ├── UIAppearanceSetter.mm │ ├── UIApplication.mm │ ├── UIApplicationMain.mm │ ├── UIApplicationMainInternal.h │ ├── UIApplicationShortcutIcon.mm │ ├── UIApplicationShortcutItem.mm │ ├── UIAttachmentBehavior.mm │ ├── UIBarButtonItem.mm │ ├── UIBarButtonItemGroup.mm │ ├── UIBarItem.mm │ ├── UIBezierPath.mm │ ├── UIBlurEffect.mm │ ├── UIButton.mm │ ├── UIButtonContent.h │ ├── UIButtonContent.mm │ ├── UIButtonProxies.h │ ├── UIButtonProxies.mm │ ├── UICGColor.h │ ├── UICGColor.mm │ ├── UICTFont.h │ ├── UICTFont.mm │ ├── UICTFontDescriptor.h │ ├── UICTFontDescriptor.mm │ ├── UIClassSwapper.mm │ ├── UICollectionReusableView.mm │ ├── UICollectionView.mm │ ├── UICollectionViewCell.mm │ ├── UICollectionViewController.mm │ ├── UICollectionViewData.h │ ├── UICollectionViewData.mm │ ├── UICollectionViewFlowLayout.mm │ ├── UICollectionViewFlowLayoutInvalidationContext.mm │ ├── UICollectionViewFocusUpdateContext.mm │ ├── UICollectionViewItemKey.h │ ├── UICollectionViewItemKey.mm │ ├── UICollectionViewLayout+Internal.h │ ├── UICollectionViewLayout.mm │ ├── UICollectionViewLayoutAttributes+Internal.h │ ├── UICollectionViewLayoutAttributes.mm │ ├── UICollectionViewLayoutInvalidationContext.mm │ ├── UICollectionViewTransitionLayout.mm │ ├── UICollectionViewUpdateItem.mm │ ├── UICollisionBehavior.mm │ ├── UIColor.mm │ ├── UIControl.mm │ ├── UIDatePicker.mm │ ├── UIDevice.mm │ ├── UIDeviceInternal.h │ ├── UIDictationPhrase.mm │ ├── UIDocument.mm │ ├── UIDocumentInteractionController.mm │ ├── UIDocumentMenuViewController.mm │ ├── UIDocumentPickerExtensionViewController.mm │ ├── UIDocumentPickerViewController.mm │ ├── UIDynamicAnimator.mm │ ├── UIDynamicBehavior.mm │ ├── UIDynamicItemBehavior.mm │ ├── UIDynamicItemGroup.mm │ ├── UIEmptyView.h │ ├── UIEmptyView.mm │ ├── UIEvent.mm │ ├── UIFieldBehavior.mm │ ├── UIFocusAnimationCoordinator.mm │ ├── UIFocusGuide.mm │ ├── UIFocusUpdateContext.mm │ ├── UIFont.mm │ ├── UIFontDescriptor.mm │ ├── UIGeometry.mm │ ├── UIGestureRecognizer.mm │ ├── UIGraphics.mm │ ├── UIGraphicsFunctions.mm │ ├── UIGravityBehavior.mm │ ├── UIGridLayoutInfo.h │ ├── UIGridLayoutInfo.mm │ ├── UIGridLayoutItem.h │ ├── UIGridLayoutItem.mm │ ├── UIGridLayoutRow.h │ ├── UIGridLayoutRow.mm │ ├── UIGridLayoutSection.h │ ├── UIGridLayoutSection.mm │ ├── UIImage.mm │ ├── UIImageAsset.mm │ ├── UIImageCachedObject.h │ ├── UIImageCachedObject.mm │ ├── UIImageNibPlaceholder.h │ ├── UIImageNibPlaceholder.mm │ ├── UIImagePickerController.mm │ ├── UIImagePickerControllerDelegate.mm │ ├── UIImageView.mm │ ├── UIInputView.mm │ ├── UIInputViewController.mm │ ├── UIInterpolatingMotionEffect.mm │ ├── UIKeyCommand.mm │ ├── UILabel.mm │ ├── UILayoutGuide.mm │ ├── UILexicon.mm │ ├── UILexiconEntry.mm │ ├── UILocalNotification.mm │ ├── UILocalizedIndexedCollation.mm │ ├── UILongPressGestureRecognizer.mm │ ├── UIManagedDocument.mm │ ├── UIMarkupTextPrintFormatter.mm │ ├── UIMenuController.mm │ ├── UIMenuItem.mm │ ├── UIMotionEffect.mm │ ├── UIMotionEffectGroup.mm │ ├── UIMutableApplicationShortcutItem.mm │ ├── UIMutableUserNotificationAction.mm │ ├── UIMutableUserNotificationCategory.mm │ ├── UINavigationBar.mm │ ├── UINavigationController.mm │ ├── UINavigationControllerInternal.h │ ├── UINavigationItem.mm │ ├── UINavigationPane.mm │ ├── UINib.mm │ ├── UINibUnarchiver.mm │ ├── UIPageControl.mm │ ├── UIPageViewController.mm │ ├── UIPanGestureRecognizer.mm │ ├── UIPanGestureRecognizerInternal.h │ ├── UIPasteboard.mm │ ├── UIPercentDrivenInteractiveTransition.mm │ ├── UIPickerView.mm │ ├── UIPinchGestureRecognizer.mm │ ├── UIPopoverBackgroundView.mm │ ├── UIPopoverController.mm │ ├── UIPopoverPresentationController.mm │ ├── UIPresentationController.mm │ ├── UIPress.mm │ ├── UIPressesEvent.mm │ ├── UIPreviewAction.mm │ ├── UIPreviewActionGroup.mm │ ├── UIPrintFormatter.mm │ ├── UIPrintInfo.mm │ ├── UIPrintInteractionController.mm │ ├── UIPrintPageRenderer.mm │ ├── UIPrintPaper.mm │ ├── UIPrinter.mm │ ├── UIPrinterPickerController.mm │ ├── UIProgressView.mm │ ├── UIProxyObject.h │ ├── UIProxyObject.mm │ ├── UIProxyObjectPair.h │ ├── UIProxyObjectPair.mm │ ├── UIPushBehavior.mm │ ├── UIReferenceLibraryViewController.mm │ ├── UIRefreshControl.mm │ ├── UIRegion.mm │ ├── UIResponder.mm │ ├── UIResponderStandardEditActions.mm │ ├── UIRotationGestureRecognizer.mm │ ├── UIRuntimeEventConnection.mm │ ├── UIRuntimeOutletCollectionConnection.h │ ├── UIRuntimeOutletCollectionConnection.mm │ ├── UIRuntimeOutletConnection.h │ ├── UIRuntimeOutletConnection.mm │ ├── UIScreen.mm │ ├── UIScreenEdgePanGestureRecognizer.mm │ ├── UIScreenMode.mm │ ├── UIScrollView.mm │ ├── UIScrollViewInternal.h │ ├── UISearchBar.mm │ ├── UISearchContainerViewController.mm │ ├── UISearchController.mm │ ├── UISearchDisplayController.mm │ ├── UISegment.h │ ├── UISegment.mm │ ├── UISegmentedControl.mm │ ├── UISegmentedControlInternal.h │ ├── UISimpleTextPrintFormatter.mm │ ├── UISlider.mm │ ├── UISnapBehavior.mm │ ├── UISplitViewController.mm │ ├── UIStackView.mm │ ├── UIStateRestoring.mm │ ├── UIStepper.mm │ ├── UIStoryboard.mm │ ├── UIStoryboardInternal.h │ ├── UIStoryboardModalSegueTemplate.mm │ ├── UIStoryboardPopoverSegue.mm │ ├── UIStoryboardSegue.mm │ ├── UISwipeGestureRecognizer.mm │ ├── UISwitch.mm │ ├── UITabBar.mm │ ├── UITabBarButton.h │ ├── UITabBarButton.mm │ ├── UITabBarController.mm │ ├── UITabBarControllerInternal.h │ ├── UITabBarInternal.h │ ├── UITabBarItem.mm │ ├── UITabPane.h │ ├── UITabPane.mm │ ├── UITableView.mm │ ├── UITableViewCell.mm │ ├── UITableViewCellContentView.h │ ├── UITableViewCellContentView.mm │ ├── UITableViewCellInternal.h │ ├── UITableViewContentView.h │ ├── UITableViewContentView.mm │ ├── UITableViewController.mm │ ├── UITableViewDataSource.h │ ├── UITableViewDataSource.mm │ ├── UITableViewFocusUpdateContext.mm │ ├── UITableViewHeaderFooterView.mm │ ├── UITableViewRow.h │ ├── UITableViewRow.mm │ ├── UITableViewRowAction.mm │ ├── UITableViewSection.h │ ├── UITableViewSection.mm │ ├── UITapGestureRecognizer.mm │ ├── UITextChecker.mm │ ├── UITextField.mm │ ├── UITextInput.mm │ ├── UITextInputAssistantItem.mm │ ├── UITextInputMode.mm │ ├── UITextInputStringTokenizer.mm │ ├── UITextPosition.mm │ ├── UITextRange.mm │ ├── UITextSelectionRect.mm │ ├── UITextView.mm │ ├── UIToolbar.mm │ ├── UITouch.mm │ ├── UITraitCollection.mm │ ├── UIUserNotificationAction.mm │ ├── UIUserNotificationCategory.mm │ ├── UIUserNotificationSettings.mm │ ├── UIVibrancyEffect.mm │ ├── UIVideoEditorController.mm │ ├── UIView.mm │ ├── UIViewController.mm │ ├── UIViewControllerContextTransitioning.mm │ ├── UIViewPrintFormatter.mm │ ├── UIVisualEffect.mm │ ├── UIVisualEffectView.mm │ ├── UIWebView.mm │ ├── UIWindow.mm │ ├── UrlLauncher.mm │ ├── WYPopoverController.mm │ ├── WYStoryboardPopoverSegue.m │ ├── XamlControls.h │ ├── XamlControls.mm │ ├── XamlUtilities.h │ ├── XamlUtilities.mm │ ├── _TableCellAnimationHelper.h │ ├── _TableCellAnimationHelper.mm │ ├── _UIDirectManipulationRecognizer.h │ ├── _UIDirectManipulationRecognizer.mm │ ├── _UIGestureCoordinator.h │ ├── _UIGestureCoordinator.mm │ ├── _UIGroupEdgeView.h │ ├── _UIGroupEdgeView.mm │ ├── _UIPopupViewController.mm │ └── art.mm ├── WebKit │ ├── WKBackForwardList.mm │ ├── WKBackForwardListItem.mm │ ├── WKFrameInfo.mm │ ├── WKNavigation.mm │ ├── WKNavigationAction.mm │ ├── WKNavigationResponse.mm │ ├── WKPreferences.mm │ ├── WKProcessPool.mm │ ├── WKScriptMessage.mm │ ├── WKSecurityOrigin.mm │ ├── WKUserContentController.mm │ ├── WKUserScript.mm │ ├── WKWebView.mm │ ├── WKWebViewConfiguration.mm │ ├── WKWebsiteDataRecord.mm │ ├── WKWebsiteDataStore.mm │ ├── WKWindowFeatures.mm │ └── WebKitConstants.mm ├── iAd │ ├── ADBannerView.mm │ ├── ADClient.mm │ ├── ADInterstitialAd.mm │ └── UIViewController.mm └── include │ ├── AccessibilityInternal.h │ ├── AssertARCEnabled.h │ ├── AssetFile.h │ ├── AutoLayout.h │ ├── BridgeHelpers.h │ ├── CAAnimationInternal.h │ ├── CACompositor.h │ ├── CACompositorClient.h │ ├── CAEmitterCellInternal.h │ ├── CALayerInternal.h │ ├── CATransactionInternal.h │ ├── CFBridgeBase.h │ ├── CFCppBase.h │ ├── CFFoundationInternal.h │ ├── CFUtils.h │ ├── CGColorInternal.h │ ├── CGColorSpaceInternal.h │ ├── CGContextInternal.h │ ├── CGDataConsumerInternal.h │ ├── CGDataProviderInternal.h │ ├── CGGradientInternal.h │ ├── CGIWICBitmap.h │ ├── CGImageInternal.h │ ├── CGPathInternal.h │ ├── CGPatternInternal.h │ ├── CIImageInternal.h │ ├── CollectionHelpers.h │ ├── CoreData │ └── NSManagedObjectModel-XMLParsing.h │ ├── CoreGraphics │ ├── CGFontInternal.h │ ├── D2DWrapper.h │ └── DWriteWrapper.h │ ├── CoreGraphicsInternal.h │ ├── CoreTextInternal.h │ ├── CppUtils.h │ ├── CppWinRTHelpers.h │ ├── EAGLContextInternal.h │ ├── EbrGLES.h │ ├── EmuTransform3D.h │ ├── Etc.h │ ├── ExpressionHelpers.h │ ├── FontAtlas.h │ ├── GLKEffectInternal.h │ ├── Hash.h │ ├── HashFn.h │ ├── IDisplayTexture.h │ ├── IcuHelper.h │ ├── LinkedList.h │ ├── List.h │ ├── MainDispatcher.h │ ├── MockClass.h │ ├── MurmurHash3.h │ ├── NSBlocksInternal.h │ ├── NSBooleanPredicate.h │ ├── NSBundleInternal.h │ ├── NSCoderInternal.h │ ├── NSDateComponentsInternal.h │ ├── NSEnumeratorInternal.h │ ├── NSExpressionConstantValue.h │ ├── NSExpressionDefaultFunctions.h │ ├── NSExpressionEvaluatedObject.h │ ├── NSExpressionFunction.h │ ├── NSExpressionKeyPath.h │ ├── NSExpressionVariable.h │ ├── NSInputSource.h │ ├── NSKeyValueObserving-Internal.h │ ├── NSLayoutConstraint+AutoLayout.h │ ├── NSLocaleInternal.h │ ├── NSLock+Internal.h │ ├── NSLogInternal.h │ ├── NSLogging.h │ ├── NSNumberInternal.h │ ├── NSObject_NSKeyValueCoding-Internal.h │ ├── NSOrderedSetInternal.h │ ├── NSParagraphStyleInternal.h │ ├── NSPointerFunctionsConcrete.h │ ├── NSPredicateUtil.h │ ├── NSRaise.h │ ├── NSRecursiveLock+Internal.h │ ├── NSRunLoop+Internal.h │ ├── NSRunLoopSource.h │ ├── NSRunLoopState.h │ ├── NSStringInternal.h │ ├── NSTextStorageInternal.h │ ├── NSThread-Internal.h │ ├── NSURLRequestInternal.h │ ├── NSURLResponseInternal.h │ ├── NSURLSession-Internal.h │ ├── NSURLSessionTask-Internal.h │ ├── NSUUID-Private.h │ ├── NSUserDefaultsInternal.h │ ├── NSValueTransformers.h │ ├── Platform │ └── EbrPlatform.h │ ├── Quaternion.h │ ├── RawBuffer.h │ ├── RingBuffer.h │ ├── ShareSheetControl.h │ ├── Social.Xaml.Export.h │ ├── Starboard.h │ ├── Str.h │ ├── StringHelpers.h │ ├── Types.h │ ├── UIAppearanceSetter.h │ ├── UIApplicationInternal.h │ ├── UIBarButtonItem+Internals.h │ ├── UIBarItemInternal.h │ ├── UIClassSwapper.h │ ├── UIColorInternal.h │ ├── UIControlInternal.h │ ├── UIDatePicker+Internal.h │ ├── UIEventInternal.h │ ├── UIFontInternal.h │ ├── UIGestureRecognizerInternal.h │ ├── UIInterface.h │ ├── UILabelInternal.h │ ├── UILayoutGuide+AutoLayout.h │ ├── UINavigationBarInternal.h │ ├── UINavigationItemInternal.h │ ├── UINibInternal.h │ ├── UINibUnarchiver.h │ ├── UIPickerViewInternal.h │ ├── UIPopoverControllerInternal.h │ ├── UIPopoverPresentationControllerInternal.h │ ├── UIResponderInternal.h │ ├── UISegmentedControlInternal.h │ ├── UITableViewInternal.h │ ├── UITouchInternal.h │ ├── UIView+AutoLayout.h │ ├── UIViewControllerInternal.h │ ├── UIViewInternal.h │ ├── UIWindowInternal.h │ ├── UTTypeInternal.h │ ├── UrlLauncher.h │ ├── VAListHelper.h │ ├── WRLHelpers.h │ ├── WYPopoverController.h │ ├── WYPopoverPrivate.h │ ├── WYStoryboardPopoverSegue.h │ ├── _CFLocaleInternal.h │ ├── _CGLifetimeBridgingType.h │ ├── _NSCFNumber.h │ ├── _NSCFTemporaryRootObject.h │ ├── _NSFileHandleNullDevice.h │ ├── _NSKeyValueCodingAggregateFunctions.h │ ├── _UIPopupViewController.h │ ├── gles11shaders │ ├── alphaTest.frag.h │ ├── clipPlane.frag.h │ ├── clipPlane.vert.h │ ├── fog.glsl.h │ ├── lighting.frag.h │ ├── lighting.vert.h │ ├── lightingPerFragment.frag.h │ ├── lightingPerFragment.vert.h │ ├── lightingPerVertex.vert.h │ ├── main.frag.h │ ├── main.vert.h │ ├── postprocess.frag.h │ ├── postprocess.vert.h │ ├── texture.frag.h │ ├── texture.vert.h │ ├── texture0.frag.h │ ├── texture0.vert.h │ ├── texture1.frag.h │ ├── texture1.vert.h │ ├── texture2.frag.h │ └── texture2.vert.h │ ├── khash.h │ ├── objc-private.h │ ├── pevents.h │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ ├── rapidxml_utils.hpp │ ├── rules.tab.h │ ├── stb_vorbis.h │ └── type_encoding_cases.h ├── GitVersion.yml ├── LICENSE.md ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── common ├── NugetRestore.msbuildproj ├── NuprojInitializer.msbuildproj ├── Override-ProjectJson.ps1 ├── common.rc ├── gitversiontask │ └── 4.0.0-beta0011 │ │ ├── build │ │ ├── GitVersionTask.dll │ │ ├── GitVersionTask.dll.config │ │ ├── GitVersionTask.pdb │ │ ├── GitVersionTask.targets │ │ └── lib │ │ │ ├── linux │ │ │ └── x86_64 │ │ │ │ └── libgit2-baa87df.so │ │ │ ├── osx │ │ │ └── libgit2-baa87df.dylib │ │ │ └── win32 │ │ │ ├── x64 │ │ │ ├── git2-baa87df.dll │ │ │ └── git2-baa87df.pdb │ │ │ └── x86 │ │ │ ├── git2-baa87df.dll │ │ │ └── git2-baa87df.pdb │ │ ├── buildMultiTargeting │ │ └── GitVersionTask.targets │ │ ├── gitversiontask.4.0.0-beta0011.nupkg │ │ ├── gitversiontask.4.0.0-beta0011.nupkg.sha512 │ │ └── gitversiontask.nuspec ├── winobjc.nuproj.common.props ├── winobjc.nuproj.common.targets ├── winobjc.packagereference.override.targets ├── winobjc.versioning.common.targets └── workaround │ ├── Microsoft.NuGet.Build.Tasks.Workaround.dll │ ├── Microsoft.Nuget.Workaround.targets │ └── Newtonsoft.Json.dll ├── contrib ├── clang │ ├── README │ └── patches │ │ ├── 0001-ObjCGNU-Fix-empty-v3-protocols-being-emitted-two-fie.patch │ │ ├── 0002-Allow-equality-comparisons-between-block-pointers-an.patch │ │ ├── 0003-AST-correct-mangling-for-SEL-on-MS-ABI.patch │ │ ├── 0004-CodeGen-handle-blocks-correctly-when-inalloca-ed.patch │ │ ├── 0005-CodeGenObjCXX-handle-inalloca-appropriately-for-msgS.patch │ │ ├── 0006-WinEH-Put-funclet-bundles-on-inline-asm-calls.patch │ │ ├── 0007-CodeGen-Add-funclet-token-to-ARC-marker.patch │ │ ├── 0008-Placeholder-to-delineate-upstream-vs.-Microsoft-chan.patch │ │ ├── 0009-ObjC-Improve-the-handling-of-empty-tries-funclet-pad.patch │ │ ├── 0010-ObjCGNU-Use-CGF-instead-of-Builder-to-emit-calls-so-.patch │ │ ├── 0011-CGException-Add-support-for-funclet-personalities-in.patch │ │ ├── 0012-ObjCGNU-Emit-protocols-class-refs-and-const-strings-.patch │ │ ├── 0013-ObjCGNU-Improve-MakePropertyEncodingString-s-abstrac.patch │ │ ├── 0014-ObjCGNU-Break-module-descriptor-creation-out-of-Modu.patch │ │ ├── 0015-SPECULATIVE-Catchall-in-microsoft-personality.patch │ │ ├── 0016-SPECULATIVE-emit-catchpads-for-obj-c.patch │ │ ├── 0017-ObjC-Add-a-skeletal-Microsoft-Objective-C-ABI-based-.patch │ │ ├── 0018-ObjCGNU-Add-the-bulk-of-CGObjCMicrosoft.patch │ │ └── 0019-Sema-in-msvc-compatibility-mode-don-t-allow-forceinl.patch └── llvm │ ├── README │ └── patches │ ├── 0001-CodeGen-handle-llvm.used-properly-for-COFF.patch │ ├── 0002-CodeGen-Ignore-private-symbols-in-llvm.used-for-COFF.patch │ ├── 0003-ObjCARC-teach-the-cloner-about-funclets.patch │ ├── 0004-ObjCARC-address-review-comments-from-majnemer.patch │ └── 0005-ObjCARC-Add-funclet-token-to-ARC-marker.patch ├── deps ├── 3rdparty │ ├── CBLAS │ │ ├── cblas.h │ │ ├── cblas_caxpy.c │ │ ├── cblas_ccopy.c │ │ ├── cblas_cdotc_sub.c │ │ ├── cblas_cdotu_sub.c │ │ ├── cblas_cgbmv.c │ │ ├── cblas_cgemm.c │ │ ├── cblas_cgemv.c │ │ ├── cblas_cgerc.c │ │ ├── cblas_cgeru.c │ │ ├── cblas_chbmv.c │ │ ├── cblas_chemm.c │ │ ├── cblas_chemv.c │ │ ├── cblas_cher.c │ │ ├── cblas_cher2.c │ │ ├── cblas_cher2k.c │ │ ├── cblas_cherk.c │ │ ├── cblas_chpmv.c │ │ ├── cblas_chpr.c │ │ ├── cblas_chpr2.c │ │ ├── cblas_cscal.c │ │ ├── cblas_csscal.c │ │ ├── cblas_cswap.c │ │ ├── cblas_csymm.c │ │ ├── cblas_csyr2k.c │ │ ├── cblas_csyrk.c │ │ ├── cblas_ctbmv.c │ │ ├── cblas_ctbsv.c │ │ ├── cblas_ctpmv.c │ │ ├── cblas_ctpsv.c │ │ ├── cblas_ctrmm.c │ │ ├── cblas_ctrmv.c │ │ ├── cblas_ctrsm.c │ │ ├── cblas_ctrsv.c │ │ ├── cblas_dasum.c │ │ ├── cblas_daxpy.c │ │ ├── cblas_dcopy.c │ │ ├── cblas_ddot.c │ │ ├── cblas_dgbmv.c │ │ ├── cblas_dgemm.c │ │ ├── cblas_dgemv.c │ │ ├── cblas_dger.c │ │ ├── cblas_dnrm2.c │ │ ├── cblas_drot.c │ │ ├── cblas_drotg.c │ │ ├── cblas_drotm.c │ │ ├── cblas_drotmg.c │ │ ├── cblas_dsbmv.c │ │ ├── cblas_dscal.c │ │ ├── cblas_dsdot.c │ │ ├── cblas_dspmv.c │ │ ├── cblas_dspr.c │ │ ├── cblas_dspr2.c │ │ ├── cblas_dswap.c │ │ ├── cblas_dsymm.c │ │ ├── cblas_dsymv.c │ │ ├── cblas_dsyr.c │ │ ├── cblas_dsyr2.c │ │ ├── cblas_dsyr2k.c │ │ ├── cblas_dsyrk.c │ │ ├── cblas_dtbmv.c │ │ ├── cblas_dtbsv.c │ │ ├── cblas_dtpmv.c │ │ ├── cblas_dtpsv.c │ │ ├── cblas_dtrmm.c │ │ ├── cblas_dtrmv.c │ │ ├── cblas_dtrsm.c │ │ ├── cblas_dtrsv.c │ │ ├── cblas_dzasum.c │ │ ├── cblas_dznrm2.c │ │ ├── cblas_f77.h │ │ ├── cblas_globals.c │ │ ├── cblas_icamax.c │ │ ├── cblas_idamax.c │ │ ├── cblas_isamax.c │ │ ├── cblas_izamax.c │ │ ├── cblas_sasum.c │ │ ├── cblas_saxpy.c │ │ ├── cblas_scasum.c │ │ ├── cblas_scnrm2.c │ │ ├── cblas_scopy.c │ │ ├── cblas_sdot.c │ │ ├── cblas_sdsdot.c │ │ ├── cblas_sgbmv.c │ │ ├── cblas_sgemm.c │ │ ├── cblas_sgemv.c │ │ ├── cblas_sger.c │ │ ├── cblas_snrm2.c │ │ ├── cblas_srot.c │ │ ├── cblas_srotg.c │ │ ├── cblas_srotm.c │ │ ├── cblas_srotmg.c │ │ ├── cblas_ssbmv.c │ │ ├── cblas_sscal.c │ │ ├── cblas_sspmv.c │ │ ├── cblas_sspr.c │ │ ├── cblas_sspr2.c │ │ ├── cblas_sswap.c │ │ ├── cblas_ssymm.c │ │ ├── cblas_ssymv.c │ │ ├── cblas_ssyr.c │ │ ├── cblas_ssyr2.c │ │ ├── cblas_ssyr2k.c │ │ ├── cblas_ssyrk.c │ │ ├── cblas_stbmv.c │ │ ├── cblas_stbsv.c │ │ ├── cblas_stpmv.c │ │ ├── cblas_stpsv.c │ │ ├── cblas_strmm.c │ │ ├── cblas_strmv.c │ │ ├── cblas_strsm.c │ │ ├── cblas_strsv.c │ │ ├── cblas_xerbla.c │ │ ├── cblas_zaxpy.c │ │ ├── cblas_zcopy.c │ │ ├── cblas_zdotc_sub.c │ │ ├── cblas_zdotu_sub.c │ │ ├── cblas_zdscal.c │ │ ├── cblas_zgbmv.c │ │ ├── cblas_zgemm.c │ │ ├── cblas_zgemv.c │ │ ├── cblas_zgerc.c │ │ ├── cblas_zgeru.c │ │ ├── cblas_zhbmv.c │ │ ├── cblas_zhemm.c │ │ ├── cblas_zhemv.c │ │ ├── cblas_zher.c │ │ ├── cblas_zher2.c │ │ ├── cblas_zher2k.c │ │ ├── cblas_zherk.c │ │ ├── cblas_zhpmv.c │ │ ├── cblas_zhpr.c │ │ ├── cblas_zhpr2.c │ │ ├── cblas_zscal.c │ │ ├── cblas_zswap.c │ │ ├── cblas_zsymm.c │ │ ├── cblas_zsyr2k.c │ │ ├── cblas_zsyrk.c │ │ ├── cblas_ztbmv.c │ │ ├── cblas_ztbsv.c │ │ ├── cblas_ztpmv.c │ │ ├── cblas_ztpsv.c │ │ ├── cblas_ztrmm.c │ │ ├── cblas_ztrmv.c │ │ ├── cblas_ztrsm.c │ │ ├── cblas_ztrsv.c │ │ └── xerbla.c │ ├── Eigen │ │ ├── Core │ │ ├── Jacobi │ │ ├── blas │ │ │ ├── BandTriangularSolver.h │ │ │ ├── GeneralRank1Update.h │ │ │ ├── PackedSelfadjointProduct.h │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ ├── PackedTriangularSolverVector.h │ │ │ ├── Rank2Update.h │ │ │ ├── common.h │ │ │ ├── level1_cplx_impl.h │ │ │ ├── level1_impl.h │ │ │ ├── level1_real_impl.h │ │ │ ├── level2_cplx_impl.h │ │ │ ├── level2_impl.h │ │ │ ├── level2_real_impl.h │ │ │ ├── level3_impl.h │ │ │ └── xerbla.cpp │ │ └── src │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommaInitializer.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── Flagged.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Functors.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── ProductBase.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── SolveTriangular.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AltiVec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Default │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ └── SSE │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── products │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Jacobi │ │ │ ├── CMakeLists.txt │ │ │ └── Jacobi.h │ │ │ ├── misc │ │ │ └── blas.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── cassowary-0.60 │ │ ├── ANNOUNCE │ │ ├── ANNOUNCE.in │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── COPYING.LGPL │ │ ├── ChangeLog │ │ ├── GTL.h.patch │ │ ├── GTL.spec.in │ │ ├── IMPORTANT │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── THANKS │ │ ├── ThirdPartyNotices.txt │ │ ├── aclocal.m4 │ │ ├── c++ │ │ │ ├── Cassowary.h │ │ │ ├── Cl.h │ │ │ ├── ClAbstractVariable.cc │ │ │ ├── ClAbstractVariable.h │ │ │ ├── ClBug0.cc │ │ │ ├── ClBug1.cc │ │ │ ├── ClBug2.cc │ │ │ ├── ClC.cc │ │ │ ├── ClC.h │ │ │ ├── ClCTest.c │ │ │ ├── ClConstraint.cc │ │ │ ├── ClConstraint.h │ │ │ ├── ClConstraintHash.h │ │ │ ├── ClDummyVariable.cc │ │ │ ├── ClDummyVariable.h │ │ │ ├── ClEditConstraint.h │ │ │ ├── ClEditOrStayConstraint.h │ │ │ ├── ClErrors.h │ │ │ ├── ClFDBinaryOneWayConstraint.cc │ │ │ ├── ClFDBinaryOneWayConstraint.h │ │ │ ├── ClFDConnectorVariable.cc │ │ │ ├── ClFDConnectorVariable.h │ │ │ ├── ClFDConstraint.h │ │ │ ├── ClFDSolver.cc │ │ │ ├── ClFDSolver.h │ │ │ ├── ClFDVariable.cc │ │ │ ├── ClFDVariable.h │ │ │ ├── ClFloatVariable.cc │ │ │ ├── ClFloatVariable.h │ │ │ ├── ClLinearConstraint.h │ │ │ ├── ClLinearEquation.cc │ │ │ ├── ClLinearEquation.h │ │ │ ├── ClLinearExpression.cc │ │ │ ├── ClLinearExpression.h │ │ │ ├── ClLinearExpression_fwd.h │ │ │ ├── ClLinearInequality.h │ │ │ ├── ClMap.h │ │ │ ├── ClObjectiveVariable.h │ │ │ ├── ClPoint.h │ │ │ ├── ClReader-lex.cc │ │ │ ├── ClReader.h │ │ │ ├── ClReader.l │ │ │ ├── ClReader.y │ │ │ ├── ClSet.h │ │ │ ├── ClSimplexSolver.cc │ │ │ ├── ClSimplexSolver.h │ │ │ ├── ClSlackVariable.cc │ │ │ ├── ClSlackVariable.h │ │ │ ├── ClSolver.cc │ │ │ ├── ClSolver.h │ │ │ ├── ClStayConstraint.h │ │ │ ├── ClStrength.cc │ │ │ ├── ClStrength.h │ │ │ ├── ClSymbolicWeight.cc │ │ │ ├── ClSymbolicWeight.h │ │ │ ├── ClTableau.cc │ │ │ ├── ClTableau.h │ │ │ ├── ClTests.cc │ │ │ ├── ClTypedefs.h │ │ │ ├── ClVariable.cc │ │ │ ├── ClVariable.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── cl_auto_ptr.h │ │ │ ├── config-inline.h │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── debug.h │ │ │ ├── stamp-h.in │ │ │ └── timer.h │ │ ├── cassowary-0.60-Windows.sln │ │ ├── cassowary-0.60-Windows.vcxproj │ │ ├── cassowary-0.60-Windows.vcxproj.filters │ │ ├── cassowary-0.60-Windows8.1.vcxproj │ │ ├── cassowary-0.60-Windows8.1.vcxproj.filters │ │ ├── cassowary-0.60-WindowsPhone8.1.vcxproj │ │ ├── cassowary-0.60-WindowsPhone8.1.vcxproj.filters │ │ ├── cassowary-config.in │ │ ├── cassowary-nofd.spec2 │ │ ├── cassowary-nofd.spec2.in │ │ ├── cassowary.spec │ │ ├── cassowary.spec.in │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── docs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cassowary-tr.pdf │ │ │ └── cassowary-tr.ps.gz │ │ ├── guile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── cassowary_scm.cc │ │ │ ├── cassowary_scm.h │ │ │ ├── cassowary_scm.hpp │ │ │ ├── cl-snarf.h │ │ │ ├── cltests.scm │ │ │ └── doc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cassowary_scm-procedures.txt │ │ │ │ ├── cassowary_scm-variables.txt │ │ │ │ └── cassowary_scm.sgml │ │ ├── install-sh │ │ ├── java │ │ │ ├── CL.java │ │ │ ├── ClAbstractVariable.java │ │ │ ├── ClConstraint.java │ │ │ ├── ClDouble.java │ │ │ ├── ClDummyVariable.java │ │ │ ├── ClEditConstraint.java │ │ │ ├── ClEditInfo.java │ │ │ ├── ClEditOrStayConstraint.java │ │ │ ├── ClLinearConstraint.java │ │ │ ├── ClLinearEquation.java │ │ │ ├── ClLinearExpression.java │ │ │ ├── ClLinearInequality.java │ │ │ ├── ClObjectiveVariable.java │ │ │ ├── ClParseTest.java │ │ │ ├── ClPoint.java │ │ │ ├── ClReader.cup │ │ │ ├── ClReader.lex │ │ │ ├── ClSimplexSolver.java │ │ │ ├── ClSlackVariable.java │ │ │ ├── ClStayConstraint.java │ │ │ ├── ClStrength.java │ │ │ ├── ClSymbolicWeight.java │ │ │ ├── ClTableau.java │ │ │ ├── ClTests.java │ │ │ ├── ClVariable.java │ │ │ ├── ExCLConstraintNotFound.java │ │ │ ├── ExCLError.java │ │ │ ├── ExCLInternalError.java │ │ │ ├── ExCLNonlinearExpression.java │ │ │ ├── ExCLNotEnoughStays.java │ │ │ ├── ExCLRequiredFailure.java │ │ │ ├── ExCLTooDifficult.java │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── Set.java │ │ │ ├── TODO │ │ │ ├── Timer.java │ │ │ ├── Yylex.java │ │ │ ├── cda │ │ │ │ ├── Component │ │ │ │ │ ├── CDA_G.java │ │ │ │ │ ├── CircleCC.java │ │ │ │ │ ├── ConstrComponent.java │ │ │ │ │ ├── EditConstantList.java │ │ │ │ │ ├── LineCC.java │ │ │ │ │ ├── MidpointLineCC.java │ │ │ │ │ ├── RectangleCC.java │ │ │ │ │ └── SelPoint.java │ │ │ │ ├── Constraint │ │ │ │ │ ├── AboveConstraint.java │ │ │ │ │ ├── AdjacencyConstraint.java │ │ │ │ │ ├── AlignmentConstraint.java │ │ │ │ │ ├── AnchorConstraint.java │ │ │ │ │ ├── BelowConstraint.java │ │ │ │ │ ├── ColocationConstraint.java │ │ │ │ │ ├── Constraint.java │ │ │ │ │ ├── LeftOfConstraint.java │ │ │ │ │ └── RightOfConstraint.java │ │ │ │ ├── Interface │ │ │ │ │ ├── ConstraintBtns.java │ │ │ │ │ ├── ConstraintBtnsActionListener.java │ │ │ │ │ ├── DPKeyListener.java │ │ │ │ │ ├── DPMouseMotionListener.java │ │ │ │ │ ├── DrawPanel.java │ │ │ │ │ ├── ImageButton.java │ │ │ │ │ ├── ImageButtonImageObserver.java │ │ │ │ │ ├── MainPanel.java │ │ │ │ │ ├── MainPanelComponentListener.java │ │ │ │ │ ├── PlaceBtns.java │ │ │ │ │ └── PlaceBtnsActionListener.java │ │ │ │ ├── Main │ │ │ │ │ ├── Main.java │ │ │ │ │ └── MainComponentListener.java │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── classes │ │ │ │ │ ├── Above.gif │ │ │ │ │ ├── Anchor.gif │ │ │ │ │ ├── Below.gif │ │ │ │ │ ├── Blank.gif │ │ │ │ │ ├── BottomAlign.gif │ │ │ │ │ ├── CircleCC.gif │ │ │ │ │ ├── Colocation.gif │ │ │ │ │ ├── LeftAlign.gif │ │ │ │ │ ├── LeftOf.gif │ │ │ │ │ ├── LineCC.gif │ │ │ │ │ ├── MidLineCC.gif │ │ │ │ │ ├── RectangleCC.gif │ │ │ │ │ ├── RightAlign.gif │ │ │ │ │ ├── RightOf.gif │ │ │ │ │ ├── TopAlign.gif │ │ │ │ │ └── run.html │ │ │ ├── demos │ │ │ │ ├── DraggableBox.java │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── QuadDemo.java │ │ │ │ └── quaddemo.htm │ │ │ ├── parser.java │ │ │ └── sym.java │ │ ├── ltconfig │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── scripts │ │ │ └── recreate-symlinks │ │ └── smalltalk │ │ │ ├── A991206.dat │ │ │ ├── ClDemos.app │ │ │ ├── ClKernel.app │ │ │ ├── ClTests.app │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── README │ ├── libdispatch │ │ ├── .gitignore │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── autogen.sh │ │ ├── build │ │ │ ├── libdispatch.sln │ │ │ ├── libdispatch.vcxproj │ │ │ └── project.json │ │ ├── config │ │ │ └── config.h │ │ ├── configure.ac │ │ ├── dispatch │ │ │ ├── Makefile.am │ │ │ ├── atomic.h │ │ │ ├── base.h │ │ │ ├── benchmark.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── interop.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ └── time.h │ │ ├── drpizza_fork.txt │ │ ├── libdispatch.plist │ │ ├── libdispatch.xcodeproj │ │ │ └── project.pbxproj │ │ ├── m4 │ │ │ ├── atomic.m4 │ │ │ ├── blocks.m4 │ │ │ ├── pkg.m4 │ │ │ └── private-extern.m4 │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── dispatch.3 │ │ │ ├── dispatch_after.3 │ │ │ ├── dispatch_api.3 │ │ │ ├── dispatch_apply.3 │ │ │ ├── dispatch_async.3 │ │ │ ├── dispatch_benchmark.3 │ │ │ ├── dispatch_group_create.3 │ │ │ ├── dispatch_object.3 │ │ │ ├── dispatch_once.3 │ │ │ ├── dispatch_queue_create.3 │ │ │ ├── dispatch_semaphore_create.3 │ │ │ ├── dispatch_source_create.3 │ │ │ └── dispatch_time.3 │ │ ├── platform │ │ │ ├── darwin │ │ │ │ └── platform.h │ │ │ ├── platform.h │ │ │ └── windows │ │ │ │ ├── inttypes.h │ │ │ │ ├── libkern │ │ │ │ ├── OSAtomic.c │ │ │ │ └── OSAtomic.h │ │ │ │ ├── netinet │ │ │ │ └── in.h │ │ │ │ ├── platform.c │ │ │ │ ├── platform.h │ │ │ │ ├── pthread.c │ │ │ │ ├── pthread.h │ │ │ │ ├── pthread_workqueue.c │ │ │ │ ├── pthread_workqueue.h │ │ │ │ ├── pthread_workqueue_winrt.cpp │ │ │ │ ├── semaphore.c │ │ │ │ ├── semaphore.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stdio.c │ │ │ │ ├── stdio.h │ │ │ │ ├── strings.c │ │ │ │ ├── strings.h │ │ │ │ ├── sys │ │ │ │ ├── event.h │ │ │ │ ├── mount.h │ │ │ │ ├── queue.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── time.c │ │ │ │ └── time.h │ │ │ │ ├── syslog.h │ │ │ │ ├── time.c │ │ │ │ ├── time.h │ │ │ │ ├── unistd.c │ │ │ │ └── unistd.h │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── apply.c │ │ │ ├── benchmark.c │ │ │ ├── continuation_cache.c │ │ │ ├── continuation_cache.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── hw_shims.h │ │ │ ├── internal.h │ │ │ ├── interop.c │ │ │ ├── interop_internal.h │ │ │ ├── kevent_internal.h │ │ │ ├── legacy.c │ │ │ ├── legacy.h │ │ │ ├── object.c │ │ │ ├── object_internal.h │ │ │ ├── once.c │ │ │ ├── os_shims.h │ │ │ ├── private.h │ │ │ ├── protocol.defs │ │ │ ├── queue.c │ │ │ ├── queue_internal.h │ │ │ ├── queue_kevent.c │ │ │ ├── queue_private.h │ │ │ ├── semaphore.c │ │ │ ├── semaphore_internal.h │ │ │ ├── shims │ │ │ │ ├── getprogname.h │ │ │ │ ├── mach.c │ │ │ │ ├── malloc_zone.h │ │ │ │ ├── perfmon.h │ │ │ │ ├── time.c │ │ │ │ ├── time.h │ │ │ │ ├── tsd.c │ │ │ │ └── tsd.h │ │ │ ├── source.c │ │ │ ├── source_internal.h │ │ │ ├── source_kevent.c │ │ │ ├── source_private.h │ │ │ └── time.c │ │ └── testing │ │ │ ├── Makefile.am │ │ │ ├── Makefile.darwin │ │ │ ├── bench.mm │ │ │ ├── dispatch_after.c │ │ │ ├── dispatch_api.c │ │ │ ├── dispatch_apply.c │ │ │ ├── dispatch_c99.c │ │ │ ├── dispatch_cascade.c │ │ │ ├── dispatch_cffd.c │ │ │ ├── dispatch_debug.c │ │ │ ├── dispatch_drift.c │ │ │ ├── dispatch_group.c │ │ │ ├── dispatch_pingpong.c │ │ │ ├── dispatch_plusplus.cpp │ │ │ ├── dispatch_priority.c │ │ │ ├── dispatch_proc.c │ │ │ ├── dispatch_read.c │ │ │ ├── dispatch_readsync.c │ │ │ ├── dispatch_sema.c │ │ │ ├── dispatch_starfish.c │ │ │ ├── dispatch_test.c │ │ │ ├── dispatch_test.h │ │ │ ├── dispatch_timer_bit31.c │ │ │ ├── dispatch_timer_bit63.c │ │ │ ├── dispatch_timer_set_time.c │ │ │ ├── fd_stress.c │ │ │ ├── func.c │ │ │ ├── harness.c │ │ │ ├── leaks-wrapper │ │ │ ├── nsoperation.m │ │ │ ├── os_shims.h │ │ │ ├── queue_finalizer.c │ │ │ ├── shims │ │ │ ├── arc4random.c │ │ │ ├── arc4random.h │ │ │ ├── asprintf.c │ │ │ ├── asprintf.h │ │ │ ├── fgetln.c │ │ │ └── fgetln.h │ │ │ └── summarize.c │ ├── libjpeg │ │ ├── .gitignore │ │ ├── build │ │ │ ├── libjpeg.sln │ │ │ ├── libjpegWin10 │ │ │ │ ├── libjpeg.vcxproj │ │ │ │ └── libjpeg.vcxproj.filters │ │ │ └── libjpegWin8.1 │ │ │ │ ├── libjpegWin8.1.Shared │ │ │ │ ├── libjpegWin8.1.Shared.vcxitems │ │ │ │ └── libjpegWin8.1.Shared.vcxitems.filters │ │ │ │ ├── libjpegWin8.1.Windows │ │ │ │ ├── libjpegWin8.1.Windows.vcxproj │ │ │ │ └── libjpegWin8.1.Windows.vcxproj.filters │ │ │ │ └── libjpegWin8.1.WindowsPhone │ │ │ │ ├── libjpegWin8.1.WindowsPhone.vcxproj │ │ │ │ └── libjpegWin8.1.WindowsPhone.vcxproj.filters │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── ar-lib │ │ │ ├── cderror.h │ │ │ ├── cdjpeg.c │ │ │ ├── cdjpeg.h │ │ │ ├── cjpeg.1 │ │ │ ├── cjpeg.c │ │ │ ├── ckconfig.c │ │ │ ├── coderules.txt │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── djpeg.1 │ │ │ ├── djpeg.c │ │ │ ├── example.c │ │ │ ├── filelist.txt │ │ │ ├── install-sh │ │ │ ├── install.txt │ │ │ ├── jaricom.c │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jcarith.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.bcc │ │ │ ├── jconfig.cfg │ │ │ ├── jconfig.dj │ │ │ ├── jconfig.h │ │ │ ├── jconfig.mac │ │ │ ├── jconfig.manx │ │ │ ├── jconfig.mc6 │ │ │ ├── jconfig.sas │ │ │ ├── jconfig.st │ │ │ ├── jconfig.txt │ │ │ ├── jconfig.vc │ │ │ ├── jconfig.vms │ │ │ ├── jconfig.wat │ │ │ ├── jcparam.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdarith.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdosaobj.txt │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jinclude.h │ │ │ ├── jmemansi.c │ │ │ ├── jmemdos.c │ │ │ ├── jmemdosa.asm │ │ │ ├── jmemmac.c │ │ │ ├── jmemmgr.c │ │ │ ├── jmemname.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jpegtran.1 │ │ │ ├── jpegtran.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── libjpeg.map │ │ │ ├── libjpeg.txt │ │ │ ├── ltmain.sh │ │ │ ├── makcjpeg.st │ │ │ ├── makdjpeg.st │ │ │ ├── makeadsw.vc6 │ │ │ ├── makeasln.v10 │ │ │ ├── makecdep.vc6 │ │ │ ├── makecdsp.vc6 │ │ │ ├── makecfil.v10 │ │ │ ├── makecmak.vc6 │ │ │ ├── makecvcx.v10 │ │ │ ├── makeddep.vc6 │ │ │ ├── makeddsp.vc6 │ │ │ ├── makedfil.v10 │ │ │ ├── makedmak.vc6 │ │ │ ├── makedvcx.v10 │ │ │ ├── makefile.ansi │ │ │ ├── makefile.bcc │ │ │ ├── makefile.dj │ │ │ ├── makefile.manx │ │ │ ├── makefile.mc6 │ │ │ ├── makefile.mms │ │ │ ├── makefile.sas │ │ │ ├── makefile.unix │ │ │ ├── makefile.vc │ │ │ ├── makefile.vms │ │ │ ├── makefile.wat │ │ │ ├── makejdep.vc6 │ │ │ ├── makejdsp.vc6 │ │ │ ├── makejdsw.vc6 │ │ │ ├── makejfil.v10 │ │ │ ├── makejmak.vc6 │ │ │ ├── makejsln.v10 │ │ │ ├── makejvcx.v10 │ │ │ ├── makeproj.mac │ │ │ ├── makerdep.vc6 │ │ │ ├── makerdsp.vc6 │ │ │ ├── makerfil.v10 │ │ │ ├── makermak.vc6 │ │ │ ├── makervcx.v10 │ │ │ ├── maketdep.vc6 │ │ │ ├── maketdsp.vc6 │ │ │ ├── maketfil.v10 │ │ │ ├── maketmak.vc6 │ │ │ ├── maketvcx.v10 │ │ │ ├── makewdep.vc6 │ │ │ ├── makewdsp.vc6 │ │ │ ├── makewfil.v10 │ │ │ ├── makewmak.vc6 │ │ │ ├── makewvcx.v10 │ │ │ ├── makljpeg.st │ │ │ ├── maktjpeg.st │ │ │ ├── makvms.opt │ │ │ ├── missing │ │ │ ├── rdbmp.c │ │ │ ├── rdcolmap.c │ │ │ ├── rdgif.c │ │ │ ├── rdjpgcom.1 │ │ │ ├── rdjpgcom.c │ │ │ ├── rdppm.c │ │ │ ├── rdrle.c │ │ │ ├── rdswitch.c │ │ │ ├── rdtarga.c │ │ │ ├── readme.dos │ │ │ ├── structure.txt │ │ │ ├── testimg.bmp │ │ │ ├── testimg.jpg │ │ │ ├── testimg.ppm │ │ │ ├── testimgp.jpg │ │ │ ├── testorig.jpg │ │ │ ├── testprog.jpg │ │ │ ├── transupp.c │ │ │ ├── transupp.h │ │ │ ├── usage.txt │ │ │ ├── wizard.txt │ │ │ ├── wrbmp.c │ │ │ ├── wrgif.c │ │ │ ├── wrjpgcom.1 │ │ │ ├── wrjpgcom.c │ │ │ ├── wrppm.c │ │ │ ├── wrrle.c │ │ │ └── wrtarga.c │ ├── libxml2legacy │ │ ├── .gitignore │ │ ├── Android.mk │ │ ├── CleanSpec.mk │ │ ├── Copyright │ │ ├── DOCBparser.c │ │ ├── HTMLparser.c │ │ ├── HTMLtree.c │ │ ├── MODULE_LICENSE_MIT │ │ ├── NOTICE │ │ ├── SAX.c │ │ ├── SAX2.c │ │ ├── Win10 │ │ │ ├── libxml2.Win10.vcxproj │ │ │ └── libxml2.Win10.vcxproj.filters │ │ ├── Win8.1 │ │ │ ├── Win8.1.Shared │ │ │ │ ├── Win8.1.Shared.vcxitems │ │ │ │ └── Win8.1.Shared.vcxitems.filters │ │ │ ├── Win8.1.Windows │ │ │ │ ├── libxml2.Win8.1.Windows.vcxproj │ │ │ │ └── libxml2.Win8.1.Windows.vcxproj.filters │ │ │ └── Win8.1.WindowsPhone │ │ │ │ ├── libxml2.Win8.1.WindowsPhone.vcxproj │ │ │ │ └── libxml2.Win8.1.WindowsPhone.vcxproj.filters │ │ ├── c14n.c │ │ ├── catalog.c │ │ ├── chvalid.c │ │ ├── config.h │ │ ├── debugXML.c │ │ ├── dict.c │ │ ├── elfgcchack.h │ │ ├── encoding.c │ │ ├── entities.c │ │ ├── error.c │ │ ├── globals.c │ │ ├── hash.c │ │ ├── include │ │ │ └── libxml │ │ │ │ ├── DOCBparser.h │ │ │ │ ├── HTMLparser.h │ │ │ │ ├── HTMLtree.h │ │ │ │ ├── SAX.h │ │ │ │ ├── SAX2.h │ │ │ │ ├── c14n.h │ │ │ │ ├── catalog.h │ │ │ │ ├── chvalid.h │ │ │ │ ├── debugXML.h │ │ │ │ ├── dict.h │ │ │ │ ├── encoding.h │ │ │ │ ├── entities.h │ │ │ │ ├── globals.h │ │ │ │ ├── hash.h │ │ │ │ ├── list.h │ │ │ │ ├── nanoftp.h │ │ │ │ ├── nanohttp.h │ │ │ │ ├── parser.h │ │ │ │ ├── parserInternals.h │ │ │ │ ├── pattern.h │ │ │ │ ├── relaxng.h │ │ │ │ ├── schemasInternals.h │ │ │ │ ├── schematron.h │ │ │ │ ├── threads.h │ │ │ │ ├── tree.h │ │ │ │ ├── uri.h │ │ │ │ ├── valid.h │ │ │ │ ├── xinclude.h │ │ │ │ ├── xlink.h │ │ │ │ ├── xmlIO.h │ │ │ │ ├── xmlautomata.h │ │ │ │ ├── xmlerror.h │ │ │ │ ├── xmlexports.h │ │ │ │ ├── xmlmemory.h │ │ │ │ ├── xmlmodule.h │ │ │ │ ├── xmlreader.h │ │ │ │ ├── xmlregexp.h │ │ │ │ ├── xmlsave.h │ │ │ │ ├── xmlschemas.h │ │ │ │ ├── xmlschemastypes.h │ │ │ │ ├── xmlstring.h │ │ │ │ ├── xmlunicode.h │ │ │ │ ├── xmlversion.h │ │ │ │ ├── xmlwriter.h │ │ │ │ ├── xpath.h │ │ │ │ ├── xpathInternals.h │ │ │ │ └── xpointer.h │ │ ├── legacy.c │ │ ├── libxml.h │ │ ├── libxml2.sln │ │ ├── list.c │ │ ├── nanoftp.c │ │ ├── nanohttp.c │ │ ├── parser.c │ │ ├── parserInternals.c │ │ ├── patches │ │ │ ├── 0001-Add-ICU-support-for-libxml.patch │ │ │ └── XPath_freeing_error.patch │ │ ├── pattern.c │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── relaxng.c │ │ ├── schematron.c │ │ ├── targetver.h │ │ ├── threads.c │ │ ├── tree.c │ │ ├── trio.c │ │ ├── trio.h │ │ ├── triodef.h │ │ ├── trionan.c │ │ ├── trionan.h │ │ ├── triop.h │ │ ├── triostr.c │ │ ├── triostr.h │ │ ├── uri.c │ │ ├── valid.c │ │ ├── xinclude.c │ │ ├── xlink.c │ │ ├── xmlIO.c │ │ ├── xmlcatalog.c │ │ ├── xmllint.c │ │ ├── xmlmemory.c │ │ ├── xmlmodule.c │ │ ├── xmlreader.c │ │ ├── xmlregexp.c │ │ ├── xmlsave.c │ │ ├── xmlschemas.c │ │ ├── xmlschemastypes.c │ │ ├── xmlstring.c │ │ ├── xmlunicode.c │ │ ├── xmlwriter.c │ │ ├── xpath.c │ │ └── xpointer.c │ ├── openal-soft-winphone │ │ ├── .gitignore │ │ ├── Alc │ │ │ ├── ALc.c │ │ │ ├── ALc_cpp11.cpp │ │ │ ├── ALu.c │ │ │ ├── alcConfig.c │ │ │ ├── alcDedicated.c │ │ │ ├── alcEcho.c │ │ │ ├── alcModulator.c │ │ │ ├── alcReverb.c │ │ │ ├── alcRing.c │ │ │ ├── alcThread.c │ │ │ ├── alcThreadCpp11.cpp │ │ │ ├── backends │ │ │ │ ├── alsa.c │ │ │ │ ├── android.c │ │ │ │ ├── coreaudio.c │ │ │ │ ├── dsound.c │ │ │ │ ├── loopback.c │ │ │ │ ├── mmdevapi.c │ │ │ │ ├── null.c │ │ │ │ ├── opensl.c │ │ │ │ ├── oss.c │ │ │ │ ├── portaudio.c │ │ │ │ ├── pulseaudio.c │ │ │ │ ├── sndio.c │ │ │ │ ├── solaris.c │ │ │ │ ├── thread_msg_queue_cpp11.cpp │ │ │ │ ├── thread_msg_queue_cpp11.h │ │ │ │ ├── wasapi_winrt_wp8.cpp │ │ │ │ ├── wave.c │ │ │ │ ├── winmm.c │ │ │ │ └── xaudio2.cpp │ │ │ ├── bs2b.c │ │ │ ├── helpers.c │ │ │ ├── hrtf.c │ │ │ ├── hrtf_tables.inc │ │ │ ├── mixer.c │ │ │ └── panning.c │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── OpenAL32 │ │ │ ├── Include │ │ │ │ ├── alAuxEffectSlot.h │ │ │ │ ├── alBuffer.h │ │ │ │ ├── alEffect.h │ │ │ │ ├── alError.h │ │ │ │ ├── alFilter.h │ │ │ │ ├── alListener.h │ │ │ │ ├── alMain.h │ │ │ │ ├── alSource.h │ │ │ │ ├── alState.h │ │ │ │ ├── alThunk.h │ │ │ │ ├── alu.h │ │ │ │ └── bs2b.h │ │ │ ├── alAuxEffectSlot.c │ │ │ ├── alBuffer.c │ │ │ ├── alEffect.c │ │ │ ├── alError.c │ │ │ ├── alExtension.c │ │ │ ├── alFilter.c │ │ │ ├── alListener.c │ │ │ ├── alSource.c │ │ │ ├── alState.c │ │ │ └── alThunk.c │ │ ├── README.md │ │ ├── XCompile.txt │ │ ├── alsoftrc.sample │ │ ├── cmake │ │ │ ├── CheckCCompilerFlag.cmake │ │ │ └── CheckSharedFunctionExists.cmake │ │ ├── config.h.in │ │ ├── examples │ │ │ ├── DST-10Class.WAV │ │ │ ├── alSimple3DSound.cpp │ │ │ ├── alSimple3DSound.h │ │ │ ├── alffmpeg.c │ │ │ ├── alffmpeg.h │ │ │ ├── alhelpers.c │ │ │ ├── alhelpers.h │ │ │ └── alstream.c │ │ ├── include │ │ │ └── AL │ │ │ │ ├── al.h │ │ │ │ ├── alc.h │ │ │ │ ├── alext.h │ │ │ │ ├── efx-creative.h │ │ │ │ ├── efx-presets.h │ │ │ │ └── efx.h │ │ ├── openal.pc.in │ │ ├── utils │ │ │ └── openal-info.c │ │ ├── winrt.vs2012 │ │ │ ├── OpenAL.ALL.sln │ │ │ ├── OpenAL.winrt.sln │ │ │ ├── OpenAL.winrt │ │ │ │ ├── OpenAL.winrt.vcxproj │ │ │ │ └── OpenAL.winrt.vcxproj.filters │ │ │ ├── OpenAL.wp8.sln │ │ │ ├── OpenAL.wp8 │ │ │ │ ├── OpenAL.wp8.vcxproj │ │ │ │ └── OpenAL.wp8.vcxproj.filters │ │ │ ├── config.h │ │ │ ├── example.winrt │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── BasicTimer.h │ │ │ │ ├── CubeRenderer.cpp │ │ │ │ ├── CubeRenderer.h │ │ │ │ ├── Direct3DBase.cpp │ │ │ │ ├── Direct3DBase.h │ │ │ │ ├── DirectXHelper.h │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── SimplePixelShader.hlsl │ │ │ │ ├── SimpleVertexShader.hlsl │ │ │ │ ├── example.winrt.cpp │ │ │ │ ├── example.winrt.h │ │ │ │ ├── example.winrt.vcxproj │ │ │ │ ├── example.winrt.vcxproj.filters │ │ │ │ ├── example.winrt_TemporaryKey.pfx │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ └── example.wp8 │ │ │ │ ├── Assets │ │ │ │ ├── AlignmentGrid.png │ │ │ │ ├── ApplicationIcon.png │ │ │ │ └── Tiles │ │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ │ └── IconicTileSmall.png │ │ │ │ ├── BasicTimer.h │ │ │ │ ├── CubeRenderer.cpp │ │ │ │ ├── CubeRenderer.h │ │ │ │ ├── Direct3DBase.cpp │ │ │ │ ├── Direct3DBase.h │ │ │ │ ├── DirectXHelper.h │ │ │ │ ├── SimplePixelShader.hlsl │ │ │ │ ├── SimpleVertexShader.hlsl │ │ │ │ ├── WMAppManifest.xml │ │ │ │ ├── example.wp8.cpp │ │ │ │ ├── example.wp8.h │ │ │ │ ├── example.wp8.vcxproj │ │ │ │ ├── example.wp8.vcxproj.filters │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── winrt.vs2013 │ │ │ ├── winrt_and_wp_v8.0 │ │ │ │ ├── OpenAL.winrt │ │ │ │ │ ├── OpenAL.winrt.vcxproj │ │ │ │ │ └── OpenAL.winrt.vcxproj.filters │ │ │ │ ├── OpenAL.wp8 │ │ │ │ │ ├── OpenAL.wp8.vcxproj │ │ │ │ │ └── OpenAL.wp8.vcxproj.filters │ │ │ │ ├── OpenAL_winsdk8.0.sln │ │ │ │ ├── config.h │ │ │ │ ├── example.winrt │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── BasicTimer.h │ │ │ │ │ ├── CubeRenderer.cpp │ │ │ │ │ ├── CubeRenderer.h │ │ │ │ │ ├── Direct3DBase.cpp │ │ │ │ │ ├── Direct3DBase.h │ │ │ │ │ ├── DirectXHelper.h │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ ├── SimplePixelShader.hlsl │ │ │ │ │ ├── SimpleVertexShader.hlsl │ │ │ │ │ ├── example.winrt.cpp │ │ │ │ │ ├── example.winrt.h │ │ │ │ │ ├── example.winrt.vcxproj │ │ │ │ │ ├── example.winrt.vcxproj.filters │ │ │ │ │ ├── example.winrt_TemporaryKey.pfx │ │ │ │ │ ├── pch.cpp │ │ │ │ │ └── pch.h │ │ │ │ └── example.wp8 │ │ │ │ │ ├── Assets │ │ │ │ │ ├── AlignmentGrid.png │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ └── Tiles │ │ │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ │ │ └── IconicTileSmall.png │ │ │ │ │ ├── BasicTimer.h │ │ │ │ │ ├── CubeRenderer.cpp │ │ │ │ │ ├── CubeRenderer.h │ │ │ │ │ ├── Direct3DBase.cpp │ │ │ │ │ ├── Direct3DBase.h │ │ │ │ │ ├── DirectXHelper.h │ │ │ │ │ ├── SimplePixelShader.hlsl │ │ │ │ │ ├── SimpleVertexShader.hlsl │ │ │ │ │ ├── WMAppManifest.xml │ │ │ │ │ ├── example.wp8.cpp │ │ │ │ │ ├── example.wp8.h │ │ │ │ │ ├── example.wp8.vcxproj │ │ │ │ │ ├── example.wp8.vcxproj.filters │ │ │ │ │ ├── pch.cpp │ │ │ │ │ └── pch.h │ │ │ └── winrt_and_wp_v8.1 │ │ │ │ ├── OpenAL.winrt │ │ │ │ ├── OpenAL.winrt.vcxproj │ │ │ │ └── OpenAL.winrt.vcxproj.filters │ │ │ │ ├── OpenAL.wp8 │ │ │ │ ├── OpenAL.wp8.vcxproj │ │ │ │ └── OpenAL.wp8.vcxproj.filters │ │ │ │ ├── OpenAL_winsdk8.1.sln │ │ │ │ ├── config.h │ │ │ │ └── example_xaml │ │ │ │ ├── example_xaml.Shared │ │ │ │ ├── Common │ │ │ │ │ ├── DeviceResources.cpp │ │ │ │ │ ├── DeviceResources.h │ │ │ │ │ ├── DirectXHelper.h │ │ │ │ │ └── StepTimer.h │ │ │ │ ├── Content │ │ │ │ │ ├── Sample3DSceneRenderer.cpp │ │ │ │ │ ├── Sample3DSceneRenderer.h │ │ │ │ │ ├── SampleFpsTextRenderer.cpp │ │ │ │ │ ├── SampleFpsTextRenderer.h │ │ │ │ │ ├── SamplePixelShader.hlsl │ │ │ │ │ ├── SampleVertexShader.hlsl │ │ │ │ │ └── ShaderStructures.h │ │ │ │ ├── example_xaml.Shared.vcxitems │ │ │ │ ├── example_xaml.Shared.vcxitems.filters │ │ │ │ ├── example_xamlMain.cpp │ │ │ │ ├── example_xamlMain.h │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ │ ├── example_xaml.Windows │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── DirectXPage.xaml │ │ │ │ ├── DirectXPage.xaml.cpp │ │ │ │ ├── DirectXPage.xaml.h │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── example_xaml.Windows.vcxproj │ │ │ │ ├── example_xaml.Windows.vcxproj.filters │ │ │ │ └── example_xaml.Windows_TemporaryKey.pfx │ │ │ │ └── example_xaml.WindowsPhone │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── Logo.scale-240.png │ │ │ │ ├── SmallLogo.scale-240.png │ │ │ │ ├── SplashScreen.scale-240.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ └── WideLogo.scale-240.png │ │ │ │ ├── DirectXPage.xaml │ │ │ │ ├── DirectXPage.xaml.cpp │ │ │ │ ├── DirectXPage.xaml.h │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── example_xaml.WindowsPhone.vcxproj │ │ │ │ └── example_xaml.WindowsPhone.vcxproj.filters │ │ └── winrt.vs2015 │ │ │ ├── OpenAL.sln │ │ │ ├── OpenAL │ │ │ ├── OpenAL.vcxproj │ │ │ └── OpenAL.vcxproj.filters │ │ │ ├── config.h │ │ │ └── example_xaml │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Common │ │ │ ├── DeviceResources.cpp │ │ │ ├── DeviceResources.h │ │ │ ├── DirectXHelper.h │ │ │ └── StepTimer.h │ │ │ ├── Content │ │ │ ├── Sample3DSceneRenderer.cpp │ │ │ ├── Sample3DSceneRenderer.h │ │ │ ├── SampleFpsTextRenderer.cpp │ │ │ ├── SampleFpsTextRenderer.h │ │ │ ├── SamplePixelShader.hlsl │ │ │ ├── SampleVertexShader.hlsl │ │ │ └── ShaderStructures.h │ │ │ ├── DirectXPage.xaml │ │ │ ├── DirectXPage.xaml.cpp │ │ │ ├── DirectXPage.xaml.h │ │ │ ├── Package.appxmanifest │ │ │ ├── example_xaml.vcxproj │ │ │ ├── example_xaml.vcxproj.filters │ │ │ ├── example_xamlMain.cpp │ │ │ ├── example_xamlMain.h │ │ │ ├── example_xaml_TemporaryKey.pfx │ │ │ ├── pch.cpp │ │ │ └── pch.h │ └── tests │ │ ├── EntryPoint.cpp │ │ ├── Framework │ │ └── Framework.cpp │ │ ├── Run-3rdPartylTests.ps1 │ │ └── libDispatch │ │ ├── config │ │ └── config.h │ │ ├── dispatch.m │ │ ├── dispatch_after.m │ │ ├── dispatch_api.m │ │ ├── dispatch_apply.m │ │ ├── dispatch_autorelease.m │ │ ├── dispatch_c99.m │ │ ├── dispatch_cascade.m │ │ ├── dispatch_debug.m │ │ ├── dispatch_drift.m │ │ ├── dispatch_group.m │ │ ├── dispatch_pingpong.m │ │ ├── dispatch_priority.m │ │ ├── dispatch_sema.m │ │ ├── dispatch_starfish.m │ │ ├── dispatch_test.h │ │ ├── dispatch_test.m │ │ ├── dispatch_timer_bit31.m │ │ ├── dispatch_timer_bit63.m │ │ ├── dispatch_timer_set_time.m │ │ ├── libDispatch.UnitTest.sln │ │ ├── libDispatch.UnitTest.vcxproj │ │ └── libDispatch.UnitTest.vcxproj.filters ├── prebuilt │ ├── .gitignore │ ├── ApplicationInsights │ │ ├── ARM │ │ │ └── Release │ │ │ │ ├── AppInsights_Win10-UAP │ │ │ │ ├── AppInsights_Win10-UAP.dll │ │ │ │ ├── AppInsights_Win10-UAP.exp │ │ │ │ ├── AppInsights_Win10-UAP.lib │ │ │ │ ├── AppInsights_Win10-UAP.pdb │ │ │ │ └── AppInsights_Win10_UAP.pri │ │ │ │ └── ApplicationInsights │ │ │ │ ├── ApplicationInsights.dll │ │ │ │ ├── ApplicationInsights.exp │ │ │ │ ├── ApplicationInsights.lib │ │ │ │ ├── ApplicationInsights.pdb │ │ │ │ ├── ApplicationInsights.pri │ │ │ │ └── ApplicationInsights.winmd │ │ └── Win32 │ │ │ └── Release │ │ │ ├── AppInsights_Win10-UAP │ │ │ ├── AppInsights_Win10-UAP.dll │ │ │ ├── AppInsights_Win10-UAP.exp │ │ │ ├── AppInsights_Win10-UAP.iobj │ │ │ ├── AppInsights_Win10-UAP.ipdb │ │ │ ├── AppInsights_Win10-UAP.lib │ │ │ ├── AppInsights_Win10-UAP.pdb │ │ │ └── AppInsights_Win10_UAP.pri │ │ │ └── ApplicationInsights │ │ │ ├── ApplicationInsights.dll │ │ │ ├── ApplicationInsights.exp │ │ │ ├── ApplicationInsights.iobj │ │ │ ├── ApplicationInsights.ipdb │ │ │ ├── ApplicationInsights.lib │ │ │ ├── ApplicationInsights.pdb │ │ │ ├── ApplicationInsights.pri │ │ │ └── ApplicationInsights.winmd │ ├── Universal Windows │ │ ├── ARM │ │ │ ├── ObjCUWPMicrosoftAdvertising.dll │ │ │ ├── ObjCUWPMicrosoftAdvertising.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppExtensions.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppExtensions.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppService.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppService.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppointmentsDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppointmentsDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCalls.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCalls.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCallsBackground.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCallsBackground.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCallsProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCallsProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelChat.dll │ │ │ ├── ObjCUWPWindowsApplicationModelChat.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCommunicationBlocking.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCommunicationBlocking.lib │ │ │ ├── ObjCUWPWindowsApplicationModelContactsDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelContactsDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransfer.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransfer.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDrop.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDrop.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDropCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDropCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferShareTarget.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferShareTarget.lib │ │ │ ├── ObjCUWPWindowsApplicationModelEmailDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelEmailDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecution.dll │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecution.lib │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecutionForeground.dll │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecutionForeground.lib │ │ │ ├── ObjCUWPWindowsApplicationModelLockScreen.dll │ │ │ ├── ObjCUWPWindowsApplicationModelLockScreen.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPayments.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPayments.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPaymentsProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPaymentsProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewHolographic.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewHolographic.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewInkWorkspace.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewInkWorkspace.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewNotes.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewNotes.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResources.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResources.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesManagement.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesManagement.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSearch.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSearch.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSearchCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSearchCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfo.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfo.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfoProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfoProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStoreLicenseManagement.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStoreLicenseManagement.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreview.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreview.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreviewInstallControl.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreviewInstallControl.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivities.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivities.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivitiesCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivitiesCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataAccountsSystemAccess.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataAccountsSystemAccess.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataTasksDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataTasksDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelVoiceCommands.dll │ │ │ ├── ObjCUWPWindowsApplicationModelVoiceCommands.lib │ │ │ ├── ObjCUWPWindowsApplicationModelWallet.dll │ │ │ ├── ObjCUWPWindowsApplicationModelWallet.lib │ │ │ ├── ObjCUWPWindowsApplicationModelWalletSystem.dll │ │ │ ├── ObjCUWPWindowsApplicationModelWalletSystem.lib │ │ │ ├── ObjCUWPWindowsConsolidatedNamespace.dll │ │ │ ├── ObjCUWPWindowsConsolidatedNamespace.lib │ │ │ ├── ObjCUWPWindowsDataHtml.dll │ │ │ ├── ObjCUWPWindowsDataHtml.lib │ │ │ ├── ObjCUWPWindowsDataJson.dll │ │ │ ├── ObjCUWPWindowsDataJson.lib │ │ │ ├── ObjCUWPWindowsDataPdf.dll │ │ │ ├── ObjCUWPWindowsDataPdf.lib │ │ │ ├── ObjCUWPWindowsDataText.dll │ │ │ ├── ObjCUWPWindowsDataText.lib │ │ │ ├── ObjCUWPWindowsDataXmlDom.dll │ │ │ ├── ObjCUWPWindowsDataXmlDom.lib │ │ │ ├── ObjCUWPWindowsDataXmlXsl.dll │ │ │ ├── ObjCUWPWindowsDataXmlXsl.lib │ │ │ ├── ObjCUWPWindowsDevices.dll │ │ │ ├── ObjCUWPWindowsDevices.lib │ │ │ ├── ObjCUWPWindowsDevicesAdc.dll │ │ │ ├── ObjCUWPWindowsDevicesAdc.lib │ │ │ ├── ObjCUWPWindowsDevicesAdcProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesAdcProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesAllJoyn.dll │ │ │ ├── ObjCUWPWindowsDevicesAllJoyn.lib │ │ │ ├── ObjCUWPWindowsDevicesBackground.dll │ │ │ ├── ObjCUWPWindowsDevicesBackground.lib │ │ │ ├── ObjCUWPWindowsDevicesCustom.dll │ │ │ ├── ObjCUWPWindowsDevicesCustom.lib │ │ │ ├── ObjCUWPWindowsDevicesEnumerationPnp.dll │ │ │ ├── ObjCUWPWindowsDevicesEnumerationPnp.lib │ │ │ ├── ObjCUWPWindowsDevicesGeolocation.dll │ │ │ ├── ObjCUWPWindowsDevicesGeolocation.lib │ │ │ ├── ObjCUWPWindowsDevicesGeolocationGeofencing.dll │ │ │ ├── ObjCUWPWindowsDevicesGeolocationGeofencing.lib │ │ │ ├── ObjCUWPWindowsDevicesGpio.dll │ │ │ ├── ObjCUWPWindowsDevicesGpio.lib │ │ │ ├── ObjCUWPWindowsDevicesGpioProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesGpioProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesHaptics.dll │ │ │ ├── ObjCUWPWindowsDevicesHaptics.lib │ │ │ ├── ObjCUWPWindowsDevicesHumanInterfaceDevice.dll │ │ │ ├── ObjCUWPWindowsDevicesHumanInterfaceDevice.lib │ │ │ ├── ObjCUWPWindowsDevicesI2c.dll │ │ │ ├── ObjCUWPWindowsDevicesI2c.lib │ │ │ ├── ObjCUWPWindowsDevicesI2cProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesI2cProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesInput.dll │ │ │ ├── ObjCUWPWindowsDevicesInput.lib │ │ │ ├── ObjCUWPWindowsDevicesLights.dll │ │ │ ├── ObjCUWPWindowsDevicesLights.lib │ │ │ ├── ObjCUWPWindowsDevicesMidi.dll │ │ │ ├── ObjCUWPWindowsDevicesMidi.lib │ │ │ ├── ObjCUWPWindowsDevicesPerception.dll │ │ │ ├── ObjCUWPWindowsDevicesPerception.lib │ │ │ ├── ObjCUWPWindowsDevicesPerceptionProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesPerceptionProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesPointOfService.dll │ │ │ ├── ObjCUWPWindowsDevicesPointOfService.lib │ │ │ ├── ObjCUWPWindowsDevicesPortable.dll │ │ │ ├── ObjCUWPWindowsDevicesPortable.lib │ │ │ ├── ObjCUWPWindowsDevicesPower.dll │ │ │ ├── ObjCUWPWindowsDevicesPower.lib │ │ │ ├── ObjCUWPWindowsDevicesPrinters.dll │ │ │ ├── ObjCUWPWindowsDevicesPrinters.lib │ │ │ ├── ObjCUWPWindowsDevicesPrintersExtensions.dll │ │ │ ├── ObjCUWPWindowsDevicesPrintersExtensions.lib │ │ │ ├── ObjCUWPWindowsDevicesPwm.dll │ │ │ ├── ObjCUWPWindowsDevicesPwm.lib │ │ │ ├── ObjCUWPWindowsDevicesPwmProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesPwmProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesRadios.dll │ │ │ ├── ObjCUWPWindowsDevicesRadios.lib │ │ │ ├── ObjCUWPWindowsDevicesScanners.dll │ │ │ ├── ObjCUWPWindowsDevicesScanners.lib │ │ │ ├── ObjCUWPWindowsDevicesSensors.dll │ │ │ ├── ObjCUWPWindowsDevicesSensors.lib │ │ │ ├── ObjCUWPWindowsDevicesSensorsCustom.dll │ │ │ ├── ObjCUWPWindowsDevicesSensorsCustom.lib │ │ │ ├── ObjCUWPWindowsDevicesSerialCommunication.dll │ │ │ ├── ObjCUWPWindowsDevicesSerialCommunication.lib │ │ │ ├── ObjCUWPWindowsDevicesSmartCards.dll │ │ │ ├── ObjCUWPWindowsDevicesSmartCards.lib │ │ │ ├── ObjCUWPWindowsDevicesSms.dll │ │ │ ├── ObjCUWPWindowsDevicesSms.lib │ │ │ ├── ObjCUWPWindowsDevicesSpi.dll │ │ │ ├── ObjCUWPWindowsDevicesSpi.lib │ │ │ ├── ObjCUWPWindowsDevicesSpiProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesSpiProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesUsb.dll │ │ │ ├── ObjCUWPWindowsDevicesUsb.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFi.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFi.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirect.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirect.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirectServices.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirectServices.lib │ │ │ ├── ObjCUWPWindowsEmbeddedDeviceLockdown.dll │ │ │ ├── ObjCUWPWindowsEmbeddedDeviceLockdown.lib │ │ │ ├── ObjCUWPWindowsFoundation.dll │ │ │ ├── ObjCUWPWindowsFoundation.lib │ │ │ ├── ObjCUWPWindowsFoundationCollections.dll │ │ │ ├── ObjCUWPWindowsFoundationCollections.lib │ │ │ ├── ObjCUWPWindowsFoundationDiagnostics.dll │ │ │ ├── ObjCUWPWindowsFoundationDiagnostics.lib │ │ │ ├── ObjCUWPWindowsFoundationMetadata.dll │ │ │ ├── ObjCUWPWindowsFoundationMetadata.lib │ │ │ ├── ObjCUWPWindowsFoundationNumerics.dll │ │ │ ├── ObjCUWPWindowsFoundationNumerics.lib │ │ │ ├── ObjCUWPWindowsGamingInput.dll │ │ │ ├── ObjCUWPWindowsGamingInput.lib │ │ │ ├── ObjCUWPWindowsGamingInputCustom.dll │ │ │ ├── ObjCUWPWindowsGamingInputCustom.lib │ │ │ ├── ObjCUWPWindowsGamingInputForceFeedback.dll │ │ │ ├── ObjCUWPWindowsGamingInputForceFeedback.lib │ │ │ ├── ObjCUWPWindowsGamingInputPreview.dll │ │ │ ├── ObjCUWPWindowsGamingInputPreview.lib │ │ │ ├── ObjCUWPWindowsGamingPreview.dll │ │ │ ├── ObjCUWPWindowsGamingPreview.lib │ │ │ ├── ObjCUWPWindowsGamingPreviewGamesEnumeration.dll │ │ │ ├── ObjCUWPWindowsGamingPreviewGamesEnumeration.lib │ │ │ ├── ObjCUWPWindowsGamingUI.dll │ │ │ ├── ObjCUWPWindowsGamingUI.lib │ │ │ ├── ObjCUWPWindowsGamingXboxLive.dll │ │ │ ├── ObjCUWPWindowsGamingXboxLive.lib │ │ │ ├── ObjCUWPWindowsGamingXboxLiveStorage.dll │ │ │ ├── ObjCUWPWindowsGamingXboxLiveStorage.lib │ │ │ ├── ObjCUWPWindowsGlobalization.dll │ │ │ ├── ObjCUWPWindowsGlobalization.lib │ │ │ ├── ObjCUWPWindowsGlobalizationCollation.dll │ │ │ ├── ObjCUWPWindowsGlobalizationCollation.lib │ │ │ ├── ObjCUWPWindowsGlobalizationDateTimeFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationDateTimeFormatting.lib │ │ │ ├── ObjCUWPWindowsGlobalizationFonts.dll │ │ │ ├── ObjCUWPWindowsGlobalizationFonts.lib │ │ │ ├── ObjCUWPWindowsGlobalizationNumberFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationNumberFormatting.lib │ │ │ ├── ObjCUWPWindowsGlobalizationPhoneNumberFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationPhoneNumberFormatting.lib │ │ │ ├── ObjCUWPWindowsGraphics.dll │ │ │ ├── ObjCUWPWindowsGraphics.lib │ │ │ ├── ObjCUWPWindowsGraphicsDirectX.dll │ │ │ ├── ObjCUWPWindowsGraphicsDirectX.lib │ │ │ ├── ObjCUWPWindowsGraphicsDirectXDirect3D11.dll │ │ │ ├── ObjCUWPWindowsGraphicsDirectXDirect3D11.lib │ │ │ ├── ObjCUWPWindowsGraphicsDisplay.dll │ │ │ ├── ObjCUWPWindowsGraphicsDisplay.lib │ │ │ ├── ObjCUWPWindowsGraphicsDisplayCore.dll │ │ │ ├── ObjCUWPWindowsGraphicsDisplayCore.lib │ │ │ ├── ObjCUWPWindowsGraphicsEffects.dll │ │ │ ├── ObjCUWPWindowsGraphicsEffects.lib │ │ │ ├── ObjCUWPWindowsGraphicsHolographic.dll │ │ │ ├── ObjCUWPWindowsGraphicsHolographic.lib │ │ │ ├── ObjCUWPWindowsGraphicsImaging.dll │ │ │ ├── ObjCUWPWindowsGraphicsImaging.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrinting.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrinting.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrinting3D.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrinting3D.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingOptionDetails.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingOptionDetails.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingPrintTicket.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingPrintTicket.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingWorkflow.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingWorkflow.lib │ │ │ ├── ObjCUWPWindowsManagement.dll │ │ │ ├── ObjCUWPWindowsManagement.lib │ │ │ ├── ObjCUWPWindowsManagementCore.dll │ │ │ ├── ObjCUWPWindowsManagementCore.lib │ │ │ ├── ObjCUWPWindowsManagementDeployment.dll │ │ │ ├── ObjCUWPWindowsManagementDeployment.lib │ │ │ ├── ObjCUWPWindowsManagementDeploymentPreview.dll │ │ │ ├── ObjCUWPWindowsManagementDeploymentPreview.lib │ │ │ ├── ObjCUWPWindowsManagementOrchestration.dll │ │ │ ├── ObjCUWPWindowsManagementOrchestration.lib │ │ │ ├── ObjCUWPWindowsManagementPolicies.dll │ │ │ ├── ObjCUWPWindowsManagementPolicies.lib │ │ │ ├── ObjCUWPWindowsManagementWorkplace.dll │ │ │ ├── ObjCUWPWindowsManagementWorkplace.lib │ │ │ ├── ObjCUWPWindowsMedia.dll │ │ │ ├── ObjCUWPWindowsMedia.lib │ │ │ ├── ObjCUWPWindowsMediaAppBroadcasting.dll │ │ │ ├── ObjCUWPWindowsMediaAppBroadcasting.lib │ │ │ ├── ObjCUWPWindowsMediaAppRecording.dll │ │ │ ├── ObjCUWPWindowsMediaAppRecording.lib │ │ │ ├── ObjCUWPWindowsMediaAudio.dll │ │ │ ├── ObjCUWPWindowsMediaAudio.lib │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCoreMediaPropertiesDevicesCorePlaybackProtection.dll │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCoreMediaPropertiesDevicesCorePlaybackProtection.lib │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCorePlaybackProtection.dll │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCorePlaybackProtection.lib │ │ │ ├── ObjCUWPWindowsMediaCasting.dll │ │ │ ├── ObjCUWPWindowsMediaCasting.lib │ │ │ ├── ObjCUWPWindowsMediaClosedCaptioning.dll │ │ │ ├── ObjCUWPWindowsMediaClosedCaptioning.lib │ │ │ ├── ObjCUWPWindowsMediaContentRestrictions.dll │ │ │ ├── ObjCUWPWindowsMediaContentRestrictions.lib │ │ │ ├── ObjCUWPWindowsMediaCorePreview.dll │ │ │ ├── ObjCUWPWindowsMediaCorePreview.lib │ │ │ ├── ObjCUWPWindowsMediaDevicesCore.dll │ │ │ ├── ObjCUWPWindowsMediaDevicesCore.lib │ │ │ ├── ObjCUWPWindowsMediaDialProtocol.dll │ │ │ ├── ObjCUWPWindowsMediaDialProtocol.lib │ │ │ ├── ObjCUWPWindowsMediaEditingEffects.dll │ │ │ ├── ObjCUWPWindowsMediaEditingEffects.lib │ │ │ ├── ObjCUWPWindowsMediaFaceAnalysis.dll │ │ │ ├── ObjCUWPWindowsMediaFaceAnalysis.lib │ │ │ ├── ObjCUWPWindowsMediaImport.dll │ │ │ ├── ObjCUWPWindowsMediaImport.lib │ │ │ ├── ObjCUWPWindowsMediaMediaProperties.dll │ │ │ ├── ObjCUWPWindowsMediaMediaProperties.lib │ │ │ ├── ObjCUWPWindowsMediaOcr.dll │ │ │ ├── ObjCUWPWindowsMediaOcr.lib │ │ │ ├── ObjCUWPWindowsMediaPlayTo.dll │ │ │ ├── ObjCUWPWindowsMediaPlayTo.lib │ │ │ ├── ObjCUWPWindowsMediaPlaylists.dll │ │ │ ├── ObjCUWPWindowsMediaPlaylists.lib │ │ │ ├── ObjCUWPWindowsMediaProtectionPlayReady.dll │ │ │ ├── ObjCUWPWindowsMediaProtectionPlayReady.lib │ │ │ ├── ObjCUWPWindowsMediaRender.dll │ │ │ ├── ObjCUWPWindowsMediaRender.lib │ │ │ ├── ObjCUWPWindowsMediaSpeechRecognition.dll │ │ │ ├── ObjCUWPWindowsMediaSpeechRecognition.lib │ │ │ ├── ObjCUWPWindowsMediaSpeechSynthesis.dll │ │ │ ├── ObjCUWPWindowsMediaSpeechSynthesis.lib │ │ │ ├── ObjCUWPWindowsMediaStreamingAdaptive.dll │ │ │ ├── ObjCUWPWindowsMediaStreamingAdaptive.lib │ │ │ ├── ObjCUWPWindowsMediaTranscoding.dll │ │ │ ├── ObjCUWPWindowsMediaTranscoding.lib │ │ │ ├── ObjCUWPWindowsNetworking.dll │ │ │ ├── ObjCUWPWindowsNetworking.lib │ │ │ ├── ObjCUWPWindowsNetworkingBackgroundTransfer.dll │ │ │ ├── ObjCUWPWindowsNetworkingBackgroundTransfer.lib │ │ │ ├── ObjCUWPWindowsNetworkingNetworkOperators.dll │ │ │ ├── ObjCUWPWindowsNetworkingNetworkOperators.lib │ │ │ ├── ObjCUWPWindowsNetworkingProximity.dll │ │ │ ├── ObjCUWPWindowsNetworkingProximity.lib │ │ │ ├── ObjCUWPWindowsNetworkingPushNotifications.dll │ │ │ ├── ObjCUWPWindowsNetworkingPushNotifications.lib │ │ │ ├── ObjCUWPWindowsNetworkingServiceDiscoveryDnssd.dll │ │ │ ├── ObjCUWPWindowsNetworkingServiceDiscoveryDnssd.lib │ │ │ ├── ObjCUWPWindowsNetworkingVpn.dll │ │ │ ├── ObjCUWPWindowsNetworkingVpn.lib │ │ │ ├── ObjCUWPWindowsNetworkingXboxLive.dll │ │ │ ├── ObjCUWPWindowsNetworkingXboxLive.lib │ │ │ ├── ObjCUWPWindowsPerception.dll │ │ │ ├── ObjCUWPWindowsPerception.lib │ │ │ ├── ObjCUWPWindowsPerceptionAutomationCore.dll │ │ │ ├── ObjCUWPWindowsPerceptionAutomationCore.lib │ │ │ ├── ObjCUWPWindowsPerceptionPeople.dll │ │ │ ├── ObjCUWPWindowsPerceptionPeople.lib │ │ │ ├── ObjCUWPWindowsPerceptionSpatial.dll │ │ │ ├── ObjCUWPWindowsPerceptionSpatial.lib │ │ │ ├── ObjCUWPWindowsPerceptionSpatialSurfaces.dll │ │ │ ├── ObjCUWPWindowsPerceptionSpatialSurfaces.lib │ │ │ ├── ObjCUWPWindowsPhone.dll │ │ │ ├── ObjCUWPWindowsPhone.lib │ │ │ ├── ObjCUWPWindowsPhoneApplicationModel.dll │ │ │ ├── ObjCUWPWindowsPhoneApplicationModel.lib │ │ │ ├── ObjCUWPWindowsPhoneDevicesNotification.dll │ │ │ ├── ObjCUWPWindowsPhoneDevicesNotification.lib │ │ │ ├── ObjCUWPWindowsPhoneDevicesPower.dll │ │ │ ├── ObjCUWPWindowsPhoneDevicesPower.lib │ │ │ ├── ObjCUWPWindowsPhoneManagementDeployment.dll │ │ │ ├── ObjCUWPWindowsPhoneManagementDeployment.lib │ │ │ ├── ObjCUWPWindowsPhoneMediaDevices.dll │ │ │ ├── ObjCUWPWindowsPhoneMediaDevices.lib │ │ │ ├── ObjCUWPWindowsPhoneNotificationManagement.dll │ │ │ ├── ObjCUWPWindowsPhoneNotificationManagement.lib │ │ │ ├── ObjCUWPWindowsPhonePersonalInformation.dll │ │ │ ├── ObjCUWPWindowsPhonePersonalInformation.lib │ │ │ ├── ObjCUWPWindowsPhonePersonalInformationProvisioning.dll │ │ │ ├── ObjCUWPWindowsPhonePersonalInformationProvisioning.lib │ │ │ ├── ObjCUWPWindowsPhoneSpeechRecognition.dll │ │ │ ├── ObjCUWPWindowsPhoneSpeechRecognition.lib │ │ │ ├── ObjCUWPWindowsPhoneStartScreen.dll │ │ │ ├── ObjCUWPWindowsPhoneStartScreen.lib │ │ │ ├── ObjCUWPWindowsPhoneSystem.dll │ │ │ ├── ObjCUWPWindowsPhoneSystem.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemPower.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemPower.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemProfile.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemProfile.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemUserProfileGameServicesCore.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemUserProfileGameServicesCore.lib │ │ │ ├── ObjCUWPWindowsPhoneUIInput.dll │ │ │ ├── ObjCUWPWindowsPhoneUIInput.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentity.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentity.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityCore.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityCore.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityProvider.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityProvider.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationOnlineId.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationOnlineId.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationWeb.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationWeb.lib │ │ │ ├── ObjCUWPWindowsSecurityCredentialsUI.dll │ │ │ ├── ObjCUWPWindowsSecurityCredentialsUI.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptography.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptography.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCertificates.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCertificates.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCore.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCore.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyDataProtection.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyDataProtection.lib │ │ │ ├── ObjCUWPWindowsSecurityEnterpriseData.dll │ │ │ ├── ObjCUWPWindowsSecurityEnterpriseData.lib │ │ │ ├── ObjCUWPWindowsSecurityExchangeActiveSyncProvisioning.dll │ │ │ ├── ObjCUWPWindowsSecurityExchangeActiveSyncProvisioning.lib │ │ │ ├── ObjCUWPWindowsServicesCortana.dll │ │ │ ├── ObjCUWPWindowsServicesCortana.lib │ │ │ ├── ObjCUWPWindowsServicesMaps.dll │ │ │ ├── ObjCUWPWindowsServicesMaps.lib │ │ │ ├── ObjCUWPWindowsServicesMapsGuidance.dll │ │ │ ├── ObjCUWPWindowsServicesMapsGuidance.lib │ │ │ ├── ObjCUWPWindowsServicesMapsLocalSearch.dll │ │ │ ├── ObjCUWPWindowsServicesMapsLocalSearch.lib │ │ │ ├── ObjCUWPWindowsServicesMapsOfflineMaps.dll │ │ │ ├── ObjCUWPWindowsServicesMapsOfflineMaps.lib │ │ │ ├── ObjCUWPWindowsServicesStore.dll │ │ │ ├── ObjCUWPWindowsServicesStore.lib │ │ │ ├── ObjCUWPWindowsServicesTargetedContent.dll │ │ │ ├── ObjCUWPWindowsServicesTargetedContent.lib │ │ │ ├── ObjCUWPWindowsStorage.dll │ │ │ ├── ObjCUWPWindowsStorage.lib │ │ │ ├── ObjCUWPWindowsStorageAccessCache.dll │ │ │ ├── ObjCUWPWindowsStorageAccessCache.lib │ │ │ ├── ObjCUWPWindowsStorageBulkAccess.dll │ │ │ ├── ObjCUWPWindowsStorageBulkAccess.lib │ │ │ ├── ObjCUWPWindowsStorageCompression.dll │ │ │ ├── ObjCUWPWindowsStorageCompression.lib │ │ │ ├── ObjCUWPWindowsStorageFileProperties.dll │ │ │ ├── ObjCUWPWindowsStorageFileProperties.lib │ │ │ ├── ObjCUWPWindowsStoragePickers.dll │ │ │ ├── ObjCUWPWindowsStoragePickers.lib │ │ │ ├── ObjCUWPWindowsStoragePickersProvider.dll │ │ │ ├── ObjCUWPWindowsStoragePickersProvider.lib │ │ │ ├── ObjCUWPWindowsStorageStreams.dll │ │ │ ├── ObjCUWPWindowsStorageStreams.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnostics.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnostics.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsDevicePortal.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsDevicePortal.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTelemetry.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTelemetry.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTraceReporting.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTraceReporting.lib │ │ │ ├── ObjCUWPWindowsSystemDisplay.dll │ │ │ ├── ObjCUWPWindowsSystemDisplay.lib │ │ │ ├── ObjCUWPWindowsSystemPower.dll │ │ │ ├── ObjCUWPWindowsSystemPower.lib │ │ │ ├── ObjCUWPWindowsSystemPowerDiagnostics.dll │ │ │ ├── ObjCUWPWindowsSystemPowerDiagnostics.lib │ │ │ ├── ObjCUWPWindowsSystemProfile.dll │ │ │ ├── ObjCUWPWindowsSystemProfile.lib │ │ │ ├── ObjCUWPWindowsSystemProfileSystemManufacturers.dll │ │ │ ├── ObjCUWPWindowsSystemProfileSystemManufacturers.lib │ │ │ ├── ObjCUWPWindowsSystemRemoteDesktop.dll │ │ │ ├── ObjCUWPWindowsSystemRemoteDesktop.lib │ │ │ ├── ObjCUWPWindowsSystemRemoteSystems.dll │ │ │ ├── ObjCUWPWindowsSystemRemoteSystems.lib │ │ │ ├── ObjCUWPWindowsSystemThreading.dll │ │ │ ├── ObjCUWPWindowsSystemThreading.lib │ │ │ ├── ObjCUWPWindowsSystemThreadingCore.dll │ │ │ ├── ObjCUWPWindowsSystemThreadingCore.lib │ │ │ ├── ObjCUWPWindowsSystemUserProfile.dll │ │ │ ├── ObjCUWPWindowsSystemUserProfile.lib │ │ │ ├── ObjCUWPWindowsUI.dll │ │ │ ├── ObjCUWPWindowsUI.lib │ │ │ ├── ObjCUWPWindowsUIApplicationSettings.dll │ │ │ ├── ObjCUWPWindowsUIApplicationSettings.lib │ │ │ ├── ObjCUWPWindowsUIComposition.dll │ │ │ ├── ObjCUWPWindowsUIComposition.lib │ │ │ ├── ObjCUWPWindowsUICompositionEffects.dll │ │ │ ├── ObjCUWPWindowsUICompositionEffects.lib │ │ │ ├── ObjCUWPWindowsUICompositionInteractions.dll │ │ │ ├── ObjCUWPWindowsUICompositionInteractions.lib │ │ │ ├── ObjCUWPWindowsUICoreAnimationMetrics.dll │ │ │ ├── ObjCUWPWindowsUICoreAnimationMetrics.lib │ │ │ ├── ObjCUWPWindowsUICorePreview.dll │ │ │ ├── ObjCUWPWindowsUICorePreview.lib │ │ │ ├── ObjCUWPWindowsUIInputCore.dll │ │ │ ├── ObjCUWPWindowsUIInputCore.lib │ │ │ ├── ObjCUWPWindowsUIInputInking.dll │ │ │ ├── ObjCUWPWindowsUIInputInking.lib │ │ │ ├── ObjCUWPWindowsUIInputInkingAnalysis.dll │ │ │ ├── ObjCUWPWindowsUIInputInkingAnalysis.lib │ │ │ ├── ObjCUWPWindowsUIInputInkingCore.dll │ │ │ ├── ObjCUWPWindowsUIInputInkingCore.lib │ │ │ ├── ObjCUWPWindowsUIInputPreviewInjection.dll │ │ │ ├── ObjCUWPWindowsUIInputPreviewInjection.lib │ │ │ ├── ObjCUWPWindowsUIInputSpatial.dll │ │ │ ├── ObjCUWPWindowsUIInputSpatial.lib │ │ │ ├── ObjCUWPWindowsUINotificationsManagement.dll │ │ │ ├── ObjCUWPWindowsUINotificationsManagement.lib │ │ │ ├── ObjCUWPWindowsUIPopups.dll │ │ │ ├── ObjCUWPWindowsUIPopups.lib │ │ │ ├── ObjCUWPWindowsUIShell.dll │ │ │ ├── ObjCUWPWindowsUIShell.lib │ │ │ ├── ObjCUWPWindowsUIStartScreen.dll │ │ │ ├── ObjCUWPWindowsUIStartScreen.lib │ │ │ ├── ObjCUWPWindowsUIText.dll │ │ │ ├── ObjCUWPWindowsUIText.lib │ │ │ ├── ObjCUWPWindowsUITextCore.dll │ │ │ ├── ObjCUWPWindowsUITextCore.lib │ │ │ ├── ObjCUWPWindowsUIViewManagement.dll │ │ │ ├── ObjCUWPWindowsUIViewManagement.lib │ │ │ ├── ObjCUWPWindowsUIViewManagementCore.dll │ │ │ ├── ObjCUWPWindowsUIViewManagementCore.lib │ │ │ ├── ObjCUWPWindowsUIWebUI.dll │ │ │ ├── ObjCUWPWindowsUIWebUI.lib │ │ │ ├── ObjCUWPWindowsUIWebUICore.dll │ │ │ ├── ObjCUWPWindowsUIWebUICore.lib │ │ │ ├── ObjCUWPWindowsUIXaml.dll │ │ │ ├── ObjCUWPWindowsUIXaml.lib │ │ │ ├── ObjCUWPWindowsUIXamlAutomationText.dll │ │ │ ├── ObjCUWPWindowsUIXamlAutomationText.lib │ │ │ ├── ObjCUWPWindowsUIXamlControlsMaps.dll │ │ │ ├── ObjCUWPWindowsUIXamlControlsMaps.lib │ │ │ ├── ObjCUWPWindowsUIXamlHosting.dll │ │ │ ├── ObjCUWPWindowsUIXamlHosting.lib │ │ │ ├── ObjCUWPWindowsUIXamlInterop.dll │ │ │ ├── ObjCUWPWindowsUIXamlInterop.lib │ │ │ ├── ObjCUWPWindowsUIXamlMarkup.dll │ │ │ ├── ObjCUWPWindowsUIXamlMarkup.lib │ │ │ ├── ObjCUWPWindowsUIXamlMediaImaging.dll │ │ │ ├── ObjCUWPWindowsUIXamlMediaImaging.lib │ │ │ ├── ObjCUWPWindowsUIXamlPrinting.dll │ │ │ ├── ObjCUWPWindowsUIXamlPrinting.lib │ │ │ ├── ObjCUWPWindowsUIXamlResources.dll │ │ │ ├── ObjCUWPWindowsUIXamlResources.lib │ │ │ ├── ObjCUWPWindowsUIXamlShapes.dll │ │ │ ├── ObjCUWPWindowsUIXamlShapes.lib │ │ │ ├── ObjCUWPWindowsWeb.dll │ │ │ ├── ObjCUWPWindowsWeb.lib │ │ │ ├── ObjCUWPWindowsWebAtomPub.dll │ │ │ ├── ObjCUWPWindowsWebAtomPub.lib │ │ │ ├── ObjCUWPWindowsWebHttpDiagnostics.dll │ │ │ ├── ObjCUWPWindowsWebHttpDiagnostics.lib │ │ │ ├── ObjCUWPWindowsWebHttpFilters.dll │ │ │ ├── ObjCUWPWindowsWebHttpFilters.lib │ │ │ ├── ObjCUWPWindowsWebSyndication.dll │ │ │ ├── ObjCUWPWindowsWebSyndication.lib │ │ │ ├── OpenAL.dll │ │ │ ├── OpenAL.lib │ │ │ ├── OpenAL.pdb │ │ │ ├── cassowary-0.60-Debug.lib │ │ │ ├── cassowary-0.60-Debug.pdb │ │ │ ├── cassowary-0.60.lib │ │ │ ├── cassowary-0.60.pdb │ │ │ ├── icudt.exp │ │ │ ├── icudt.lib │ │ │ ├── icudt57.dll │ │ │ ├── icuin.exp │ │ │ ├── icuin.lib │ │ │ ├── icuin.pdb │ │ │ ├── icuin57.dll │ │ │ ├── icuuc.exp │ │ │ ├── icuuc.lib │ │ │ ├── icuuc.pdb │ │ │ ├── icuuc57.dll │ │ │ ├── libeay32.dll │ │ │ ├── libeay32.lib │ │ │ ├── libeay32.pdb │ │ │ ├── libjpeg.dll │ │ │ ├── libjpeg.lib │ │ │ ├── libjpeg.pdb │ │ │ ├── libxml2.dll │ │ │ ├── libxml2.lib │ │ │ ├── libxml2.pdb │ │ │ ├── libz.dll │ │ │ ├── libz.lib │ │ │ ├── libz.pdb │ │ │ ├── ssleay32.dll │ │ │ ├── ssleay32.lib │ │ │ └── ssleay32.pdb │ │ └── x86 │ │ │ ├── ObjCUWPMicrosoftAdvertising.dll │ │ │ ├── ObjCUWPMicrosoftAdvertising.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppExtensions.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppExtensions.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppService.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppService.lib │ │ │ ├── ObjCUWPWindowsApplicationModelAppointmentsDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelAppointmentsDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCalls.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCalls.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCallsBackground.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCallsBackground.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCallsProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCallsProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelChat.dll │ │ │ ├── ObjCUWPWindowsApplicationModelChat.lib │ │ │ ├── ObjCUWPWindowsApplicationModelCommunicationBlocking.dll │ │ │ ├── ObjCUWPWindowsApplicationModelCommunicationBlocking.lib │ │ │ ├── ObjCUWPWindowsApplicationModelContactsDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelContactsDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransfer.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransfer.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDrop.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDrop.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDropCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferDragDropCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferShareTarget.dll │ │ │ ├── ObjCUWPWindowsApplicationModelDataTransferShareTarget.lib │ │ │ ├── ObjCUWPWindowsApplicationModelEmailDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelEmailDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecution.dll │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecution.lib │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecutionForeground.dll │ │ │ ├── ObjCUWPWindowsApplicationModelExtendedExecutionForeground.lib │ │ │ ├── ObjCUWPWindowsApplicationModelLockScreen.dll │ │ │ ├── ObjCUWPWindowsApplicationModelLockScreen.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPayments.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPayments.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPaymentsProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPaymentsProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewHolographic.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewHolographic.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewInkWorkspace.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewInkWorkspace.lib │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewNotes.dll │ │ │ ├── ObjCUWPWindowsApplicationModelPreviewNotes.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResources.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResources.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesManagement.dll │ │ │ ├── ObjCUWPWindowsApplicationModelResourcesManagement.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSearch.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSearch.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSearchCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSearchCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfo.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfo.lib │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfoProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelSocialInfoProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStoreLicenseManagement.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStoreLicenseManagement.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreview.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreview.lib │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreviewInstallControl.dll │ │ │ ├── ObjCUWPWindowsApplicationModelStorePreviewInstallControl.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivities.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivities.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivitiesCore.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserActivitiesCore.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataAccountsSystemAccess.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataAccountsSystemAccess.lib │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataTasksDataProvider.dll │ │ │ ├── ObjCUWPWindowsApplicationModelUserDataTasksDataProvider.lib │ │ │ ├── ObjCUWPWindowsApplicationModelVoiceCommands.dll │ │ │ ├── ObjCUWPWindowsApplicationModelVoiceCommands.lib │ │ │ ├── ObjCUWPWindowsApplicationModelWallet.dll │ │ │ ├── ObjCUWPWindowsApplicationModelWallet.lib │ │ │ ├── ObjCUWPWindowsApplicationModelWalletSystem.dll │ │ │ ├── ObjCUWPWindowsApplicationModelWalletSystem.lib │ │ │ ├── ObjCUWPWindowsConsolidatedNamespace.dll │ │ │ ├── ObjCUWPWindowsConsolidatedNamespace.lib │ │ │ ├── ObjCUWPWindowsDataHtml.dll │ │ │ ├── ObjCUWPWindowsDataHtml.lib │ │ │ ├── ObjCUWPWindowsDataJson.dll │ │ │ ├── ObjCUWPWindowsDataJson.lib │ │ │ ├── ObjCUWPWindowsDataPdf.dll │ │ │ ├── ObjCUWPWindowsDataPdf.lib │ │ │ ├── ObjCUWPWindowsDataText.dll │ │ │ ├── ObjCUWPWindowsDataText.lib │ │ │ ├── ObjCUWPWindowsDataXmlDom.dll │ │ │ ├── ObjCUWPWindowsDataXmlDom.lib │ │ │ ├── ObjCUWPWindowsDataXmlXsl.dll │ │ │ ├── ObjCUWPWindowsDataXmlXsl.lib │ │ │ ├── ObjCUWPWindowsDevices.dll │ │ │ ├── ObjCUWPWindowsDevices.lib │ │ │ ├── ObjCUWPWindowsDevicesAdc.dll │ │ │ ├── ObjCUWPWindowsDevicesAdc.lib │ │ │ ├── ObjCUWPWindowsDevicesAdcProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesAdcProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesAllJoyn.dll │ │ │ ├── ObjCUWPWindowsDevicesAllJoyn.lib │ │ │ ├── ObjCUWPWindowsDevicesBackground.dll │ │ │ ├── ObjCUWPWindowsDevicesBackground.lib │ │ │ ├── ObjCUWPWindowsDevicesCustom.dll │ │ │ ├── ObjCUWPWindowsDevicesCustom.lib │ │ │ ├── ObjCUWPWindowsDevicesEnumerationPnp.dll │ │ │ ├── ObjCUWPWindowsDevicesEnumerationPnp.lib │ │ │ ├── ObjCUWPWindowsDevicesGeolocation.dll │ │ │ ├── ObjCUWPWindowsDevicesGeolocation.lib │ │ │ ├── ObjCUWPWindowsDevicesGeolocationGeofencing.dll │ │ │ ├── ObjCUWPWindowsDevicesGeolocationGeofencing.lib │ │ │ ├── ObjCUWPWindowsDevicesGpio.dll │ │ │ ├── ObjCUWPWindowsDevicesGpio.lib │ │ │ ├── ObjCUWPWindowsDevicesGpioProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesGpioProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesHaptics.dll │ │ │ ├── ObjCUWPWindowsDevicesHaptics.lib │ │ │ ├── ObjCUWPWindowsDevicesHumanInterfaceDevice.dll │ │ │ ├── ObjCUWPWindowsDevicesHumanInterfaceDevice.lib │ │ │ ├── ObjCUWPWindowsDevicesI2c.dll │ │ │ ├── ObjCUWPWindowsDevicesI2c.lib │ │ │ ├── ObjCUWPWindowsDevicesI2cProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesI2cProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesInput.dll │ │ │ ├── ObjCUWPWindowsDevicesInput.lib │ │ │ ├── ObjCUWPWindowsDevicesLights.dll │ │ │ ├── ObjCUWPWindowsDevicesLights.lib │ │ │ ├── ObjCUWPWindowsDevicesMidi.dll │ │ │ ├── ObjCUWPWindowsDevicesMidi.lib │ │ │ ├── ObjCUWPWindowsDevicesPerception.dll │ │ │ ├── ObjCUWPWindowsDevicesPerception.lib │ │ │ ├── ObjCUWPWindowsDevicesPerceptionProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesPerceptionProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesPointOfService.dll │ │ │ ├── ObjCUWPWindowsDevicesPointOfService.lib │ │ │ ├── ObjCUWPWindowsDevicesPortable.dll │ │ │ ├── ObjCUWPWindowsDevicesPortable.lib │ │ │ ├── ObjCUWPWindowsDevicesPower.dll │ │ │ ├── ObjCUWPWindowsDevicesPower.lib │ │ │ ├── ObjCUWPWindowsDevicesPrinters.dll │ │ │ ├── ObjCUWPWindowsDevicesPrinters.lib │ │ │ ├── ObjCUWPWindowsDevicesPrintersExtensions.dll │ │ │ ├── ObjCUWPWindowsDevicesPrintersExtensions.lib │ │ │ ├── ObjCUWPWindowsDevicesPwm.dll │ │ │ ├── ObjCUWPWindowsDevicesPwm.lib │ │ │ ├── ObjCUWPWindowsDevicesPwmProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesPwmProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesRadios.dll │ │ │ ├── ObjCUWPWindowsDevicesRadios.lib │ │ │ ├── ObjCUWPWindowsDevicesScanners.dll │ │ │ ├── ObjCUWPWindowsDevicesScanners.lib │ │ │ ├── ObjCUWPWindowsDevicesSensors.dll │ │ │ ├── ObjCUWPWindowsDevicesSensors.lib │ │ │ ├── ObjCUWPWindowsDevicesSensorsCustom.dll │ │ │ ├── ObjCUWPWindowsDevicesSensorsCustom.lib │ │ │ ├── ObjCUWPWindowsDevicesSerialCommunication.dll │ │ │ ├── ObjCUWPWindowsDevicesSerialCommunication.lib │ │ │ ├── ObjCUWPWindowsDevicesSmartCards.dll │ │ │ ├── ObjCUWPWindowsDevicesSmartCards.lib │ │ │ ├── ObjCUWPWindowsDevicesSms.dll │ │ │ ├── ObjCUWPWindowsDevicesSms.lib │ │ │ ├── ObjCUWPWindowsDevicesSpi.dll │ │ │ ├── ObjCUWPWindowsDevicesSpi.lib │ │ │ ├── ObjCUWPWindowsDevicesSpiProvider.dll │ │ │ ├── ObjCUWPWindowsDevicesSpiProvider.lib │ │ │ ├── ObjCUWPWindowsDevicesUsb.dll │ │ │ ├── ObjCUWPWindowsDevicesUsb.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFi.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFi.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirect.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirect.lib │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirectServices.dll │ │ │ ├── ObjCUWPWindowsDevicesWiFiDirectServices.lib │ │ │ ├── ObjCUWPWindowsEmbeddedDeviceLockdown.dll │ │ │ ├── ObjCUWPWindowsEmbeddedDeviceLockdown.lib │ │ │ ├── ObjCUWPWindowsFoundation.dll │ │ │ ├── ObjCUWPWindowsFoundation.lib │ │ │ ├── ObjCUWPWindowsFoundationCollections.dll │ │ │ ├── ObjCUWPWindowsFoundationCollections.lib │ │ │ ├── ObjCUWPWindowsFoundationDiagnostics.dll │ │ │ ├── ObjCUWPWindowsFoundationDiagnostics.lib │ │ │ ├── ObjCUWPWindowsFoundationMetadata.dll │ │ │ ├── ObjCUWPWindowsFoundationMetadata.lib │ │ │ ├── ObjCUWPWindowsFoundationNumerics.dll │ │ │ ├── ObjCUWPWindowsFoundationNumerics.lib │ │ │ ├── ObjCUWPWindowsGamingInput.dll │ │ │ ├── ObjCUWPWindowsGamingInput.lib │ │ │ ├── ObjCUWPWindowsGamingInputCustom.dll │ │ │ ├── ObjCUWPWindowsGamingInputCustom.lib │ │ │ ├── ObjCUWPWindowsGamingInputForceFeedback.dll │ │ │ ├── ObjCUWPWindowsGamingInputForceFeedback.lib │ │ │ ├── ObjCUWPWindowsGamingInputPreview.dll │ │ │ ├── ObjCUWPWindowsGamingInputPreview.lib │ │ │ ├── ObjCUWPWindowsGamingPreview.dll │ │ │ ├── ObjCUWPWindowsGamingPreview.lib │ │ │ ├── ObjCUWPWindowsGamingPreviewGamesEnumeration.dll │ │ │ ├── ObjCUWPWindowsGamingPreviewGamesEnumeration.lib │ │ │ ├── ObjCUWPWindowsGamingUI.dll │ │ │ ├── ObjCUWPWindowsGamingUI.lib │ │ │ ├── ObjCUWPWindowsGamingXboxLive.dll │ │ │ ├── ObjCUWPWindowsGamingXboxLive.lib │ │ │ ├── ObjCUWPWindowsGamingXboxLiveStorage.dll │ │ │ ├── ObjCUWPWindowsGamingXboxLiveStorage.lib │ │ │ ├── ObjCUWPWindowsGlobalization.dll │ │ │ ├── ObjCUWPWindowsGlobalization.lib │ │ │ ├── ObjCUWPWindowsGlobalizationCollation.dll │ │ │ ├── ObjCUWPWindowsGlobalizationCollation.lib │ │ │ ├── ObjCUWPWindowsGlobalizationDateTimeFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationDateTimeFormatting.lib │ │ │ ├── ObjCUWPWindowsGlobalizationFonts.dll │ │ │ ├── ObjCUWPWindowsGlobalizationFonts.lib │ │ │ ├── ObjCUWPWindowsGlobalizationNumberFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationNumberFormatting.lib │ │ │ ├── ObjCUWPWindowsGlobalizationPhoneNumberFormatting.dll │ │ │ ├── ObjCUWPWindowsGlobalizationPhoneNumberFormatting.lib │ │ │ ├── ObjCUWPWindowsGraphics.dll │ │ │ ├── ObjCUWPWindowsGraphics.lib │ │ │ ├── ObjCUWPWindowsGraphicsDirectX.dll │ │ │ ├── ObjCUWPWindowsGraphicsDirectX.lib │ │ │ ├── ObjCUWPWindowsGraphicsDirectXDirect3D11.dll │ │ │ ├── ObjCUWPWindowsGraphicsDirectXDirect3D11.lib │ │ │ ├── ObjCUWPWindowsGraphicsDisplay.dll │ │ │ ├── ObjCUWPWindowsGraphicsDisplay.lib │ │ │ ├── ObjCUWPWindowsGraphicsDisplayCore.dll │ │ │ ├── ObjCUWPWindowsGraphicsDisplayCore.lib │ │ │ ├── ObjCUWPWindowsGraphicsEffects.dll │ │ │ ├── ObjCUWPWindowsGraphicsEffects.lib │ │ │ ├── ObjCUWPWindowsGraphicsHolographic.dll │ │ │ ├── ObjCUWPWindowsGraphicsHolographic.lib │ │ │ ├── ObjCUWPWindowsGraphicsImaging.dll │ │ │ ├── ObjCUWPWindowsGraphicsImaging.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrinting.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrinting.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrinting3D.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrinting3D.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingOptionDetails.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingOptionDetails.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingPrintTicket.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingPrintTicket.lib │ │ │ ├── ObjCUWPWindowsGraphicsPrintingWorkflow.dll │ │ │ ├── ObjCUWPWindowsGraphicsPrintingWorkflow.lib │ │ │ ├── ObjCUWPWindowsManagement.dll │ │ │ ├── ObjCUWPWindowsManagement.lib │ │ │ ├── ObjCUWPWindowsManagementCore.dll │ │ │ ├── ObjCUWPWindowsManagementCore.lib │ │ │ ├── ObjCUWPWindowsManagementDeployment.dll │ │ │ ├── ObjCUWPWindowsManagementDeployment.lib │ │ │ ├── ObjCUWPWindowsManagementDeploymentPreview.dll │ │ │ ├── ObjCUWPWindowsManagementDeploymentPreview.lib │ │ │ ├── ObjCUWPWindowsManagementOrchestration.dll │ │ │ ├── ObjCUWPWindowsManagementOrchestration.lib │ │ │ ├── ObjCUWPWindowsManagementPolicies.dll │ │ │ ├── ObjCUWPWindowsManagementPolicies.lib │ │ │ ├── ObjCUWPWindowsManagementWorkplace.dll │ │ │ ├── ObjCUWPWindowsManagementWorkplace.lib │ │ │ ├── ObjCUWPWindowsMedia.dll │ │ │ ├── ObjCUWPWindowsMedia.lib │ │ │ ├── ObjCUWPWindowsMediaAppBroadcasting.dll │ │ │ ├── ObjCUWPWindowsMediaAppBroadcasting.lib │ │ │ ├── ObjCUWPWindowsMediaAppRecording.dll │ │ │ ├── ObjCUWPWindowsMediaAppRecording.lib │ │ │ ├── ObjCUWPWindowsMediaAudio.dll │ │ │ ├── ObjCUWPWindowsMediaAudio.lib │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCoreMediaPropertiesDevicesCorePlaybackProtection.dll │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCoreMediaPropertiesDevicesCorePlaybackProtection.lib │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCorePlaybackProtection.dll │ │ │ ├── ObjCUWPWindowsMediaCaptureDevicesCorePlaybackProtection.lib │ │ │ ├── ObjCUWPWindowsMediaCasting.dll │ │ │ ├── ObjCUWPWindowsMediaCasting.lib │ │ │ ├── ObjCUWPWindowsMediaClosedCaptioning.dll │ │ │ ├── ObjCUWPWindowsMediaClosedCaptioning.lib │ │ │ ├── ObjCUWPWindowsMediaContentRestrictions.dll │ │ │ ├── ObjCUWPWindowsMediaContentRestrictions.lib │ │ │ ├── ObjCUWPWindowsMediaCorePreview.dll │ │ │ ├── ObjCUWPWindowsMediaCorePreview.lib │ │ │ ├── ObjCUWPWindowsMediaDevicesCore.dll │ │ │ ├── ObjCUWPWindowsMediaDevicesCore.lib │ │ │ ├── ObjCUWPWindowsMediaDialProtocol.dll │ │ │ ├── ObjCUWPWindowsMediaDialProtocol.lib │ │ │ ├── ObjCUWPWindowsMediaEditingEffects.dll │ │ │ ├── ObjCUWPWindowsMediaEditingEffects.lib │ │ │ ├── ObjCUWPWindowsMediaFaceAnalysis.dll │ │ │ ├── ObjCUWPWindowsMediaFaceAnalysis.lib │ │ │ ├── ObjCUWPWindowsMediaImport.dll │ │ │ ├── ObjCUWPWindowsMediaImport.lib │ │ │ ├── ObjCUWPWindowsMediaMediaProperties.dll │ │ │ ├── ObjCUWPWindowsMediaMediaProperties.lib │ │ │ ├── ObjCUWPWindowsMediaOcr.dll │ │ │ ├── ObjCUWPWindowsMediaOcr.lib │ │ │ ├── ObjCUWPWindowsMediaPlayTo.dll │ │ │ ├── ObjCUWPWindowsMediaPlayTo.lib │ │ │ ├── ObjCUWPWindowsMediaPlaylists.dll │ │ │ ├── ObjCUWPWindowsMediaPlaylists.lib │ │ │ ├── ObjCUWPWindowsMediaProtectionPlayReady.dll │ │ │ ├── ObjCUWPWindowsMediaProtectionPlayReady.lib │ │ │ ├── ObjCUWPWindowsMediaRender.dll │ │ │ ├── ObjCUWPWindowsMediaRender.lib │ │ │ ├── ObjCUWPWindowsMediaSpeechRecognition.dll │ │ │ ├── ObjCUWPWindowsMediaSpeechRecognition.lib │ │ │ ├── ObjCUWPWindowsMediaSpeechSynthesis.dll │ │ │ ├── ObjCUWPWindowsMediaSpeechSynthesis.lib │ │ │ ├── ObjCUWPWindowsMediaStreamingAdaptive.dll │ │ │ ├── ObjCUWPWindowsMediaStreamingAdaptive.lib │ │ │ ├── ObjCUWPWindowsMediaTranscoding.dll │ │ │ ├── ObjCUWPWindowsMediaTranscoding.lib │ │ │ ├── ObjCUWPWindowsNetworking.dll │ │ │ ├── ObjCUWPWindowsNetworking.lib │ │ │ ├── ObjCUWPWindowsNetworkingBackgroundTransfer.dll │ │ │ ├── ObjCUWPWindowsNetworkingBackgroundTransfer.lib │ │ │ ├── ObjCUWPWindowsNetworkingNetworkOperators.dll │ │ │ ├── ObjCUWPWindowsNetworkingNetworkOperators.lib │ │ │ ├── ObjCUWPWindowsNetworkingProximity.dll │ │ │ ├── ObjCUWPWindowsNetworkingProximity.lib │ │ │ ├── ObjCUWPWindowsNetworkingPushNotifications.dll │ │ │ ├── ObjCUWPWindowsNetworkingPushNotifications.lib │ │ │ ├── ObjCUWPWindowsNetworkingServiceDiscoveryDnssd.dll │ │ │ ├── ObjCUWPWindowsNetworkingServiceDiscoveryDnssd.lib │ │ │ ├── ObjCUWPWindowsNetworkingVpn.dll │ │ │ ├── ObjCUWPWindowsNetworkingVpn.lib │ │ │ ├── ObjCUWPWindowsNetworkingXboxLive.dll │ │ │ ├── ObjCUWPWindowsNetworkingXboxLive.lib │ │ │ ├── ObjCUWPWindowsPerception.dll │ │ │ ├── ObjCUWPWindowsPerception.lib │ │ │ ├── ObjCUWPWindowsPerceptionAutomationCore.dll │ │ │ ├── ObjCUWPWindowsPerceptionAutomationCore.lib │ │ │ ├── ObjCUWPWindowsPerceptionPeople.dll │ │ │ ├── ObjCUWPWindowsPerceptionPeople.lib │ │ │ ├── ObjCUWPWindowsPerceptionSpatial.dll │ │ │ ├── ObjCUWPWindowsPerceptionSpatial.lib │ │ │ ├── ObjCUWPWindowsPerceptionSpatialSurfaces.dll │ │ │ ├── ObjCUWPWindowsPerceptionSpatialSurfaces.lib │ │ │ ├── ObjCUWPWindowsPhone.dll │ │ │ ├── ObjCUWPWindowsPhone.lib │ │ │ ├── ObjCUWPWindowsPhoneApplicationModel.dll │ │ │ ├── ObjCUWPWindowsPhoneApplicationModel.lib │ │ │ ├── ObjCUWPWindowsPhoneDevicesNotification.dll │ │ │ ├── ObjCUWPWindowsPhoneDevicesNotification.lib │ │ │ ├── ObjCUWPWindowsPhoneDevicesPower.dll │ │ │ ├── ObjCUWPWindowsPhoneDevicesPower.lib │ │ │ ├── ObjCUWPWindowsPhoneManagementDeployment.dll │ │ │ ├── ObjCUWPWindowsPhoneManagementDeployment.lib │ │ │ ├── ObjCUWPWindowsPhoneMediaDevices.dll │ │ │ ├── ObjCUWPWindowsPhoneMediaDevices.lib │ │ │ ├── ObjCUWPWindowsPhoneNotificationManagement.dll │ │ │ ├── ObjCUWPWindowsPhoneNotificationManagement.lib │ │ │ ├── ObjCUWPWindowsPhonePersonalInformation.dll │ │ │ ├── ObjCUWPWindowsPhonePersonalInformation.lib │ │ │ ├── ObjCUWPWindowsPhonePersonalInformationProvisioning.dll │ │ │ ├── ObjCUWPWindowsPhonePersonalInformationProvisioning.lib │ │ │ ├── ObjCUWPWindowsPhoneSpeechRecognition.dll │ │ │ ├── ObjCUWPWindowsPhoneSpeechRecognition.lib │ │ │ ├── ObjCUWPWindowsPhoneStartScreen.dll │ │ │ ├── ObjCUWPWindowsPhoneStartScreen.lib │ │ │ ├── ObjCUWPWindowsPhoneSystem.dll │ │ │ ├── ObjCUWPWindowsPhoneSystem.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemPower.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemPower.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemProfile.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemProfile.lib │ │ │ ├── ObjCUWPWindowsPhoneSystemUserProfileGameServicesCore.dll │ │ │ ├── ObjCUWPWindowsPhoneSystemUserProfileGameServicesCore.lib │ │ │ ├── ObjCUWPWindowsPhoneUIInput.dll │ │ │ ├── ObjCUWPWindowsPhoneUIInput.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentity.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentity.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityCore.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityCore.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityProvider.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationIdentityProvider.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationOnlineId.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationOnlineId.lib │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationWeb.dll │ │ │ ├── ObjCUWPWindowsSecurityAuthenticationWeb.lib │ │ │ ├── ObjCUWPWindowsSecurityCredentialsUI.dll │ │ │ ├── ObjCUWPWindowsSecurityCredentialsUI.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptography.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptography.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCertificates.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCertificates.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCore.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyCore.lib │ │ │ ├── ObjCUWPWindowsSecurityCryptographyDataProtection.dll │ │ │ ├── ObjCUWPWindowsSecurityCryptographyDataProtection.lib │ │ │ ├── ObjCUWPWindowsSecurityEnterpriseData.dll │ │ │ ├── ObjCUWPWindowsSecurityEnterpriseData.lib │ │ │ ├── ObjCUWPWindowsSecurityExchangeActiveSyncProvisioning.dll │ │ │ ├── ObjCUWPWindowsSecurityExchangeActiveSyncProvisioning.lib │ │ │ ├── ObjCUWPWindowsServicesCortana.dll │ │ │ ├── ObjCUWPWindowsServicesCortana.lib │ │ │ ├── ObjCUWPWindowsServicesMaps.dll │ │ │ ├── ObjCUWPWindowsServicesMaps.lib │ │ │ ├── ObjCUWPWindowsServicesMapsGuidance.dll │ │ │ ├── ObjCUWPWindowsServicesMapsGuidance.lib │ │ │ ├── ObjCUWPWindowsServicesMapsLocalSearch.dll │ │ │ ├── ObjCUWPWindowsServicesMapsLocalSearch.lib │ │ │ ├── ObjCUWPWindowsServicesMapsOfflineMaps.dll │ │ │ ├── ObjCUWPWindowsServicesMapsOfflineMaps.lib │ │ │ ├── ObjCUWPWindowsServicesStore.dll │ │ │ ├── ObjCUWPWindowsServicesStore.lib │ │ │ ├── ObjCUWPWindowsServicesTargetedContent.dll │ │ │ ├── ObjCUWPWindowsServicesTargetedContent.lib │ │ │ ├── ObjCUWPWindowsStorage.dll │ │ │ ├── ObjCUWPWindowsStorage.lib │ │ │ ├── ObjCUWPWindowsStorageAccessCache.dll │ │ │ ├── ObjCUWPWindowsStorageAccessCache.lib │ │ │ ├── ObjCUWPWindowsStorageBulkAccess.dll │ │ │ ├── ObjCUWPWindowsStorageBulkAccess.lib │ │ │ ├── ObjCUWPWindowsStorageCompression.dll │ │ │ ├── ObjCUWPWindowsStorageCompression.lib │ │ │ ├── ObjCUWPWindowsStorageFileProperties.dll │ │ │ ├── ObjCUWPWindowsStorageFileProperties.lib │ │ │ ├── ObjCUWPWindowsStoragePickers.dll │ │ │ ├── ObjCUWPWindowsStoragePickers.lib │ │ │ ├── ObjCUWPWindowsStoragePickersProvider.dll │ │ │ ├── ObjCUWPWindowsStoragePickersProvider.lib │ │ │ ├── ObjCUWPWindowsStorageStreams.dll │ │ │ ├── ObjCUWPWindowsStorageStreams.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnostics.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnostics.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsDevicePortal.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsDevicePortal.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTelemetry.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTelemetry.lib │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTraceReporting.dll │ │ │ ├── ObjCUWPWindowsSystemDiagnosticsTraceReporting.lib │ │ │ ├── ObjCUWPWindowsSystemDisplay.dll │ │ │ ├── ObjCUWPWindowsSystemDisplay.lib │ │ │ ├── ObjCUWPWindowsSystemPower.dll │ │ │ ├── ObjCUWPWindowsSystemPower.lib │ │ │ ├── ObjCUWPWindowsSystemPowerDiagnostics.dll │ │ │ ├── ObjCUWPWindowsSystemPowerDiagnostics.lib │ │ │ ├── ObjCUWPWindowsSystemProfile.dll │ │ │ ├── ObjCUWPWindowsSystemProfile.lib │ │ │ ├── ObjCUWPWindowsSystemProfileSystemManufacturers.dll │ │ │ ├── ObjCUWPWindowsSystemProfileSystemManufacturers.lib │ │ │ ├── ObjCUWPWindowsSystemRemoteDesktop.dll │ │ │ ├── ObjCUWPWindowsSystemRemoteDesktop.lib │ │ │ ├── ObjCUWPWindowsSystemRemoteSystems.dll │ │ │ ├── ObjCUWPWindowsSystemRemoteSystems.lib │ │ │ ├── ObjCUWPWindowsSystemThreading.dll │ │ │ ├── ObjCUWPWindowsSystemThreading.lib │ │ │ ├── ObjCUWPWindowsSystemThreadingCore.dll │ │ │ ├── ObjCUWPWindowsSystemThreadingCore.lib │ │ │ ├── ObjCUWPWindowsSystemUserProfile.dll │ │ │ ├── ObjCUWPWindowsSystemUserProfile.lib │ │ │ ├── ObjCUWPWindowsUI.dll │ │ │ ├── ObjCUWPWindowsUI.lib │ │ │ ├── ObjCUWPWindowsUIApplicationSettings.dll │ │ │ ├── ObjCUWPWindowsUIApplicationSettings.lib │ │ │ ├── ObjCUWPWindowsUIComposition.dll │ │ │ ├── ObjCUWPWindowsUIComposition.lib │ │ │ ├── ObjCUWPWindowsUICompositionEffects.dll │ │ │ ├── ObjCUWPWindowsUICompositionEffects.lib │ │ │ ├── ObjCUWPWindowsUICompositionInteractions.dll │ │ │ ├── ObjCUWPWindowsUICompositionInteractions.lib │ │ │ ├── ObjCUWPWindowsUICoreAnimationMetrics.dll │ │ │ ├── ObjCUWPWindowsUICoreAnimationMetrics.lib │ │ │ ├── ObjCUWPWindowsUICorePreview.dll │ │ │ ├── ObjCUWPWindowsUICorePreview.lib │ │ │ ├── ObjCUWPWindowsUIInputCore.dll │ │ │ ├── ObjCUWPWindowsUIInputCore.lib │ │ │ ├── ObjCUWPWindowsUIInputInking.dll │ │ │ ├── ObjCUWPWindowsUIInputInking.lib │ │ │ ├── ObjCUWPWindowsUIInputInkingAnalysis.dll │ │ │ ├── ObjCUWPWindowsUIInputInkingAnalysis.lib │ │ │ ├── ObjCUWPWindowsUIInputInkingCore.dll │ │ │ ├── ObjCUWPWindowsUIInputInkingCore.lib │ │ │ ├── ObjCUWPWindowsUIInputPreviewInjection.dll │ │ │ ├── ObjCUWPWindowsUIInputPreviewInjection.lib │ │ │ ├── ObjCUWPWindowsUIInputSpatial.dll │ │ │ ├── ObjCUWPWindowsUIInputSpatial.lib │ │ │ ├── ObjCUWPWindowsUINotificationsManagement.dll │ │ │ ├── ObjCUWPWindowsUINotificationsManagement.lib │ │ │ ├── ObjCUWPWindowsUIPopups.dll │ │ │ ├── ObjCUWPWindowsUIPopups.lib │ │ │ ├── ObjCUWPWindowsUIShell.dll │ │ │ ├── ObjCUWPWindowsUIShell.lib │ │ │ ├── ObjCUWPWindowsUIStartScreen.dll │ │ │ ├── ObjCUWPWindowsUIStartScreen.lib │ │ │ ├── ObjCUWPWindowsUIText.dll │ │ │ ├── ObjCUWPWindowsUIText.lib │ │ │ ├── ObjCUWPWindowsUITextCore.dll │ │ │ ├── ObjCUWPWindowsUITextCore.lib │ │ │ ├── ObjCUWPWindowsUIViewManagement.dll │ │ │ ├── ObjCUWPWindowsUIViewManagement.lib │ │ │ ├── ObjCUWPWindowsUIViewManagementCore.dll │ │ │ ├── ObjCUWPWindowsUIViewManagementCore.lib │ │ │ ├── ObjCUWPWindowsUIWebUI.dll │ │ │ ├── ObjCUWPWindowsUIWebUI.lib │ │ │ ├── ObjCUWPWindowsUIWebUICore.dll │ │ │ ├── ObjCUWPWindowsUIWebUICore.lib │ │ │ ├── ObjCUWPWindowsUIXaml.dll │ │ │ ├── ObjCUWPWindowsUIXaml.lib │ │ │ ├── ObjCUWPWindowsUIXamlAutomationText.dll │ │ │ ├── ObjCUWPWindowsUIXamlAutomationText.lib │ │ │ ├── ObjCUWPWindowsUIXamlControlsMaps.dll │ │ │ ├── ObjCUWPWindowsUIXamlControlsMaps.lib │ │ │ ├── ObjCUWPWindowsUIXamlHosting.dll │ │ │ ├── ObjCUWPWindowsUIXamlHosting.lib │ │ │ ├── ObjCUWPWindowsUIXamlInterop.dll │ │ │ ├── ObjCUWPWindowsUIXamlInterop.lib │ │ │ ├── ObjCUWPWindowsUIXamlMarkup.dll │ │ │ ├── ObjCUWPWindowsUIXamlMarkup.lib │ │ │ ├── ObjCUWPWindowsUIXamlMediaImaging.dll │ │ │ ├── ObjCUWPWindowsUIXamlMediaImaging.lib │ │ │ ├── ObjCUWPWindowsUIXamlPrinting.dll │ │ │ ├── ObjCUWPWindowsUIXamlPrinting.lib │ │ │ ├── ObjCUWPWindowsUIXamlResources.dll │ │ │ ├── ObjCUWPWindowsUIXamlResources.lib │ │ │ ├── ObjCUWPWindowsUIXamlShapes.dll │ │ │ ├── ObjCUWPWindowsUIXamlShapes.lib │ │ │ ├── ObjCUWPWindowsWeb.dll │ │ │ ├── ObjCUWPWindowsWeb.lib │ │ │ ├── ObjCUWPWindowsWebAtomPub.dll │ │ │ ├── ObjCUWPWindowsWebAtomPub.lib │ │ │ ├── ObjCUWPWindowsWebHttpDiagnostics.dll │ │ │ ├── ObjCUWPWindowsWebHttpDiagnostics.lib │ │ │ ├── ObjCUWPWindowsWebHttpFilters.dll │ │ │ ├── ObjCUWPWindowsWebHttpFilters.lib │ │ │ ├── ObjCUWPWindowsWebSyndication.dll │ │ │ ├── ObjCUWPWindowsWebSyndication.lib │ │ │ ├── OpenAL.dll │ │ │ ├── OpenAL.lib │ │ │ ├── OpenAL.pdb │ │ │ ├── cassowary-0.60-Debug.lib │ │ │ ├── cassowary-0.60-Debug.pdb │ │ │ ├── cassowary-0.60.lib │ │ │ ├── cassowary-0.60.pdb │ │ │ ├── common.pri │ │ │ ├── i18n.pri │ │ │ ├── icudt.exp │ │ │ ├── icudt.lib │ │ │ ├── icudt57.dll │ │ │ ├── icuin.exp │ │ │ ├── icuin.lib │ │ │ ├── icuin.pdb │ │ │ ├── icuin57.dll │ │ │ ├── icuuc.exp │ │ │ ├── icuuc.lib │ │ │ ├── icuuc.pdb │ │ │ ├── icuuc57.dll │ │ │ ├── libeay32.dll │ │ │ ├── libeay32.lib │ │ │ ├── libeay32.pdb │ │ │ ├── libjpeg.dll │ │ │ ├── libjpeg.lib │ │ │ ├── libjpeg.pdb │ │ │ ├── libxml2.dll │ │ │ ├── libxml2.lib │ │ │ ├── libxml2.pdb │ │ │ ├── libz.dll │ │ │ ├── libz.lib │ │ │ ├── libz.pdb │ │ │ ├── ssleay32.dll │ │ │ ├── ssleay32.lib │ │ │ └── ssleay32.pdb │ ├── include │ │ ├── OpenAL │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── alext.h │ │ │ ├── efx-presets.h │ │ │ ├── efx.h │ │ │ ├── module.modulemap │ │ │ └── oalStaticBufferExtension.h │ │ ├── cassowary-0.60 │ │ │ ├── Cassowary.h │ │ │ ├── Cl.h │ │ │ ├── ClAbstractVariable.h │ │ │ ├── ClC.h │ │ │ ├── ClConstraint.h │ │ │ ├── ClConstraintHash.h │ │ │ ├── ClDummyVariable.h │ │ │ ├── ClEditConstraint.h │ │ │ ├── ClEditOrStayConstraint.h │ │ │ ├── ClErrors.h │ │ │ ├── ClFDBinaryOneWayConstraint.h │ │ │ ├── ClFDConnectorVariable.h │ │ │ ├── ClFDConstraint.h │ │ │ ├── ClFDSolver.h │ │ │ ├── ClFDVariable.h │ │ │ ├── ClFloatVariable.h │ │ │ ├── ClLinearConstraint.h │ │ │ ├── ClLinearEquation.h │ │ │ ├── ClLinearExpression.h │ │ │ ├── ClLinearExpression_fwd.h │ │ │ ├── ClLinearInequality.h │ │ │ ├── ClMap.h │ │ │ ├── ClObjectiveVariable.h │ │ │ ├── ClPoint.h │ │ │ ├── ClReader.h │ │ │ ├── ClSet.h │ │ │ ├── ClSimplexSolver.h │ │ │ ├── ClSlackVariable.h │ │ │ ├── ClSolver.h │ │ │ ├── ClStayConstraint.h │ │ │ ├── ClStrength.h │ │ │ ├── ClSymbolicWeight.h │ │ │ ├── ClTableau.h │ │ │ ├── ClTypedefs.h │ │ │ ├── ClVariable.h │ │ │ ├── cl_auto_ptr.h │ │ │ ├── config-inline.h │ │ │ ├── config.h │ │ │ ├── debug.h │ │ │ └── timer.h │ │ ├── icu │ │ │ └── unicode │ │ │ │ ├── alphaindex.h │ │ │ │ ├── appendable.h │ │ │ │ ├── basictz.h │ │ │ │ ├── brkiter.h │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestrie.h │ │ │ │ ├── bytestriebuilder.h │ │ │ │ ├── calendar.h │ │ │ │ ├── caniter.h │ │ │ │ ├── chariter.h │ │ │ │ ├── choicfmt.h │ │ │ │ ├── coleitr.h │ │ │ │ ├── coll.h │ │ │ │ ├── compactdecimalformat.h │ │ │ │ ├── curramt.h │ │ │ │ ├── currpinf.h │ │ │ │ ├── currunit.h │ │ │ │ ├── datefmt.h │ │ │ │ ├── dbbi.h │ │ │ │ ├── dcfmtsym.h │ │ │ │ ├── decimfmt.h │ │ │ │ ├── docmain.h │ │ │ │ ├── dtfmtsym.h │ │ │ │ ├── dtintrv.h │ │ │ │ ├── dtitvfmt.h │ │ │ │ ├── dtitvinf.h │ │ │ │ ├── dtptngen.h │ │ │ │ ├── dtrule.h │ │ │ │ ├── enumset.h │ │ │ │ ├── errorcode.h │ │ │ │ ├── fieldpos.h │ │ │ │ ├── fmtable.h │ │ │ │ ├── format.h │ │ │ │ ├── fpositer.h │ │ │ │ ├── gender.h │ │ │ │ ├── gregocal.h │ │ │ │ ├── icudataver.h │ │ │ │ ├── icuplug.h │ │ │ │ ├── idna.h │ │ │ │ ├── listformatter.h │ │ │ │ ├── localpointer.h │ │ │ │ ├── locdspnm.h │ │ │ │ ├── locid.h │ │ │ │ ├── measfmt.h │ │ │ │ ├── measunit.h │ │ │ │ ├── measure.h │ │ │ │ ├── messagepattern.h │ │ │ │ ├── msgfmt.h │ │ │ │ ├── normalizer2.h │ │ │ │ ├── normlzr.h │ │ │ │ ├── numfmt.h │ │ │ │ ├── numsys.h │ │ │ │ ├── parseerr.h │ │ │ │ ├── parsepos.h │ │ │ │ ├── platform.h │ │ │ │ ├── plurfmt.h │ │ │ │ ├── plurrule.h │ │ │ │ ├── ptypes.h │ │ │ │ ├── putil.h │ │ │ │ ├── rbbi.h │ │ │ │ ├── rbnf.h │ │ │ │ ├── rbtz.h │ │ │ │ ├── regex.h │ │ │ │ ├── region.h │ │ │ │ ├── reldatefmt.h │ │ │ │ ├── rep.h │ │ │ │ ├── resbund.h │ │ │ │ ├── schriter.h │ │ │ │ ├── scientificnumberformatter.h │ │ │ │ ├── search.h │ │ │ │ ├── selfmt.h │ │ │ │ ├── simpleformatter.h │ │ │ │ ├── simpletz.h │ │ │ │ ├── smpdtfmt.h │ │ │ │ ├── sortkey.h │ │ │ │ ├── std_string.h │ │ │ │ ├── strenum.h │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringtriebuilder.h │ │ │ │ ├── stsearch.h │ │ │ │ ├── symtable.h │ │ │ │ ├── tblcoll.h │ │ │ │ ├── timezone.h │ │ │ │ ├── tmunit.h │ │ │ │ ├── tmutamt.h │ │ │ │ ├── tmutfmt.h │ │ │ │ ├── translit.h │ │ │ │ ├── tzfmt.h │ │ │ │ ├── tznames.h │ │ │ │ ├── tzrule.h │ │ │ │ ├── tztrans.h │ │ │ │ ├── ubidi.h │ │ │ │ ├── ubrk.h │ │ │ │ ├── ucal.h │ │ │ │ ├── ucasemap.h │ │ │ │ ├── ucat.h │ │ │ │ ├── uchar.h │ │ │ │ ├── ucharstrie.h │ │ │ │ ├── ucharstriebuilder.h │ │ │ │ ├── uchriter.h │ │ │ │ ├── uclean.h │ │ │ │ ├── ucnv.h │ │ │ │ ├── ucnv_cb.h │ │ │ │ ├── ucnv_err.h │ │ │ │ ├── ucnvsel.h │ │ │ │ ├── ucol.h │ │ │ │ ├── ucoleitr.h │ │ │ │ ├── uconfig.h │ │ │ │ ├── ucsdet.h │ │ │ │ ├── ucurr.h │ │ │ │ ├── udat.h │ │ │ │ ├── udata.h │ │ │ │ ├── udateintervalformat.h │ │ │ │ ├── udatpg.h │ │ │ │ ├── udisplaycontext.h │ │ │ │ ├── uenum.h │ │ │ │ ├── ufieldpositer.h │ │ │ │ ├── uformattable.h │ │ │ │ ├── ugender.h │ │ │ │ ├── uidna.h │ │ │ │ ├── uiter.h │ │ │ │ ├── uldnames.h │ │ │ │ ├── ulistformatter.h │ │ │ │ ├── uloc.h │ │ │ │ ├── ulocdata.h │ │ │ │ ├── umachine.h │ │ │ │ ├── umisc.h │ │ │ │ ├── umsg.h │ │ │ │ ├── unifilt.h │ │ │ │ ├── unifunct.h │ │ │ │ ├── unimatch.h │ │ │ │ ├── unirepl.h │ │ │ │ ├── uniset.h │ │ │ │ ├── unistr.h │ │ │ │ ├── unorm.h │ │ │ │ ├── unorm2.h │ │ │ │ ├── unum.h │ │ │ │ ├── unumsys.h │ │ │ │ ├── uobject.h │ │ │ │ ├── upluralrules.h │ │ │ │ ├── uregex.h │ │ │ │ ├── uregion.h │ │ │ │ ├── ureldatefmt.h │ │ │ │ ├── urename.h │ │ │ │ ├── urep.h │ │ │ │ ├── ures.h │ │ │ │ ├── uscript.h │ │ │ │ ├── usearch.h │ │ │ │ ├── uset.h │ │ │ │ ├── usetiter.h │ │ │ │ ├── ushape.h │ │ │ │ ├── uspoof.h │ │ │ │ ├── usprep.h │ │ │ │ ├── ustdio.h │ │ │ │ ├── ustream.h │ │ │ │ ├── ustring.h │ │ │ │ ├── ustringtrie.h │ │ │ │ ├── utext.h │ │ │ │ ├── utf.h │ │ │ │ ├── utf16.h │ │ │ │ ├── utf32.h │ │ │ │ ├── utf8.h │ │ │ │ ├── utf_old.h │ │ │ │ ├── utmscale.h │ │ │ │ ├── utrace.h │ │ │ │ ├── utrans.h │ │ │ │ ├── utypes.h │ │ │ │ ├── uvernum.h │ │ │ │ ├── uversion.h │ │ │ │ └── vtzone.h │ │ ├── libjpeg │ │ │ ├── jconfig.h │ │ │ ├── jdct.h │ │ │ ├── jerror.h │ │ │ ├── jinclude.h │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ └── jversion.h │ │ ├── libxml │ │ │ ├── DOCBparser.h │ │ │ ├── HTMLparser.h │ │ │ ├── HTMLtree.h │ │ │ ├── SAX.h │ │ │ ├── SAX2.h │ │ │ ├── c14n.h │ │ │ ├── catalog.h │ │ │ ├── chvalid.h │ │ │ ├── debugXML.h │ │ │ ├── dict.h │ │ │ ├── encoding.h │ │ │ ├── entities.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── list.h │ │ │ ├── nanoftp.h │ │ │ ├── nanohttp.h │ │ │ ├── parser.h │ │ │ ├── parserInternals.h │ │ │ ├── pattern.h │ │ │ ├── relaxng.h │ │ │ ├── schemasInternals.h │ │ │ ├── schematron.h │ │ │ ├── threads.h │ │ │ ├── tree.h │ │ │ ├── uri.h │ │ │ ├── valid.h │ │ │ ├── xinclude.h │ │ │ ├── xlink.h │ │ │ ├── xmlIO.h │ │ │ ├── xmlautomata.h │ │ │ ├── xmlerror.h │ │ │ ├── xmlexports.h │ │ │ ├── xmlmemory.h │ │ │ ├── xmlmodule.h │ │ │ ├── xmlreader.h │ │ │ ├── xmlregexp.h │ │ │ ├── xmlsave.h │ │ │ ├── xmlschemas.h │ │ │ ├── xmlschemastypes.h │ │ │ ├── xmlstring.h │ │ │ ├── xmlunicode.h │ │ │ ├── xmlversion.h │ │ │ ├── xmlwriter.h │ │ │ ├── xpath.h │ │ │ ├── xpathInternals.h │ │ │ └── xpointer.h │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── applink.c │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── winrtangle.h │ │ ├── zconf.h │ │ └── zlib.h │ └── nuget │ │ └── taef.redist.wlk.1.0.170206001-nativetargets.nupkg └── scripts │ ├── createlibs.py │ ├── libjpeg.bat │ ├── libxml2.bat │ ├── openssl.bat │ ├── paths.txt │ ├── zlib.patch │ └── zlib.py ├── docs ├── AddressBook │ └── AddressBook Framework Dev Design Doc.docx ├── CoreAnimation │ └── WinObjc.Composition.and.Layout.docx ├── CoreFoundation │ ├── CoreFoundationDevDesign.md │ ├── NSCFErrorDesign.md │ └── media │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ └── image4.png ├── CoreGraphics │ └── CoreGraphics - Direct2D.docx ├── CoreText │ └── WinObjC.CoreText.docx ├── Foundation │ ├── CortanaForegroundActivation.md │ ├── NSInvocation.md │ ├── NSUndoManager.docx │ ├── NSUserDefaults.md │ ├── ToastForegroundActivation.md │ └── media │ │ ├── Cortana_Foreground_Activation.png │ │ └── Toast_Foreground_Activation.png ├── Testing │ └── OSXWinObjCTests.md └── UIKit │ ├── All.UX.Controls.xlsx │ ├── WinObjC.UI.Touch.Input.docx │ └── WinObjC.UIKit.docx ├── include ├── AVFoundation │ ├── AVAsset.h │ ├── AVAssetExportSession.h │ ├── AVAssetImageGenerator.h │ ├── AVAssetReader.h │ ├── AVAssetReaderAudioMixOutput.h │ ├── AVAssetReaderOutput.h │ ├── AVAssetReaderOutputMetadataAdaptor.h │ ├── AVAssetReaderSampleReferenceOutput.h │ ├── AVAssetReaderTrackOutput.h │ ├── AVAssetReaderVideoCompositionOutput.h │ ├── AVAssetResourceLoader.h │ ├── AVAssetResourceLoaderDelegate.h │ ├── AVAssetResourceLoadingContentInformationRequest.h │ ├── AVAssetResourceLoadingDataRequest.h │ ├── AVAssetResourceLoadingRequest.h │ ├── AVAssetResourceRenewalRequest.h │ ├── AVAssetTrack.h │ ├── AVAssetTrackGroup.h │ ├── AVAssetTrackSegment.h │ ├── AVAssetWriter.h │ ├── AVAssetWriterInput.h │ ├── AVAssetWriterInputGroup.h │ ├── AVAssetWriterInputMetadataAdaptor.h │ ├── AVAssetWriterInputPassDescription.h │ ├── AVAssetWriterInputPixelBufferAdaptor.h │ ├── AVAsynchronousKeyValueLoading.h │ ├── AVAsynchronousVideoCompositionRequest.h │ ├── AVAudio3DMixing.h │ ├── AVAudioBuffer.h │ ├── AVAudioChannelLayout.h │ ├── AVAudioEngine.h │ ├── AVAudioEnvironmentDistanceAttenuationParameters.h │ ├── AVAudioEnvironmentNode.h │ ├── AVAudioEnvironmentReverbParameters.h │ ├── AVAudioFile.h │ ├── AVAudioFormat.h │ ├── AVAudioIONode.h │ ├── AVAudioInputNode.h │ ├── AVAudioMix.h │ ├── AVAudioMixInputParameters.h │ ├── AVAudioMixerNode.h │ ├── AVAudioMixing.h │ ├── AVAudioNode.h │ ├── AVAudioOutputNode.h │ ├── AVAudioPCMBuffer.h │ ├── AVAudioPlayer.h │ ├── AVAudioPlayerDelegate.h │ ├── AVAudioPlayerNode.h │ ├── AVAudioRecorder.h │ ├── AVAudioRecorderDelegate.h │ ├── AVAudioSession.h │ ├── AVAudioSessionChannelDescription.h │ ├── AVAudioSessionDataSourceDescription.h │ ├── AVAudioSessionDelegate.h │ ├── AVAudioSessionPortDescription.h │ ├── AVAudioSessionRouteDescription.h │ ├── AVAudioStereoMixing.h │ ├── AVAudioTime.h │ ├── AVAudioUnit.h │ ├── AVAudioUnitDelay.h │ ├── AVAudioUnitDistortion.h │ ├── AVAudioUnitEQ.h │ ├── AVAudioUnitEQFilterParameters.h │ ├── AVAudioUnitEffect.h │ ├── AVAudioUnitGenerator.h │ ├── AVAudioUnitMIDIInstrument.h │ ├── AVAudioUnitReverb.h │ ├── AVAudioUnitSampler.h │ ├── AVAudioUnitTimeEffect.h │ ├── AVAudioUnitTimePitch.h │ ├── AVAudioUnitVarispeed.h │ ├── AVCaptureAudioChannel.h │ ├── AVCaptureAudioDataOutput.h │ ├── AVCaptureAudioDataOutputSampleBufferDelegate.h │ ├── AVCaptureAutoExposureBracketedStillImageSettings.h │ ├── AVCaptureBracketedStillImageSettings.h │ ├── AVCaptureConnection.h │ ├── AVCaptureDevice.h │ ├── AVCaptureDeviceFormat.h │ ├── AVCaptureDeviceInput.h │ ├── AVCaptureFileOutput.h │ ├── AVCaptureFileOutputRecordingDelegate.h │ ├── AVCaptureInput.h │ ├── AVCaptureInputPort.h │ ├── AVCaptureManualExposureBracketedStillImageSettings.h │ ├── AVCaptureMetadataOutput.h │ ├── AVCaptureMetadataOutputObjectsDelegate.h │ ├── AVCaptureMovieFileOutput.h │ ├── AVCaptureOutput.h │ ├── AVCaptureSession.h │ ├── AVCaptureStillImageOutput.h │ ├── AVCaptureVideoDataOutput.h │ ├── AVCaptureVideoDataOutputSampleBufferDelegate.h │ ├── AVCaptureVideoPreviewLayer.h │ ├── AVComposition.h │ ├── AVCompositionTrack.h │ ├── AVCompositionTrackSegment.h │ ├── AVFoundation.h │ ├── AVFoundationConstants.h │ ├── AVFoundationExport.h │ ├── AVFoundationTypes.h │ ├── AVFrameRateRange.h │ ├── AVMIDIPlayer.h │ ├── AVMediaSelectionGroup.h │ ├── AVMediaSelectionOption.h │ ├── AVMetadataFaceObject.h │ ├── AVMetadataGroup.h │ ├── AVMetadataItem.h │ ├── AVMetadataItemFilter.h │ ├── AVMetadataMachineReadableCodeObject.h │ ├── AVMetadataObject.h │ ├── AVMutableAudioMix.h │ ├── AVMutableAudioMixInputParameters.h │ ├── AVMutableComposition.h │ ├── AVMutableCompositionTrack.h │ ├── AVMutableMetadataItem.h │ ├── AVMutableTimedMetadataGroup.h │ ├── AVMutableVideoComposition.h │ ├── AVMutableVideoCompositionInstruction.h │ ├── AVMutableVideoCompositionLayerInstruction.h │ ├── AVOutputSettingsAssistant.h │ ├── AVPlayer.h │ ├── AVPlayerItem.h │ ├── AVPlayerItemAccessLog.h │ ├── AVPlayerItemAccessLogEvent.h │ ├── AVPlayerItemErrorLog.h │ ├── AVPlayerItemErrorLogEvent.h │ ├── AVPlayerItemLegibleOutput.h │ ├── AVPlayerItemLegibleOutputPushDelegate.h │ ├── AVPlayerItemMetadataOutput.h │ ├── AVPlayerItemMetadataOutputPushDelegate.h │ ├── AVPlayerItemOutput.h │ ├── AVPlayerItemOutputPullDelegate.h │ ├── AVPlayerItemOutputPushDelegate.h │ ├── AVPlayerItemTrack.h │ ├── AVPlayerItemVideoOutput.h │ ├── AVPlayerLayer.h │ ├── AVPlayerMediaSelectionCriteria.h │ ├── AVQueuePlayer.h │ ├── AVSampleBufferDisplayLayer.h │ ├── AVSpeechSynthesisVoice.h │ ├── AVSpeechSynthesizer.h │ ├── AVSpeechSynthesizerDelegate.h │ ├── AVSpeechUtterance.h │ ├── AVSynchronizedLayer.h │ ├── AVTextStyleRule.h │ ├── AVTimedMetadataGroup.h │ ├── AVURLAsset.h │ ├── AVVideoCompositing.h │ ├── AVVideoComposition.h │ ├── AVVideoCompositionCoreAnimationTool.h │ ├── AVVideoCompositionInstruction.h │ ├── AVVideoCompositionLayerInstruction.h │ ├── AVVideoCompositionRenderContext.h │ ├── AVVideoCompositionValidationHandling.h │ └── module.modulemap ├── AVKit │ ├── AVKit.h │ ├── AVKitExport.h │ ├── AVPictureInPictureController.h │ ├── AVPictureInPictureControllerDelegate.h │ ├── AVPlayerViewController.h │ ├── AVPlayerViewControllerDelegate.h │ └── module.modulemap ├── Accelerate │ ├── Accelerate.h │ ├── AccelerateExport.h │ ├── cblas.h │ ├── eigen.h │ ├── module.modulemap │ ├── vDSP.h │ └── vImage.h ├── Accounts │ ├── ACAccount.h │ ├── ACAccountCredential.h │ ├── ACAccountExport.h │ ├── ACAccountStore.h │ ├── ACAccountType.h │ └── Accounts.h ├── AdSupport │ ├── ASIdentifierManager.h │ ├── AdSupport.h │ ├── AdSupportExport.h │ └── module.modulemap ├── AddressBook │ ├── ABAddressBook.h │ ├── ABGroup.h │ ├── ABMultiValue.h │ ├── ABMutableMultiValue.h │ ├── ABPerson.h │ ├── ABRecord.h │ ├── ABSource.h │ ├── AddressBook.h │ ├── AddressBookExport.h │ └── module.modulemap ├── AddressBookUI │ ├── ABNewPersonViewController.h │ ├── ABNewPersonViewControllerDelegate.h │ ├── ABPeoplePickerNavigationController.h │ ├── ABPeoplePickerNavigationControllerDelegate.h │ ├── ABPersonViewController.h │ ├── ABPersonViewControllerDelegate.h │ ├── ABUnknownPersonViewController.h │ ├── ABUnknownPersonViewControllerDelegate.h │ ├── AddressBookUI.h │ ├── AddressBookUIExport.h │ ├── AddressBookUIFunctions.h │ └── module.modulemap ├── ApplicationServices │ └── ApplicationServices.h ├── AssertMacros.h ├── AssetsLibrary │ ├── ALAsset.h │ ├── ALAssetRepresentation.h │ ├── ALAssetsFilter.h │ ├── ALAssetsGroup.h │ ├── ALAssetsLibrary.h │ ├── AssetsLibrary.h │ ├── AssetsLibraryExport.h │ └── module.modulemap ├── AudioToolbox │ ├── AudioConverter.h │ ├── AudioConverterInternal.h │ ├── AudioFile.h │ ├── AudioFileStream.h │ ├── AudioFileTypes.h │ ├── AudioFormat.h │ ├── AudioQueue.h │ ├── AudioServices.h │ ├── AudioSession.h │ ├── AudioToolbox.h │ ├── AudioToolboxDebugging.h │ ├── AudioToolboxExport.h │ ├── AudioUnitProcessingGraph.h │ ├── ExtendedAudioFile.h │ ├── MusicCommon.h │ ├── MusicDevice.h │ ├── MusicSequence.h │ ├── MusicTrack.h │ ├── SystemSound.h │ └── module.modulemap ├── AudioUnit │ ├── AUAudioUnit.h │ ├── AUAudioUnitBus.h │ ├── AUAudioUnitBusArray.h │ ├── AUAudioUnitFactory.h │ ├── AUAudioUnitPreset.h │ ├── AUAudioUnitV2Bridge.h │ ├── AUParameter.h │ ├── AUParameterGroup.h │ ├── AUParameterNode.h │ ├── AUParameterTree.h │ ├── AudioComponent.h │ ├── AudioUnit.h │ ├── AudioUnitComponent.h │ ├── AudioUnitExport.h │ ├── AudioUnitParameters.h │ ├── AudioUnitProperties.h │ ├── AudioUnitTypes.h │ ├── OutputAudioUnit.h │ └── module.modulemap ├── Availability.h ├── AvailabilityMacros.h ├── Block.h ├── CFNetwork │ ├── CFFTPStream.h │ ├── CFHTTPAuthentication.h │ ├── CFHTTPMessage.h │ ├── CFHTTPStream.h │ ├── CFHost.h │ ├── CFNetDiagnostics.h │ ├── CFNetServices.h │ ├── CFNetwork.h │ ├── CFNetworkBase.h │ ├── CFNetworkErrors.h │ ├── CFNetworkExport.h │ ├── CFProxySupport.h │ ├── CFSocketStream.h │ └── module.modulemap ├── CloudKit │ ├── CKAsset.h │ ├── CKContainer.h │ ├── CKDatabase.h │ ├── CKDatabaseOperation.h │ ├── CKDiscoverAllContactsOperation.h │ ├── CKDiscoverUserInfosOperation.h │ ├── CKDiscoveredUserInfo.h │ ├── CKFetchNotificationChangesOperation.h │ ├── CKFetchRecordChangesOperation.h │ ├── CKFetchRecordZonesOperation.h │ ├── CKFetchRecordsOperation.h │ ├── CKFetchSubscriptionsOperation.h │ ├── CKLocationSortDescriptor.h │ ├── CKMarkNotificationsReadOperation.h │ ├── CKModifyBadgeOperation.h │ ├── CKModifyRecordZonesOperation.h │ ├── CKModifyRecordsOperation.h │ ├── CKModifySubscriptionsOperation.h │ ├── CKNotification.h │ ├── CKNotificationID.h │ ├── CKNotificationInfo.h │ ├── CKOperation.h │ ├── CKQuery.h │ ├── CKQueryCursor.h │ ├── CKQueryNotification.h │ ├── CKQueryOperation.h │ ├── CKRecord.h │ ├── CKRecordID.h │ ├── CKRecordValue.h │ ├── CKRecordZone.h │ ├── CKRecordZoneID.h │ ├── CKRecordZoneNotification.h │ ├── CKReference.h │ ├── CKServerChangeToken.h │ ├── CKSubscription.h │ ├── CloudKit.h │ ├── CloudKitExport.h │ ├── CloudKitFrameworkConstants.h │ └── module.modulemap ├── CommonCrypto │ ├── CommonCrypto.h │ ├── CommonCryptor.h │ ├── CommonDigest.h │ ├── CommonHMAC.h │ ├── CommonKeyDerivation.h │ ├── CommonSymmetricKeywrap.h │ └── module.modulemap ├── Contacts │ ├── CNContact.h │ ├── CNContactFetchRequest.h │ ├── CNContactFormatter.h │ ├── CNContactProperty.h │ ├── CNContactRelation.h │ ├── CNContactStore.h │ ├── CNContactVCardSerialization.h │ ├── CNContainer.h │ ├── CNGroup.h │ ├── CNInstantMessageAddress.h │ ├── CNLabeledValue.h │ ├── CNMutableContact.h │ ├── CNMutableGroup.h │ ├── CNMutablePostalAddress.h │ ├── CNPhoneNumber.h │ ├── CNPostalAddress.h │ ├── CNPostalAddressFormatter.h │ ├── CNSaveRequest.h │ ├── CNSocialProfile.h │ ├── Contacts.h │ ├── ContactsConstants.h │ ├── ContactsExport.h │ └── module.modulemap ├── CoreAudio │ ├── CoreAudio.h │ ├── CoreAudioClock.h │ ├── CoreAudioExport.h │ ├── CoreAudioTypes.h │ └── module.modulemap ├── CoreAudioKit │ ├── CABTMIDICentralViewController.h │ ├── CABTMIDILocalPeripheralViewController.h │ ├── CoreAudioKit.h │ ├── CoreAudioKitExport.h │ └── module.modulemap ├── CoreBluetooth │ ├── CBATTRequest.h │ ├── CBAttribute.h │ ├── CBCentral.h │ ├── CBCentralManager.h │ ├── CBCentralManagerDelegate.h │ ├── CBCharacteristic.h │ ├── CBConstants.h │ ├── CBDescriptor.h │ ├── CBMutableCharacteristic.h │ ├── CBMutableDescriptor.h │ ├── CBMutableService.h │ ├── CBPeer.h │ ├── CBPeripheral.h │ ├── CBPeripheralDelegate.h │ ├── CBPeripheralManager.h │ ├── CBPeripheralManagerDelegate.h │ ├── CBService.h │ ├── CBUUID.h │ ├── CoreBluetooth.h │ ├── CoreBluetoothExport.h │ └── module.modulemap ├── CoreData │ ├── CoreData.h │ ├── CoreDataConstants.h │ ├── CoreDataErrors.h │ ├── CoreDataExport.h │ ├── NSAtomicStore.h │ ├── NSAtomicStoreCacheNode.h │ ├── NSAttributeDescription.h │ ├── NSEntityDescription.h │ ├── NSEntityMapping.h │ ├── NSEntityMigrationPolicy.h │ ├── NSExpressionDescription.h │ ├── NSFetchRequest.h │ ├── NSFetchRequestExpression.h │ ├── NSFetchedPropertyDescription.h │ ├── NSFetchedResultsController.h │ ├── NSIncrementalStore.h │ ├── NSIncrementalStoreNode.h │ ├── NSManagedObject.h │ ├── NSManagedObjectContext.h │ ├── NSManagedObjectID.h │ ├── NSManagedObjectModel.h │ ├── NSMappingModel.h │ ├── NSMergeConflict.h │ ├── NSMergePolicy.h │ ├── NSMigrationManager.h │ ├── NSPersistentStore.h │ ├── NSPersistentStoreCoordinator.h │ ├── NSPersistentStoreRequest.h │ ├── NSPropertyDescription.h │ ├── NSPropertyMapping.h │ ├── NSRelationshipDescription.h │ ├── NSSaveChangesRequest.h │ └── module.modulemap ├── CoreFoundation │ ├── CFFileDescriptor.h │ ├── CFNotificationCenter.h │ ├── CFStringTokenizer.h │ └── CoreFoundationExport.h ├── CoreGraphics │ ├── CGAffineTransform.h │ ├── CGBase.h │ ├── CGBitmapContext.h │ ├── CGColor.h │ ├── CGColorSpace.h │ ├── CGContext.h │ ├── CGDataConsumer.h │ ├── CGDataProvider.h │ ├── CGFont.h │ ├── CGFunction.h │ ├── CGGeometry.h │ ├── CGGradient.h │ ├── CGImage.h │ ├── CGLayer.h │ ├── CGPDFArray.h │ ├── CGPDFContentStream.h │ ├── CGPDFContext.h │ ├── CGPDFDictionary.h │ ├── CGPDFDocument.h │ ├── CGPDFObject.h │ ├── CGPDFOperatorTable.h │ ├── CGPDFPage.h │ ├── CGPDFScanner.h │ ├── CGPDFStream.h │ ├── CGPDFString.h │ ├── CGPath.h │ ├── CGPattern.h │ ├── CGShading.h │ ├── CoreGraphics.h │ ├── CoreGraphicsExport.h │ └── module.modulemap ├── CoreImage │ ├── CIColor.h │ ├── CIColorKernel.h │ ├── CIContext.h │ ├── CIDetector.h │ ├── CIFaceFeature.h │ ├── CIFeature.h │ ├── CIFilter.h │ ├── CIFilterConstructor.h │ ├── CIFilterShape.h │ ├── CIImage.h │ ├── CIImageAccumulator.h │ ├── CIImageProvider.h │ ├── CIKernel.h │ ├── CIQRCodeFeature.h │ ├── CIRectangleFeature.h │ ├── CISampler.h │ ├── CITextFeature.h │ ├── CIVector.h │ ├── CIWarpKernel.h │ ├── CoreImage.h │ ├── CoreImageExport.h │ └── module.modulemap ├── CoreLocation │ ├── CLBeacon.h │ ├── CLBeaconRegion.h │ ├── CLCircularRegion.h │ ├── CLFloor.h │ ├── CLGeocoder.h │ ├── CLHeading.h │ ├── CLLocation.h │ ├── CLLocationManager.h │ ├── CLLocationManagerDelegate.h │ ├── CLPlacemark.h │ ├── CLRegion.h │ ├── CLVisit.h │ ├── CoreLocation.h │ ├── CoreLocationConstants.h │ ├── CoreLocationDataTypes.h │ ├── CoreLocationExport.h │ ├── CoreLocationFunctions.h │ ├── NSValue+CoreLocationAdditions.h │ └── module.modulemap ├── CoreMIDI │ ├── CoreMIDI.h │ ├── CoreMIDIExport.h │ ├── MIDINetworkConnection.h │ ├── MIDINetworkHost.h │ ├── MIDINetworkSession.h │ ├── MIDIServices.h │ ├── MIDISetup.h │ ├── MIDIThruConnection.h │ └── module.modulemap ├── CoreMedia │ ├── CMAttachment.h │ ├── CMBlockBuffer.h │ ├── CMBufferQueue.h │ ├── CMFormatDescription.h │ ├── CMSampleBuffer.h │ ├── CMSync.h │ ├── CMTextMarkup.h │ ├── CMTime.h │ ├── CMTimeRange.h │ ├── CMTypes.h │ ├── CoreMedia.h │ ├── CoreMediaConstants.h │ ├── CoreMediaExport.h │ └── module.modulemap ├── CoreMotion │ ├── CMAccelerometerData.h │ ├── CMAltimeter.h │ ├── CMAltitudeData.h │ ├── CMAttitude.h │ ├── CMDeviceMotion.h │ ├── CMGyroData.h │ ├── CMLogItem.h │ ├── CMMagnetometerData.h │ ├── CMMotionActivity.h │ ├── CMMotionActivityManager.h │ ├── CMMotionManager.h │ ├── CMPedometer.h │ ├── CMPedometerData.h │ ├── CMRecordedAccelerometerData.h │ ├── CMSensorDataList.h │ ├── CMSensorRecorder.h │ ├── CMStepCounter.h │ ├── CoreMotion.h │ ├── CoreMotionExport.h │ └── module.modulemap ├── CoreTelephony │ ├── CTCall.h │ ├── CTCallCenter.h │ ├── CTCarrier.h │ ├── CTSubscriber.h │ ├── CTTelephonyNetworkInfo.h │ ├── CoreTelephony.h │ ├── CoreTelephonyDefines.h │ ├── CoreTelephonyExport.h │ └── module.modulemap ├── CoreText │ ├── CTFont.h │ ├── CTFontCollection.h │ ├── CTFontDescriptor.h │ ├── CTFontManager.h │ ├── CTFrame.h │ ├── CTFramesetter.h │ ├── CTGlyphInfo.h │ ├── CTLine.h │ ├── CTParagraphStyle.h │ ├── CTRun.h │ ├── CTRunDelegate.h │ ├── CTStringAttributes.h │ ├── CTTextTab.h │ ├── CTTypesetter.h │ ├── CTUtilities.h │ ├── CoreText.h │ ├── CoreTextExport.h │ └── module.modulemap ├── CoreVideo │ ├── CVBuffer.h │ ├── CVImageBuffer.h │ ├── CVMetalTexture.h │ ├── CVMetalTextureCache.h │ ├── CVOpenGLESTexture.h │ ├── CVOpenGLESTextureCache.h │ ├── CVPixelBuffer.h │ ├── CVPixelBufferPool.h │ ├── CVPixelFormatDescription.h │ ├── CVTime.h │ ├── CoreVideo.h │ ├── CoreVideoConstants.h │ ├── CoreVideoExport.h │ └── module.modulemap ├── EventKit │ ├── EKAlarm.h │ ├── EKCalendar.h │ ├── EKCalendarItem.h │ ├── EKEvent.h │ ├── EKEventStore.h │ ├── EKObject.h │ ├── EKParticipant.h │ ├── EKRecurrenceDayOfWeek.h │ ├── EKRecurrenceEnd.h │ ├── EKRecurrenceRule.h │ ├── EKReminder.h │ ├── EKSource.h │ ├── EKStructuredLocation.h │ ├── EventKit.h │ ├── EventKitConstants.h │ ├── EventKitExport.h │ └── module.modulemap ├── EventKitUI │ ├── EKCalendarChooser.h │ ├── EKCalendarChooserDelegate.h │ ├── EKEventEditViewController.h │ ├── EKEventEditViewDelegate.h │ ├── EKEventViewController.h │ ├── EKEventViewDelegate.h │ ├── EventKitUI.h │ ├── EventKitUIExport.h │ └── module.modulemap ├── Foundation │ ├── FlexBisonRules │ │ ├── rules.y │ │ └── scanner.l │ ├── Foundation.h │ ├── FoundationErrors.h │ ├── FoundationExport.h │ ├── NSArchiver.h │ ├── NSArray.h │ ├── NSAssertionHandler.h │ ├── NSAttributedString.h │ ├── NSAutoreleasePool.h │ ├── NSBlockOperation.h │ ├── NSBundle.h │ ├── NSBundleResourceRequest.h │ ├── NSByteCountFormatter.h │ ├── NSByteOrder.h │ ├── NSCache.h │ ├── NSCachedURLResponse.h │ ├── NSCalendar.h │ ├── NSCalendarDate.h │ ├── NSCharacterSet.h │ ├── NSClassDescription.h │ ├── NSCoder.h │ ├── NSComparisonPredicate.h │ ├── NSCompoundPredicate.h │ ├── NSCondition.h │ ├── NSConditionLock.h │ ├── NSCountedSet.h │ ├── NSData.h │ ├── NSDataDetector.h │ ├── NSDate.h │ ├── NSDateComponents.h │ ├── NSDateComponentsFormatter.h │ ├── NSDateFormatter.h │ ├── NSDateIntervalFormatter.h │ ├── NSDebug.h │ ├── NSDecimal.h │ ├── NSDecimalNumber.h │ ├── NSDecimalNumberBehaviors.h │ ├── NSDecimalNumberHandler.h │ ├── NSDictionary.h │ ├── NSDirectoryEnumerator.h │ ├── NSDiscardableContent.h │ ├── NSDistributedNotificationCenter.h │ ├── NSEnergyFormatter.h │ ├── NSEnumerator.h │ ├── NSError.h │ ├── NSErrorRecoveryAttempting.h │ ├── NSException.h │ ├── NSExpression.h │ ├── NSExtensionContext.h │ ├── NSExtensionItem.h │ ├── NSExtensionRequestHandling.h │ ├── NSFastEnumeration.h │ ├── NSFileAccessIntent.h │ ├── NSFileCoordinator.h │ ├── NSFileHandle.h │ ├── NSFileManager.h │ ├── NSFilePresenter.h │ ├── NSFileSecurity.h │ ├── NSFileVersion.h │ ├── NSFileWrapper.h │ ├── NSFormatter.h │ ├── NSHTTPCookie.h │ ├── NSHTTPCookieStorage.h │ ├── NSHTTPURLResponse.h │ ├── NSHashTable.h │ ├── NSHost.h │ ├── NSIndexPath.h │ ├── NSIndexSet.h │ ├── NSInputStream.h │ ├── NSInvocation.h │ ├── NSInvocationOperation.h │ ├── NSItemProvider.h │ ├── NSJSONSerialization.h │ ├── NSKeyValueCoding.h │ ├── NSKeyValueObserving.h │ ├── NSKeyedArchiver.h │ ├── NSKeyedUnarchiver.h │ ├── NSLengthFormatter.h │ ├── NSLinguisticTagger.h │ ├── NSLocale.h │ ├── NSLock.h │ ├── NSLocking.h │ ├── NSMachPort.h │ ├── NSMapTable.h │ ├── NSMassFormatter.h │ ├── NSMessagePort.h │ ├── NSMetadataItem.h │ ├── NSMetadataQuery.h │ ├── NSMetadataQueryAttributeValueTuple.h │ ├── NSMetadataQueryResultGroup.h │ ├── NSMethodSignature.h │ ├── NSMutableArray.h │ ├── NSMutableAttributedString.h │ ├── NSMutableCharacterSet.h │ ├── NSMutableData.h │ ├── NSMutableDictionary.h │ ├── NSMutableIndexSet.h │ ├── NSMutableOrderedSet.h │ ├── NSMutableSet.h │ ├── NSMutableString.h │ ├── NSMutableURLRequest.h │ ├── NSNetService.h │ ├── NSNetServiceBrowser.h │ ├── NSNotification.h │ ├── NSNotificationCenter.h │ ├── NSNotificationQueue.h │ ├── NSNull.h │ ├── NSNumber.h │ ├── NSNumberFormatter.h │ ├── NSObjCRuntime.h │ ├── NSObject.h │ ├── NSOperation.h │ ├── NSOperationQueue.h │ ├── NSOrderedSet.h │ ├── NSOrthography.h │ ├── NSOutputStream.h │ ├── NSPathUtilities.h │ ├── NSPersonNameComponents.h │ ├── NSPersonNameComponentsFormatter.h │ ├── NSPipe.h │ ├── NSPointerArray.h │ ├── NSPointerFunctions.h │ ├── NSPort.h │ ├── NSPortCoder.h │ ├── NSPortMessage.h │ ├── NSPredicate.h │ ├── NSProcessInfo.h │ ├── NSProgress.h │ ├── NSProgressReporting.h │ ├── NSPropertyListSerialization.h │ ├── NSProxy.h │ ├── NSPurgeableData.h │ ├── NSRange.h │ ├── NSRecursiveLock.h │ ├── NSRegularExpression.h │ ├── NSRunLoop.h │ ├── NSScanner.h │ ├── NSScriptWhoseTests.h │ ├── NSSet.h │ ├── NSSocketPort.h │ ├── NSSortDescriptor.h │ ├── NSStream.h │ ├── NSString.h │ ├── NSTextCheckingResult.h │ ├── NSThread.h │ ├── NSTimeZone.h │ ├── NSTimer.h │ ├── NSURL.h │ ├── NSURLAuthenticationChallenge.h │ ├── NSURLCache.h │ ├── NSURLComponents.h │ ├── NSURLConnection.h │ ├── NSURLCredential.h │ ├── NSURLCredentialStorage.h │ ├── NSURLDownload.h │ ├── NSURLError.h │ ├── NSURLProtectionSpace.h │ ├── NSURLProtocol.h │ ├── NSURLQueryItem.h │ ├── NSURLRequest.h │ ├── NSURLResponse.h │ ├── NSURLSession.h │ ├── NSURLSessionConfiguration.h │ ├── NSUUID.h │ ├── NSUbiquitousKeyValueStore.h │ ├── NSUnarchiver.h │ ├── NSUndoManager.h │ ├── NSUserActivity.h │ ├── NSUserDefaults.h │ ├── NSValue.h │ ├── NSValueTransformer.h │ ├── NSXMLDTD.h │ ├── NSXMLDTDNode.h │ ├── NSXMLDocument.h │ ├── NSXMLElement.h │ ├── NSXMLNode.h │ ├── NSXMLNodeOptions.h │ ├── NSXMLParser.h │ ├── NSZone.h │ └── module.modulemap ├── GLKit │ ├── GLKEffect.h │ ├── GLKEnums.h │ ├── GLKMath.h │ ├── GLKMatrixStack.h │ ├── GLKShader.h │ ├── GLKShaderDefs.h │ ├── GLKSkyboxEffect.h │ ├── GLKTexture.h │ ├── GLKView.h │ ├── GLKViewController.h │ ├── GLKit.h │ ├── GLKitExport.h │ └── module.modulemap ├── GameController │ ├── GCController.h │ ├── GCControllerAxisInput.h │ ├── GCControllerButtonInput.h │ ├── GCControllerDirectionPad.h │ ├── GCControllerElement.h │ ├── GCExtendedGamepad.h │ ├── GCExtendedGamepadSnapshot.h │ ├── GCGamepad.h │ ├── GCGamepadSnapshot.h │ ├── GCMotion.h │ ├── GCSnapshot.h │ ├── GameController.h │ ├── GameControllerExport.h │ └── module.modulemap ├── GameKit │ ├── GKAchievement.h │ ├── GKAchievementChallenge.h │ ├── GKAchievementDescription.h │ ├── GKAchievementViewController.h │ ├── GKAchievementViewControllerDelegate.h │ ├── GKChallenge.h │ ├── GKChallengeEventHandler.h │ ├── GKChallengeEventHandlerDelegate.h │ ├── GKChallengeListener.h │ ├── GKConstants.h │ ├── GKFriendRequestComposeViewController.h │ ├── GKFriendRequestComposeViewControllerDelegate.h │ ├── GKGameCenterController.h │ ├── GKGameCenterControllerDelegate.h │ ├── GKGameCenterViewController.h │ ├── GKInvite.h │ ├── GKInviteEventListener.h │ ├── GKLeaderboard.h │ ├── GKLeaderboardSet.h │ ├── GKLeaderboardViewController.h │ ├── GKLeaderboardViewControllerDelegate.h │ ├── GKLocalPlayer.h │ ├── GKLocalPlayerListener.h │ ├── GKMatch.h │ ├── GKMatchDelegate.h │ ├── GKMatchRequest.h │ ├── GKMatchmaker.h │ ├── GKMatchmakerViewController.h │ ├── GKMatchmakerViewControllerDelegate.h │ ├── GKNotificationBanner.h │ ├── GKPeerPickerController.h │ ├── GKPeerPickerControllerDelegate.h │ ├── GKPlayer.h │ ├── GKPublicConstants.h │ ├── GKSavedGame.h │ ├── GKSavedGameListener.h │ ├── GKScore.h │ ├── GKScoreChallenge.h │ ├── GKSession.h │ ├── GKSessionDelegate.h │ ├── GKTurnBasedEventHandler.h │ ├── GKTurnBasedEventHandlerDelegate.h │ ├── GKTurnBasedEventListener.h │ ├── GKTurnBasedExchange.h │ ├── GKTurnBasedExchangeReply.h │ ├── GKTurnBasedMatch.h │ ├── GKTurnBasedMatchmakerViewController.h │ ├── GKTurnBasedMatchmakerViewControllerDelegate.h │ ├── GKTurnBasedParticipant.h │ ├── GKVoiceChat.h │ ├── GKVoiceChatClient.h │ ├── GKVoiceChatService.h │ ├── GameKit.h │ ├── GameKitExport.h │ └── module.modulemap ├── GamePlayKit │ ├── GKARC4RandomSource.h │ ├── GKAgent.h │ ├── GKAgent2D.h │ ├── GKAgentDelegate.h │ ├── GKBehavior.h │ ├── GKCircleObstacle.h │ ├── GKComponent.h │ ├── GKComponentSystem.h │ ├── GKEntity.h │ ├── GKGameModel.h │ ├── GKGameModelPlayer.h │ ├── GKGameModelUpdate.h │ ├── GKGaussianDistribution.h │ ├── GKGoal.h │ ├── GKGraph.h │ ├── GKGraphNode.h │ ├── GKGraphNode2D.h │ ├── GKGridGraph.h │ ├── GKGridGraphNode.h │ ├── GKLinearCongruentialRandomSource.h │ ├── GKMersenneTwisterRandomSource.h │ ├── GKMinmaxStrategist.h │ ├── GKNSPredicateRule.h │ ├── GKObstacle.h │ ├── GKObstacleGraph.h │ ├── GKPath.h │ ├── GKPolygonObstacle.h │ ├── GKRandom.h │ ├── GKRandomDistribution.h │ ├── GKRandomSource.h │ ├── GKRule.h │ ├── GKRuleSystem.h │ ├── GKShuffledDistribution.h │ ├── GKState.h │ ├── GKStateMachine.h │ ├── GKType.h │ ├── GamePlayKit.h │ ├── GameplayKitExport.h │ └── module.modulemap ├── HealthKit │ ├── HKAnchoredObjectQuery.h │ ├── HKBiologicalSexObject.h │ ├── HKBloodTypeObject.h │ ├── HKCategorySample.h │ ├── HKCategoryType.h │ ├── HKCharacteristicType.h │ ├── HKCorrelation.h │ ├── HKCorrelationQuery.h │ ├── HKCorrelationType.h │ ├── HKDeletedObject.h │ ├── HKDevice.h │ ├── HKFitzpatrickSkinTypeObject.h │ ├── HKHealthStore.h │ ├── HKObject.h │ ├── HKObjectType.h │ ├── HKObserverQuery.h │ ├── HKQuantity.h │ ├── HKQuantitySample.h │ ├── HKQuantityType.h │ ├── HKQuery.h │ ├── HKSample.h │ ├── HKSampleQuery.h │ ├── HKSampleType.h │ ├── HKSource.h │ ├── HKSourceQuery.h │ ├── HKSourceRevision.h │ ├── HKStatistics.h │ ├── HKStatisticsCollection.h │ ├── HKStatisticsCollectionQuery.h │ ├── HKStatisticsQuery.h │ ├── HKUnit.h │ ├── HKWorkout.h │ ├── HKWorkoutEvent.h │ ├── HKWorkoutType.h │ ├── HealthKit.h │ ├── HealthKitConstants.h │ ├── HealthKitExport.h │ └── module.modulemap ├── HomeKit │ ├── HMAccessory.h │ ├── HMAccessoryBrowser.h │ ├── HMAccessoryBrowserDelegate.h │ ├── HMAccessoryDelegate.h │ ├── HMAction.h │ ├── HMActionSet.h │ ├── HMCharacteristic.h │ ├── HMCharacteristicMetadata.h │ ├── HMCharacteristicWriteAction.h │ ├── HMHome.h │ ├── HMHomeDelegate.h │ ├── HMHomeManager.h │ ├── HMHomeManagerDelegate.h │ ├── HMRoom.h │ ├── HMService.h │ ├── HMServiceGroup.h │ ├── HMTimerTrigger.h │ ├── HMTrigger.h │ ├── HMUser.h │ ├── HMZone.h │ ├── HomeKit.h │ ├── HomeKitConstants.h │ ├── HomeKitExport.h │ └── module.modulemap ├── ImageIO │ ├── CGImageDestination.h │ ├── CGImageProperties.h │ ├── CGImageSource.h │ ├── ImageIO.h │ ├── ImageIOExport.h │ └── module.modulemap ├── LocalAuthentication │ ├── LAContext.h │ ├── LocalAuthentication.h │ ├── LocalAuthenticationExport.h │ └── module.modulemap ├── MapKit │ ├── MKAnnotation.h │ ├── MKAnnotationView.h │ ├── MKCircle.h │ ├── MKCircleRenderer.h │ ├── MKCircleView.h │ ├── MKDirections.h │ ├── MKDirectionsRequest.h │ ├── MKDirectionsResponse.h │ ├── MKDistanceFormatter.h │ ├── MKETAREsponse.h │ ├── MKGeodesicPolyline.h │ ├── MKLocalSearch.h │ ├── MKLocalSearchRequest.h │ ├── MKLocalSearchResponse.h │ ├── MKMapCamera.h │ ├── MKMapItem.h │ ├── MKMapSnapshot.h │ ├── MKMapSnapshotOptions.h │ ├── MKMapSnapshotter.h │ ├── MKMapView.h │ ├── MKMapViewDelegate.h │ ├── MKMultiPoint.h │ ├── MKOverlay.h │ ├── MKOverlayPathRenderer.h │ ├── MKOverlayPathView.h │ ├── MKOverlayRenderer.h │ ├── MKOverlayView.h │ ├── MKPinAnnotationView.h │ ├── MKPlacemark.h │ ├── MKPointAnnotation.h │ ├── MKPolygon.h │ ├── MKPolygonRenderer.h │ ├── MKPolygonView.h │ ├── MKPolyline.h │ ├── MKPolylineRenderer.h │ ├── MKPolylineView.h │ ├── MKReverseGeocoder.h │ ├── MKReverseGeocoderDelegate.h │ ├── MKRoute.h │ ├── MKRouteStep.h │ ├── MKShape.h │ ├── MKTileOverlay.h │ ├── MKTileOverlayRenderer.h │ ├── MKUserLocation.h │ ├── MKUserTrackingBarButtonItem.h │ ├── MapKit.h │ ├── MapKitConstants.h │ ├── MapKitDataTypes.h │ ├── MapKitExport.h │ ├── MapKitFunctions.h │ └── module.modulemap ├── MediaAccessibility │ ├── MAAppearance.h │ ├── MAConstants.h │ ├── MediaAccessibility.h │ ├── MediaAccessibilityExport.h │ └── module.modulemap ├── MediaPlayer │ ├── MPChangePlaybackRateCommand.h │ ├── MPChangePlaybackRateCommandEvent.h │ ├── MPContentItem.h │ ├── MPFeedbackCommand.h │ ├── MPFeedbackCommandEvent.h │ ├── MPMediaEntity.h │ ├── MPMediaItem.h │ ├── MPMediaItemArtwork.h │ ├── MPMediaItemCollection.h │ ├── MPMediaLibrary.h │ ├── MPMediaPickerController.h │ ├── MPMediaPickerControllerDelegate.h │ ├── MPMediaPlayback.h │ ├── MPMediaPlaylist.h │ ├── MPMediaPredicate.h │ ├── MPMediaPropertyPredicate.h │ ├── MPMediaQuery.h │ ├── MPMediaQuerySection.h │ ├── MPMovieAccessLog.h │ ├── MPMovieAccessLogEvent.h │ ├── MPMovieErrorLog.h │ ├── MPMovieErrorLogEvent.h │ ├── MPMoviePlayerController.h │ ├── MPMoviePlayerViewController.h │ ├── MPMusicPlayerController.h │ ├── MPNowPlayingInfoCenter.h │ ├── MPPlayableContentDataSource.h │ ├── MPPlayableContentDelegate.h │ ├── MPPlayableContentManager.h │ ├── MPRatingCommand.h │ ├── MPRatingCommandEvent.h │ ├── MPRemoteCommand.h │ ├── MPRemoteCommandCenter.h │ ├── MPRemoteCommandEvent.h │ ├── MPSeekCommandEvent.h │ ├── MPSkipIntervalCommand.h │ ├── MPSkipIntervalCommandEvent.h │ ├── MPTimedMetadata.h │ ├── MPVolumeView.h │ ├── MediaPlayer.h │ ├── MediaPlayerExport.h │ ├── MediaPlayerFunctions.h │ ├── UIViewController.h │ └── module.modulemap ├── MessageUI │ ├── MFMailComposeViewController.h │ ├── MFMailComposeViewControllerDelegate.h │ ├── MFMessageComposeViewController.h │ ├── MFMessageComposeViewControllerDelegate.h │ ├── MessageUI.h │ ├── MessageUIExport.h │ └── module.modulemap ├── Metal │ ├── MTLArgument.h │ ├── MTLArrayType.h │ ├── MTLBlitCommandEncoder.h │ ├── MTLBuffer.h │ ├── MTLCommandBuffer.h │ ├── MTLCommandEncoder.h │ ├── MTLCommandQueue.h │ ├── MTLCompileOptions.h │ ├── MTLComputeCommandEncoder.h │ ├── MTLComputePipelineDescriptor.h │ ├── MTLComputePipelineReflection.h │ ├── MTLComputePipelineState.h │ ├── MTLDepthStencilDescriptor.h │ ├── MTLDepthStencilState.h │ ├── MTLDevice.h │ ├── MTLDrawable.h │ ├── MTLFunction.h │ ├── MTLLibrary.h │ ├── MTLParallelRenderCommandEncoder.h │ ├── MTLRenderCommandEncoder.h │ ├── MTLRenderPassAttachmentDescriptor.h │ ├── MTLRenderPassColorAttachmentDescriptor.h │ ├── MTLRenderPassColorAttachmentDescriptorArray.h │ ├── MTLRenderPassDepthAttachmentDescriptor.h │ ├── MTLRenderPassDescriptor.h │ ├── MTLRenderPassStencilAttachmentDescriptor.h │ ├── MTLRenderPipelineColorAttachmentDescriptor.h │ ├── MTLRenderPipelineColorAttachmentDescriptorArray.h │ ├── MTLRenderPipelineDescriptor.h │ ├── MTLRenderPipelineReflection.h │ ├── MTLRenderPipelineState.h │ ├── MTLResource.h │ ├── MTLSamplerDescriptor.h │ ├── MTLSamplerState.h │ ├── MTLStencilDescriptor.h │ ├── MTLStructMember.h │ ├── MTLStructType.h │ ├── MTLTexture.h │ ├── MTLTextureDescriptor.h │ ├── MTLVertexAttribute.h │ ├── MTLVertexAttributeDescriptor.h │ ├── MTLVertexAttributeDescriptorArray.h │ ├── MTLVertexBufferLayoutDescriptor.h │ ├── MTLVertexBufferLayoutDescriptorArray.h │ ├── MTLVertexDescriptor.h │ ├── Metal.h │ ├── MetalConstants.h │ ├── MetalDataTypes.h │ ├── MetalExport.h │ ├── MetalFunctions.h │ └── module.modulemap ├── MobileCoreServices │ ├── MobileCoreServices.h │ ├── MobileCoreServicesExport.h │ ├── UTCoreTypes.h │ ├── UTType.h │ └── module.modulemap ├── OpenGLES │ ├── EAGL.h │ ├── EAGLDrawable.h │ ├── EAGLExport.h │ ├── ES1 │ │ ├── gl.h │ │ ├── glext.h │ │ └── glplatform.h │ ├── ES2 │ │ ├── gl.h │ │ ├── gl2platform.h │ │ └── glext.h │ ├── khrplatform.h │ └── module.modulemap ├── Platform │ └── Universal Windows │ │ └── UWP │ │ ├── InteropBase.h │ │ ├── MicrosoftAdvertising.h │ │ ├── MicrosoftAdvertisingMicrosoftAdvertising_XamlTypeInfo.h │ │ ├── MicrosoftAdvertisingShared.h │ │ ├── MicrosoftAdvertisingSharedWinRT.h │ │ ├── MicrosoftAdvertisingWinRTUI.h │ │ ├── ObjCHelperAsyncImplementation.h │ │ ├── ObjCHelperCommonConvertors.h │ │ ├── ObjCHelpers.h │ │ ├── RTHelpers.h │ │ ├── WindowsApplicationModel.h │ │ ├── WindowsApplicationModelActivation.h │ │ ├── WindowsApplicationModelAppExtensions.h │ │ ├── WindowsApplicationModelAppService.h │ │ ├── WindowsApplicationModelAppointments.h │ │ ├── WindowsApplicationModelAppointmentsAppointmentsProvider.h │ │ ├── WindowsApplicationModelAppointmentsDataProvider.h │ │ ├── WindowsApplicationModelBackground.h │ │ ├── WindowsApplicationModelCalls.h │ │ ├── WindowsApplicationModelCallsBackground.h │ │ ├── WindowsApplicationModelCallsProvider.h │ │ ├── WindowsApplicationModelChat.h │ │ ├── WindowsApplicationModelCommunicationBlocking.h │ │ ├── WindowsApplicationModelContacts.h │ │ ├── WindowsApplicationModelContactsDataProvider.h │ │ ├── WindowsApplicationModelContactsProvider.h │ │ ├── WindowsApplicationModelCore.h │ │ ├── WindowsApplicationModelDataTransfer.h │ │ ├── WindowsApplicationModelDataTransferDragDrop.h │ │ ├── WindowsApplicationModelDataTransferDragDropCore.h │ │ ├── WindowsApplicationModelDataTransferShareTarget.h │ │ ├── WindowsApplicationModelEmail.h │ │ ├── WindowsApplicationModelEmailDataProvider.h │ │ ├── WindowsApplicationModelExtendedExecution.h │ │ ├── WindowsApplicationModelExtendedExecutionForeground.h │ │ ├── WindowsApplicationModelLockScreen.h │ │ ├── WindowsApplicationModelPayments.h │ │ ├── WindowsApplicationModelPaymentsProvider.h │ │ ├── WindowsApplicationModelPreviewHolographic.h │ │ ├── WindowsApplicationModelPreviewInkWorkspace.h │ │ ├── WindowsApplicationModelPreviewNotes.h │ │ ├── WindowsApplicationModelResources.h │ │ ├── WindowsApplicationModelResourcesCore.h │ │ ├── WindowsApplicationModelResourcesManagement.h │ │ ├── WindowsApplicationModelSearch.h │ │ ├── WindowsApplicationModelSearchCore.h │ │ ├── WindowsApplicationModelSocialInfo.h │ │ ├── WindowsApplicationModelSocialInfoProvider.h │ │ ├── WindowsApplicationModelStore.h │ │ ├── WindowsApplicationModelStoreLicenseManagement.h │ │ ├── WindowsApplicationModelStorePreview.h │ │ ├── WindowsApplicationModelStorePreviewInstallControl.h │ │ ├── WindowsApplicationModelUserActivities.h │ │ ├── WindowsApplicationModelUserActivitiesCore.h │ │ ├── WindowsApplicationModelUserDataAccounts.h │ │ ├── WindowsApplicationModelUserDataAccountsProvider.h │ │ ├── WindowsApplicationModelUserDataAccountsSystemAccess.h │ │ ├── WindowsApplicationModelUserDataTasks.h │ │ ├── WindowsApplicationModelUserDataTasksDataProvider.h │ │ ├── WindowsApplicationModelVoiceCommands.h │ │ ├── WindowsApplicationModelWallet.h │ │ ├── WindowsApplicationModelWalletSystem.h │ │ ├── WindowsDataHtml.h │ │ ├── WindowsDataJson.h │ │ ├── WindowsDataPdf.h │ │ ├── WindowsDataText.h │ │ ├── WindowsDataXmlDom.h │ │ ├── WindowsDataXmlXsl.h │ │ ├── WindowsDevices.h │ │ ├── WindowsDevicesAdc.h │ │ ├── WindowsDevicesAdcProvider.h │ │ ├── WindowsDevicesAllJoyn.h │ │ ├── WindowsDevicesBackground.h │ │ ├── WindowsDevicesBluetooth.h │ │ ├── WindowsDevicesBluetoothAdvertisement.h │ │ ├── WindowsDevicesBluetoothBackground.h │ │ ├── WindowsDevicesBluetoothGenericAttributeProfile.h │ │ ├── WindowsDevicesBluetoothRfcomm.h │ │ ├── WindowsDevicesCustom.h │ │ ├── WindowsDevicesEnumeration.h │ │ ├── WindowsDevicesEnumerationPnp.h │ │ ├── WindowsDevicesGeolocation.h │ │ ├── WindowsDevicesGeolocationGeofencing.h │ │ ├── WindowsDevicesGpio.h │ │ ├── WindowsDevicesGpioProvider.h │ │ ├── WindowsDevicesHaptics.h │ │ ├── WindowsDevicesHumanInterfaceDevice.h │ │ ├── WindowsDevicesI2c.h │ │ ├── WindowsDevicesI2cProvider.h │ │ ├── WindowsDevicesInput.h │ │ ├── WindowsDevicesLights.h │ │ ├── WindowsDevicesMidi.h │ │ ├── WindowsDevicesPerception.h │ │ ├── WindowsDevicesPerceptionProvider.h │ │ ├── WindowsDevicesPointOfService.h │ │ ├── WindowsDevicesPortable.h │ │ ├── WindowsDevicesPower.h │ │ ├── WindowsDevicesPrinters.h │ │ ├── WindowsDevicesPrintersExtensions.h │ │ ├── WindowsDevicesPwm.h │ │ ├── WindowsDevicesPwmProvider.h │ │ ├── WindowsDevicesRadios.h │ │ ├── WindowsDevicesScanners.h │ │ ├── WindowsDevicesSensors.h │ │ ├── WindowsDevicesSensorsCustom.h │ │ ├── WindowsDevicesSerialCommunication.h │ │ ├── WindowsDevicesSmartCards.h │ │ ├── WindowsDevicesSms.h │ │ ├── WindowsDevicesSpi.h │ │ ├── WindowsDevicesSpiProvider.h │ │ ├── WindowsDevicesUsb.h │ │ ├── WindowsDevicesWiFi.h │ │ ├── WindowsDevicesWiFiDirect.h │ │ ├── WindowsDevicesWiFiDirectServices.h │ │ ├── WindowsEmbeddedDeviceLockdown.h │ │ ├── WindowsFoundation.h │ │ ├── WindowsFoundationCollections.h │ │ ├── WindowsFoundationDiagnostics.h │ │ ├── WindowsFoundationMetadata.h │ │ ├── WindowsFoundationNumerics.h │ │ ├── WindowsGamingInput.h │ │ ├── WindowsGamingInputCustom.h │ │ ├── WindowsGamingInputForceFeedback.h │ │ ├── WindowsGamingInputPreview.h │ │ ├── WindowsGamingPreview.h │ │ ├── WindowsGamingPreviewGamesEnumeration.h │ │ ├── WindowsGamingUI.h │ │ ├── WindowsGamingXboxLive.h │ │ ├── WindowsGamingXboxLiveStorage.h │ │ ├── WindowsGlobalization.h │ │ ├── WindowsGlobalizationCollation.h │ │ ├── WindowsGlobalizationDateTimeFormatting.h │ │ ├── WindowsGlobalizationFonts.h │ │ ├── WindowsGlobalizationNumberFormatting.h │ │ ├── WindowsGlobalizationPhoneNumberFormatting.h │ │ ├── WindowsGraphics.h │ │ ├── WindowsGraphicsDirectX.h │ │ ├── WindowsGraphicsDirectXDirect3D11.h │ │ ├── WindowsGraphicsDisplay.h │ │ ├── WindowsGraphicsDisplayCore.h │ │ ├── WindowsGraphicsEffects.h │ │ ├── WindowsGraphicsHolographic.h │ │ ├── WindowsGraphicsImaging.h │ │ ├── WindowsGraphicsPrinting.h │ │ ├── WindowsGraphicsPrinting3D.h │ │ ├── WindowsGraphicsPrintingOptionDetails.h │ │ ├── WindowsGraphicsPrintingPrintTicket.h │ │ ├── WindowsGraphicsPrintingWorkflow.h │ │ ├── WindowsManagement.h │ │ ├── WindowsManagementCore.h │ │ ├── WindowsManagementDeployment.h │ │ ├── WindowsManagementDeploymentPreview.h │ │ ├── WindowsManagementOrchestration.h │ │ ├── WindowsManagementPolicies.h │ │ ├── WindowsManagementWorkplace.h │ │ ├── WindowsMedia.h │ │ ├── WindowsMediaAppBroadcasting.h │ │ ├── WindowsMediaAppRecording.h │ │ ├── WindowsMediaAudio.h │ │ ├── WindowsMediaCapture.h │ │ ├── WindowsMediaCaptureCore.h │ │ ├── WindowsMediaCaptureFrames.h │ │ ├── WindowsMediaCasting.h │ │ ├── WindowsMediaClosedCaptioning.h │ │ ├── WindowsMediaContentRestrictions.h │ │ ├── WindowsMediaCore.h │ │ ├── WindowsMediaCorePreview.h │ │ ├── WindowsMediaDevices.h │ │ ├── WindowsMediaDevicesCore.h │ │ ├── WindowsMediaDialProtocol.h │ │ ├── WindowsMediaEditing.h │ │ ├── WindowsMediaEffects.h │ │ ├── WindowsMediaFaceAnalysis.h │ │ ├── WindowsMediaImport.h │ │ ├── WindowsMediaMediaProperties.h │ │ ├── WindowsMediaOcr.h │ │ ├── WindowsMediaPlayTo.h │ │ ├── WindowsMediaPlayback.h │ │ ├── WindowsMediaPlaylists.h │ │ ├── WindowsMediaProtection.h │ │ ├── WindowsMediaProtectionPlayReady.h │ │ ├── WindowsMediaRender.h │ │ ├── WindowsMediaSpeechRecognition.h │ │ ├── WindowsMediaSpeechSynthesis.h │ │ ├── WindowsMediaStreamingAdaptive.h │ │ ├── WindowsMediaTranscoding.h │ │ ├── WindowsNetworking.h │ │ ├── WindowsNetworkingBackgroundTransfer.h │ │ ├── WindowsNetworkingConnectivity.h │ │ ├── WindowsNetworkingNetworkOperators.h │ │ ├── WindowsNetworkingProximity.h │ │ ├── WindowsNetworkingPushNotifications.h │ │ ├── WindowsNetworkingServiceDiscoveryDnssd.h │ │ ├── WindowsNetworkingSockets.h │ │ ├── WindowsNetworkingVpn.h │ │ ├── WindowsNetworkingXboxLive.h │ │ ├── WindowsPerception.h │ │ ├── WindowsPerceptionAutomationCore.h │ │ ├── WindowsPerceptionPeople.h │ │ ├── WindowsPerceptionSpatial.h │ │ ├── WindowsPerceptionSpatialSurfaces.h │ │ ├── WindowsPhone.h │ │ ├── WindowsPhoneApplicationModel.h │ │ ├── WindowsPhoneDevicesNotification.h │ │ ├── WindowsPhoneDevicesPower.h │ │ ├── WindowsPhoneManagementDeployment.h │ │ ├── WindowsPhoneMediaDevices.h │ │ ├── WindowsPhoneNotificationManagement.h │ │ ├── WindowsPhonePersonalInformation.h │ │ ├── WindowsPhonePersonalInformationProvisioning.h │ │ ├── WindowsPhoneSpeechRecognition.h │ │ ├── WindowsPhoneStartScreen.h │ │ ├── WindowsPhoneSystem.h │ │ ├── WindowsPhoneSystemPower.h │ │ ├── WindowsPhoneSystemProfile.h │ │ ├── WindowsPhoneSystemUserProfileGameServicesCore.h │ │ ├── WindowsPhoneUIInput.h │ │ ├── WindowsSecurityAuthenticationIdentity.h │ │ ├── WindowsSecurityAuthenticationIdentityCore.h │ │ ├── WindowsSecurityAuthenticationIdentityProvider.h │ │ ├── WindowsSecurityAuthenticationOnlineId.h │ │ ├── WindowsSecurityAuthenticationWeb.h │ │ ├── WindowsSecurityAuthenticationWebCore.h │ │ ├── WindowsSecurityAuthenticationWebProvider.h │ │ ├── WindowsSecurityCredentials.h │ │ ├── WindowsSecurityCredentialsUI.h │ │ ├── WindowsSecurityCryptography.h │ │ ├── WindowsSecurityCryptographyCertificates.h │ │ ├── WindowsSecurityCryptographyCore.h │ │ ├── WindowsSecurityCryptographyDataProtection.h │ │ ├── WindowsSecurityEnterpriseData.h │ │ ├── WindowsSecurityExchangeActiveSyncProvisioning.h │ │ ├── WindowsServicesCortana.h │ │ ├── WindowsServicesMaps.h │ │ ├── WindowsServicesMapsGuidance.h │ │ ├── WindowsServicesMapsLocalSearch.h │ │ ├── WindowsServicesMapsOfflineMaps.h │ │ ├── WindowsServicesStore.h │ │ ├── WindowsServicesTargetedContent.h │ │ ├── WindowsStorage.h │ │ ├── WindowsStorageAccessCache.h │ │ ├── WindowsStorageBulkAccess.h │ │ ├── WindowsStorageCompression.h │ │ ├── WindowsStorageFileProperties.h │ │ ├── WindowsStoragePickers.h │ │ ├── WindowsStoragePickersProvider.h │ │ ├── WindowsStorageProvider.h │ │ ├── WindowsStorageSearch.h │ │ ├── WindowsStorageStreams.h │ │ ├── WindowsSystem.h │ │ ├── WindowsSystemDiagnostics.h │ │ ├── WindowsSystemDiagnosticsDevicePortal.h │ │ ├── WindowsSystemDiagnosticsTelemetry.h │ │ ├── WindowsSystemDiagnosticsTraceReporting.h │ │ ├── WindowsSystemDisplay.h │ │ ├── WindowsSystemPower.h │ │ ├── WindowsSystemPowerDiagnostics.h │ │ ├── WindowsSystemProfile.h │ │ ├── WindowsSystemProfileSystemManufacturers.h │ │ ├── WindowsSystemRemoteDesktop.h │ │ ├── WindowsSystemRemoteSystems.h │ │ ├── WindowsSystemThreading.h │ │ ├── WindowsSystemThreadingCore.h │ │ ├── WindowsSystemUserProfile.h │ │ ├── WindowsUI.h │ │ ├── WindowsUIApplicationSettings.h │ │ ├── WindowsUIComposition.h │ │ ├── WindowsUICompositionEffects.h │ │ ├── WindowsUICompositionInteractions.h │ │ ├── WindowsUICore.h │ │ ├── WindowsUICoreAnimationMetrics.h │ │ ├── WindowsUICorePreview.h │ │ ├── WindowsUIInput.h │ │ ├── WindowsUIInputCore.h │ │ ├── WindowsUIInputInking.h │ │ ├── WindowsUIInputInkingAnalysis.h │ │ ├── WindowsUIInputInkingCore.h │ │ ├── WindowsUIInputPreviewInjection.h │ │ ├── WindowsUIInputSpatial.h │ │ ├── WindowsUINotifications.h │ │ ├── WindowsUINotificationsManagement.h │ │ ├── WindowsUIPopups.h │ │ ├── WindowsUIShell.h │ │ ├── WindowsUIStartScreen.h │ │ ├── WindowsUIText.h │ │ ├── WindowsUITextCore.h │ │ ├── WindowsUIViewManagement.h │ │ ├── WindowsUIViewManagementCore.h │ │ ├── WindowsUIWebUI.h │ │ ├── WindowsUIWebUICore.h │ │ ├── WindowsUIXaml.h │ │ ├── WindowsUIXamlAutomation.h │ │ ├── WindowsUIXamlAutomationPeers.h │ │ ├── WindowsUIXamlAutomationProvider.h │ │ ├── WindowsUIXamlAutomationText.h │ │ ├── WindowsUIXamlControls.h │ │ ├── WindowsUIXamlControlsMaps.h │ │ ├── WindowsUIXamlControlsPrimitives.h │ │ ├── WindowsUIXamlData.h │ │ ├── WindowsUIXamlDocuments.h │ │ ├── WindowsUIXamlHelpers.h │ │ ├── WindowsUIXamlHosting.h │ │ ├── WindowsUIXamlInput.h │ │ ├── WindowsUIXamlInterop.h │ │ ├── WindowsUIXamlMarkup.h │ │ ├── WindowsUIXamlMedia.h │ │ ├── WindowsUIXamlMediaAnimation.h │ │ ├── WindowsUIXamlMediaImaging.h │ │ ├── WindowsUIXamlMediaMedia3D.h │ │ ├── WindowsUIXamlNavigation.h │ │ ├── WindowsUIXamlPrinting.h │ │ ├── WindowsUIXamlResources.h │ │ ├── WindowsUIXamlShapes.h │ │ ├── WindowsWeb.h │ │ ├── WindowsWebAtomPub.h │ │ ├── WindowsWebHttp.h │ │ ├── WindowsWebHttpDiagnostics.h │ │ ├── WindowsWebHttpFilters.h │ │ ├── WindowsWebHttpHeaders.h │ │ └── WindowsWebSyndication.h ├── QuartzCore │ ├── CAAction.h │ ├── CAAnimation.h │ ├── CAAnimationGroup.h │ ├── CABasicAnimation.h │ ├── CADisplayLink.h │ ├── CAEAGLLayer.h │ ├── CAEmitterCell.h │ ├── CAEmitterLayer.h │ ├── CAGradientLayer.h │ ├── CAKeyframeAnimation.h │ ├── CALayer.h │ ├── CALayerDelegate.h │ ├── CAMediaTiming.h │ ├── CAMediaTimingFunction.h │ ├── CAMetalDrawable.h │ ├── CAMetalLayer.h │ ├── CAPropertyAnimation.h │ ├── CARenderer.h │ ├── CAReplicatorLayer.h │ ├── CAScrollLayer.h │ ├── CAShapeLayer.h │ ├── CATextLayer.h │ ├── CATiledLayer.h │ ├── CATransaction.h │ ├── CATransform3D.h │ ├── CATransformLayer.h │ ├── CATransition.h │ ├── CAValueFunction.h │ ├── CoreAnimation.h │ ├── CoreAnimationExport.h │ ├── CoreAnimationFunctions.h │ ├── QuartzCore.h │ └── module.modulemap ├── QuickLook │ ├── QLPreviewController.h │ ├── QLPreviewControllerDataSource.h │ ├── QLPreviewControllerDelegate.h │ ├── QLPreviewItem.h │ ├── QuickLook.h │ ├── QuickLookExport.h │ └── module.modulemap ├── SafariServices │ ├── SFSafariViewController.h │ ├── SFSafariViewControllerDelegate.h │ ├── SafariServices.h │ └── SafariServicesExport.h ├── Security │ ├── CipherSuite.h │ ├── SecBase.h │ ├── SecCertificate.h │ ├── SecIdentity.h │ ├── SecItem.h │ ├── SecKey.h │ ├── SecPolicy.h │ ├── SecRandom.h │ ├── SecTrust.h │ ├── SecureTransport.h │ ├── Security.h │ └── module.modulemap ├── Social │ ├── SLComposeServiceViewController.h │ ├── SLComposeSheetConfigurationItem.h │ ├── SLComposeViewController.h │ ├── SLRequest.h │ ├── SLServiceTypes.h │ ├── Social.h │ ├── SocialExport.h │ └── module.modulemap ├── StarboardAdditionalDefines.h ├── StarboardExport.h ├── StoreKit │ ├── SKDownload.h │ ├── SKMutablePayment.h │ ├── SKPayment.h │ ├── SKPaymentQueue.h │ ├── SKPaymentTransaction.h │ ├── SKPaymentTransactionObserver.h │ ├── SKProduct.h │ ├── SKProductsRequest.h │ ├── SKProductsRequestDelegate.h │ ├── SKProductsResponse.h │ ├── SKReceiptRefreshRequest.h │ ├── SKRequest.h │ ├── SKRequestDelegate.h │ ├── SKStoreProductViewController.h │ ├── SKStoreProductViewControllerDelegate.h │ ├── StoreKit.h │ ├── StoreKitConstants.h │ ├── StoreKitExport.h │ └── module.modulemap ├── StubIncludes.h ├── SystemConfiguration │ ├── CaptiveNetwork.h │ ├── DHCPClientPreferences.h │ ├── SCDynamicStore.h │ ├── SCDynamicStoreCopyDHCPInfo.h │ ├── SCDynamicStoreCopySpecific.h │ ├── SCDynamicStoreKey.h │ ├── SCExport.h │ ├── SCNetwork.h │ ├── SCNetworkConfiguration.h │ ├── SCNetworkConnection.h │ ├── SCNetworkReachability.h │ ├── SCNetworkSignature.h │ ├── SCPreferences.h │ ├── SCPreferencesPath.h │ ├── SCPreferencesPathKey.h │ ├── SCPreferencesSetSpecific.h │ ├── SCSchemaDefinitions.h │ ├── SystemConfiguration.h │ └── module.modulemap ├── TargetConditionals.h ├── Twitter │ ├── TWRequest.h │ ├── TWTweetComposeViewController.h │ ├── Twitter.h │ ├── TwitterExport.h │ └── module.modulemap ├── UIKit │ ├── NSAttributedString+UIKitAdditions.h │ ├── NSBundle+UIKitAdditions.h │ ├── NSDataAsset.h │ ├── NSFileProviderExtension.h │ ├── NSIndexPath+UITableView.h │ ├── NSLayoutAnchor.h │ ├── NSLayoutConstraint.h │ ├── NSLayoutDimension.h │ ├── NSLayoutManager.h │ ├── NSLayoutManagerDelegate.h │ ├── NSLayoutXAxisAnchor.h │ ├── NSLayoutYAxisAnchor.h │ ├── NSMutableAttributedString+UIKitAdditions.h │ ├── NSMutableParagraphStyle.h │ ├── NSObject+UIKitAdditions.h │ ├── NSParagraphStyle.h │ ├── NSShadow.h │ ├── NSString+UIKitAdditions.h │ ├── NSStringDrawingContext.h │ ├── NSTextAttachment.h │ ├── NSTextAttachmentContainer.h │ ├── NSTextContainer.h │ ├── NSTextLayoutOrientationProvider.h │ ├── NSTextStorage.h │ ├── NSTextStorageDelegate.h │ ├── NSTextTab.h │ ├── NSValue+UIKitAdditions.h │ ├── UIAcceleration.h │ ├── UIAccelerometer.h │ ├── UIAccelerometerDelegate.h │ ├── UIAccessibility.h │ ├── UIAccessibilityCustomAction.h │ ├── UIAccessibilityElement.h │ ├── UIAccessibilityIdentification.h │ ├── UIAccessibilityReadingContent.h │ ├── UIActionSheet.h │ ├── UIActionSheetDelegate.h │ ├── UIActivity.h │ ├── UIActivityIndicatorView.h │ ├── UIActivityItemProvider.h │ ├── UIActivityItemSource.h │ ├── UIActivityViewController.h │ ├── UIAdaptivePresentationControllerDelegate.h │ ├── UIAlert.h │ ├── UIAlertAction.h │ ├── UIAlertController.h │ ├── UIAlertView.h │ ├── UIAlertViewDelegate.h │ ├── UIAppearance.h │ ├── UIAppearanceContainer.h │ ├── UIApplication.h │ ├── UIApplicationDelegate.h │ ├── UIApplicationShortcutIcon.h │ ├── UIApplicationShortcutItem.h │ ├── UIAttachmentBehavior.h │ ├── UIBarButtonItem.h │ ├── UIBarButtonItemGroup.h │ ├── UIBarItem.h │ ├── UIBarPositioning.h │ ├── UIBarPositioningDelegate.h │ ├── UIBezierPath.h │ ├── UIBlurEffect.h │ ├── UIButton.h │ ├── UICollectionReusableView.h │ ├── UICollectionView.h │ ├── UICollectionViewCell.h │ ├── UICollectionViewController.h │ ├── UICollectionViewDataSource.h │ ├── UICollectionViewDelegate.h │ ├── UICollectionViewDelegateFlowLayout.h │ ├── UICollectionViewFlowLayout.h │ ├── UICollectionViewFlowLayoutInvalidationContext.h │ ├── UICollectionViewFocusUpdateContext.h │ ├── UICollectionViewLayout.h │ ├── UICollectionViewLayoutAttributes.h │ ├── UICollectionViewLayoutInvalidationContext.h │ ├── UICollectionViewTransitionLayout.h │ ├── UICollectionViewUpdateItem.h │ ├── UICollisionBehavior.h │ ├── UICollisionBehaviorDelegate.h │ ├── UIColor.h │ ├── UIContentContainer.h │ ├── UIControl.h │ ├── UICoordinateSpace.h │ ├── UIDataDetectors.h │ ├── UIDataSourceModelAssociation.h │ ├── UIDatePicker.h │ ├── UIDevice.h │ ├── UIDictationPhrase.h │ ├── UIDocument.h │ ├── UIDocumentInteractionController.h │ ├── UIDocumentInteractionControllerDelegate.h │ ├── UIDocumentMenuDelegate.h │ ├── UIDocumentMenuViewController.h │ ├── UIDocumentPickerDelegate.h │ ├── UIDocumentPickerExtensionViewController.h │ ├── UIDocumentPickerViewController.h │ ├── UIDynamicAnimator.h │ ├── UIDynamicAnimatorDelegate.h │ ├── UIDynamicBehavior.h │ ├── UIDynamicItem.h │ ├── UIDynamicItemBehavior.h │ ├── UIDynamicItemGroup.h │ ├── UIEvent.h │ ├── UIFieldBehavior.h │ ├── UIFocusAnimationCoordinator.h │ ├── UIFocusEnvironment.h │ ├── UIFocusGuide.h │ ├── UIFocusUpdateContext.h │ ├── UIFont.h │ ├── UIFontDescriptor.h │ ├── UIGeometry.h │ ├── UIGestureRecognizer.h │ ├── UIGestureRecognizerSubclass.h │ ├── UIGraphics.h │ ├── UIGravityBehavior.h │ ├── UIGuidedAccessRestrictionDelegate.h │ ├── UIImage.h │ ├── UIImageAsset.h │ ├── UIImagePickerController.h │ ├── UIImagePickerControllerDelegate.h │ ├── UIImageView.h │ ├── UIInputView.h │ ├── UIInputViewAudioFeedback.h │ ├── UIInputViewController.h │ ├── UIInterface.h │ ├── UIInterpolatingMotionEffect.h │ ├── UIKey.h │ ├── UIKeyCommand.h │ ├── UIKeyInput.h │ ├── UIKit.h │ ├── UIKitExport.h │ ├── UIKitTypes.h │ ├── UILabel.h │ ├── UILayoutGuide.h │ ├── UILayoutSupport.h │ ├── UILexicon.h │ ├── UILexiconEntry.h │ ├── UILocalNotification.h │ ├── UILocalizedIndexedCollation.h │ ├── UILongPressGestureRecognizer.h │ ├── UIManagedDocument.h │ ├── UIMarkupTextPrintFormatter.h │ ├── UIMenuController.h │ ├── UIMenuItem.h │ ├── UIMotionEffect.h │ ├── UIMotionEffectGroup.h │ ├── UIMutableApplicationShortcutItem.h │ ├── UIMutableUserNotificationAction.h │ ├── UIMutableUserNotificationCategory.h │ ├── UINavigationBar.h │ ├── UINavigationBarDelegate.h │ ├── UINavigationController.h │ ├── UINavigationControllerDelegate.h │ ├── UINavigationItem.h │ ├── UINib.h │ ├── UIObjectRestoration.h │ ├── UIPageControl.h │ ├── UIPageViewController.h │ ├── UIPageViewControllerDataSource.h │ ├── UIPageViewControllerDelegate.h │ ├── UIPanGestureRecognizer.h │ ├── UIPasteboard.h │ ├── UIPercentDrivenInteractiveTransition.h │ ├── UIPickerView.h │ ├── UIPickerViewAccessibilityDelegate.h │ ├── UIPickerViewDataSource.h │ ├── UIPickerViewDelegate.h │ ├── UIPinchGestureRecognizer.h │ ├── UIPopoverBackgroundView.h │ ├── UIPopoverBackgroundViewMethods.h │ ├── UIPopoverController.h │ ├── UIPopoverControllerDelegate.h │ ├── UIPopoverPresentationController.h │ ├── UIPopoverPresentationControllerDelegate.h │ ├── UIPresentationController.h │ ├── UIPress.h │ ├── UIPressesEvent.h │ ├── UIPreviewAction.h │ ├── UIPreviewActionGroup.h │ ├── UIPreviewActionItem.h │ ├── UIPrintFormatter.h │ ├── UIPrintInfo.h │ ├── UIPrintInteractionController.h │ ├── UIPrintInteractionControllerDelegate.h │ ├── UIPrintPageRenderer.h │ ├── UIPrintPaper.h │ ├── UIPrinter.h │ ├── UIPrinterPickerController.h │ ├── UIPrinterPickerControllerDelegate.h │ ├── UIProgressView.h │ ├── UIPushBehavior.h │ ├── UIReferenceLibraryViewController.h │ ├── UIRefreshControl.h │ ├── UIRegion.h │ ├── UIResponder.h │ ├── UIResponderStandardEditActions.h │ ├── UIRotationGestureRecognizer.h │ ├── UIRuntimeEventConnection.h │ ├── UIScreen.h │ ├── UIScreenEdgePanGestureRecognizer.h │ ├── UIScreenMode.h │ ├── UIScrollView.h │ ├── UIScrollViewAccessibilityDelegate.h │ ├── UIScrollViewDelegate.h │ ├── UIScrollWheelGestureRecognizer.h │ ├── UISearchBar.h │ ├── UISearchBarDelegate.h │ ├── UISearchContainerViewController.h │ ├── UISearchController.h │ ├── UISearchControllerDelegate.h │ ├── UISearchDisplayController.h │ ├── UISearchDisplayDelegate.h │ ├── UISearchResultsUpdating.h │ ├── UISegmentedControl.h │ ├── UISimpleTextPrintFormatter.h │ ├── UISlider.h │ ├── UISnapBehavior.h │ ├── UISplitViewController.h │ ├── UISplitViewControllerDelegate.h │ ├── UIStackView.h │ ├── UIStateRestoring.h │ ├── UIStepper.h │ ├── UIStoryboard.h │ ├── UIStoryboardPopoverSegue.h │ ├── UIStoryboardPushSegueTemplate.h │ ├── UIStoryboardSegue.h │ ├── UIStoryboardSegueTemplate.h │ ├── UISwipeGestureRecognizer.h │ ├── UISwitch.h │ ├── UITabBar.h │ ├── UITabBarController.h │ ├── UITabBarControllerDelegate.h │ ├── UITabBarDelegate.h │ ├── UITabBarItem.h │ ├── UITableView.h │ ├── UITableViewCell.h │ ├── UITableViewController.h │ ├── UITableViewDataSource.h │ ├── UITableViewDelegate.h │ ├── UITableViewFocusUpdateContext.h │ ├── UITableViewHeaderFooterView.h │ ├── UITableViewRowAction.h │ ├── UITapGestureRecognizer.h │ ├── UITextChecker.h │ ├── UITextDocumentProxy.h │ ├── UITextField.h │ ├── UITextFieldDelegate.h │ ├── UITextInput.h │ ├── UITextInputAssistantItem.h │ ├── UITextInputMode.h │ ├── UITextInputStringTokenizer.h │ ├── UITextInputTokenizer.h │ ├── UITextInputTraits.h │ ├── UITextPosition.h │ ├── UITextRange.h │ ├── UITextSelectionRect.h │ ├── UITextView.h │ ├── UITextViewDelegate.h │ ├── UIToolbar.h │ ├── UIToolbarDelegate.h │ ├── UITouch.h │ ├── UITraitCollection.h │ ├── UITraitEnvironment.h │ ├── UIUserNotificationAction.h │ ├── UIUserNotificationCategory.h │ ├── UIUserNotificationSettings.h │ ├── UIVibrancyEffect.h │ ├── UIVideoEditorController.h │ ├── UIVideoEditorControllerDelegate.h │ ├── UIView.h │ ├── UIViewAdapter.h │ ├── UIViewController.h │ ├── UIViewControllerAnimatedTransitioning.h │ ├── UIViewControllerContextTransitioning.h │ ├── UIViewControllerInteractiveTransitioning.h │ ├── UIViewControllerPreviewing.h │ ├── UIViewControllerPreviewingDelegate.h │ ├── UIViewControllerRestoration.h │ ├── UIViewControllerTransitionCoordinator.h │ ├── UIViewControllerTransitionCoordinatorContext.h │ ├── UIViewControllerTransitioningDelegate.h │ ├── UIViewPrintFormatter.h │ ├── UIVisualEffect.h │ ├── UIVisualEffectView.h │ ├── UIWebView.h │ ├── UIWebViewDelegate.h │ ├── UIWindow.h │ └── module.modulemap ├── WebKit │ ├── WKBackForwardList.h │ ├── WKBackForwardListItem.h │ ├── WKFrameInfo.h │ ├── WKNavigation.h │ ├── WKNavigationAction.h │ ├── WKNavigationDelegate.h │ ├── WKNavigationResponse.h │ ├── WKPreferences.h │ ├── WKProcessPool.h │ ├── WKScriptMessage.h │ ├── WKScriptMessageHandler.h │ ├── WKSecurityOrigin.h │ ├── WKUIDelegate.h │ ├── WKUserContentController.h │ ├── WKUserScript.h │ ├── WKWebView.h │ ├── WKWebViewConfiguration.h │ ├── WKWebsiteDataRecord.h │ ├── WKWebsiteDataStore.h │ ├── WKWindowFeatures.h │ ├── WebKit.h │ ├── WebKitConstants.h │ ├── WebKitExport.h │ └── module.modulemap ├── dns_sd.h ├── iAd │ ├── ADBannerView.h │ ├── ADBannerViewDelegate.h │ ├── ADClient.h │ ├── ADInterstitialAd.h │ ├── ADInterstitialAdDelegate.h │ ├── UIViewController.h │ ├── iAd.h │ ├── iAdExport.h │ └── module.modulemap ├── pthread.h └── xplat │ └── Starboard │ └── String.h ├── init.cmd ├── init.ps1 ├── msvc ├── LLVM-3.6.0 │ └── bin │ │ └── clang-format.exe ├── package-build.props ├── sdk-build.props ├── sdk-build.targets ├── ut-build.props ├── ut-build.targets └── zip.tasks ├── nuget.config ├── samples ├── .gitignore ├── CoreAnimationTest │ ├── CoreAnimationTest-WinStore10.sln │ ├── CoreAnimationTest.vsimporter │ │ └── CoreAnimationTest-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── CoreAnimationTest-Debug-xcvars.txt │ │ │ ├── CoreAnimationTest-Release-xcvars.txt │ │ │ ├── CoreAnimationTest.vcxproj │ │ │ ├── CoreAnimationTest.vcxproj.filters │ │ │ ├── CoreAnimationTest_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── CoreAnimationTest.xcodeproj │ │ └── project.pbxproj │ └── CoreAnimationTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CAEmitterLayerControlsViewController.h │ │ ├── CAEmitterLayerControlsViewController.m │ │ ├── CAEmitterLayerViewController.h │ │ ├── CAEmitterLayerViewController.m │ │ ├── CALayerAnimationViewController.h │ │ ├── CALayerAnimationViewController.m │ │ ├── CALayerMultipleViewController.h │ │ ├── CALayerMultipleViewController.m │ │ ├── CALayerViewController.h │ │ ├── CALayerViewController.m │ │ ├── CAScrollLayerViewController.h │ │ ├── CAScrollLayerViewController.m │ │ ├── CAShapeLayerViewController.h │ │ ├── CAShapeLayerViewController.m │ │ ├── CGPointTableViewCell.h │ │ ├── CGPointTableViewCell.m │ │ ├── CGRectTableViewCell.h │ │ ├── CGRectTableViewCell.m │ │ ├── Constants.h │ │ ├── Constants.m │ │ ├── CoreAnimationTest.storyboard │ │ ├── FooterTableViewCell.h │ │ ├── FooterTableViewCell.m │ │ ├── HeaderTableViewCell.h │ │ ├── HeaderTableViewCell.m │ │ ├── Images │ │ ├── 3x3grid.png │ │ ├── align_center.png │ │ ├── align_just.png │ │ ├── align_left.png │ │ ├── align_right.png │ │ ├── earthwindandfire.jpg │ │ ├── safe.png │ │ ├── star.png │ │ └── storkinayutthaya.png │ │ ├── Info.plist │ │ ├── LayerTableViewCell.h │ │ ├── LayerTableViewCell.m │ │ ├── MenuTableViewController.h │ │ ├── MenuTableViewController.m │ │ ├── PickerViewTableViewCell.h │ │ ├── PickerViewTableViewCell.m │ │ ├── ProgrammaticViewController.h │ │ ├── ProgrammaticViewController.m │ │ ├── PropertyTableViewCell.h │ │ ├── PropertyTableViewCell.m │ │ ├── ScrollingView.h │ │ ├── ScrollingView.m │ │ ├── SliderTableViewCell.h │ │ ├── SliderTableViewCell.m │ │ ├── StoryBoardViewController.h │ │ ├── StoryBoardViewController.m │ │ ├── StringTableViewCell.h │ │ ├── StringTableViewCell.m │ │ ├── SwitchTableViewCell.h │ │ ├── SwitchTableViewCell.m │ │ └── main.m ├── GLKitComplex │ ├── GLKitComplex-WinStore10.sln │ ├── GLKitComplex.vsimporter │ │ └── GLKitComplex-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── GLKitComplex-Debug-xcvars.txt │ │ │ ├── GLKitComplex-Release-xcvars.txt │ │ │ ├── GLKitComplex.vcxproj │ │ │ ├── GLKitComplex.vcxproj.filters │ │ │ ├── GLKitComplex_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── GLKitComplex.xcodeproj │ │ └── project.pbxproj │ └── GLKitComplex │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Data │ │ ├── lobbyxneg.JPG │ │ ├── lobbyxpos.JPG │ │ ├── lobbyyneg.JPG │ │ ├── lobbyypos.JPG │ │ ├── lobbyzneg.JPG │ │ ├── lobbyzpos.JPG │ │ ├── seafloor.png │ │ ├── teapot_decal.png │ │ ├── teapot_emissive.png │ │ ├── teapot_specular.pdn │ │ ├── teapot_specular.png │ │ └── utah-teapot.obj │ │ ├── GLKitComplex.mm │ │ ├── GLRenderer.h │ │ ├── GLRenderer.mm │ │ ├── Info.plist │ │ ├── Mesh.h │ │ ├── Mesh.mm │ │ └── main.m ├── HelloGLKit │ ├── HelloGLKit-WinStore10.sln │ ├── HelloGLKit.vsimporter │ │ └── HelloGLKit-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── HelloGLKit-Debug-xcvars.txt │ │ │ ├── HelloGLKit-Release-xcvars.txt │ │ │ ├── HelloGLKit.vcxproj │ │ │ ├── HelloGLKit.vcxproj.filters │ │ │ ├── HelloGLKit_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── HelloGLKit.xcodeproj │ │ └── project.pbxproj │ └── HelloGLKit │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── GLRenderer.h │ │ ├── GLRenderer.mm │ │ ├── HelloGLKit.mm │ │ ├── Info.plist │ │ └── main.m ├── HelloOpenGL │ ├── HelloOpenGL-WinStore10.sln │ ├── HelloOpenGL.vsimporter │ │ └── HelloOpenGL-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── HelloOpenGL-Debug-xcvars.txt │ │ │ ├── HelloOpenGL-Release-xcvars.txt │ │ │ ├── HelloOpenGL.vcxproj │ │ │ ├── HelloOpenGL.vcxproj.filters │ │ │ ├── HelloOpenGL_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── HelloOpenGL.xcodeproj │ │ └── project.pbxproj │ └── HelloOpenGL │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── HelloOpenGL.m │ │ ├── Info.plist │ │ ├── OpenGLES20Controller.h │ │ ├── OpenGLES20Controller.m │ │ └── main.m ├── HelloUI │ ├── HelloUI-WinStore10.sln │ ├── HelloUI.vsimporter │ │ └── HelloUI-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── HelloUI-Debug-xcvars.txt │ │ │ ├── HelloUI-Release-xcvars.txt │ │ │ ├── HelloUI.vcxproj │ │ │ ├── HelloUI.vcxproj.filters │ │ │ ├── HelloUI_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── HelloUI.xcodeproj │ │ └── project.pbxproj │ ├── HelloUI │ │ ├── HelloUI.m │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── HelloUITests │ │ ├── HelloUITests.m │ │ └── Info.plist │ └── Info.plist ├── KVOPerf │ ├── Info.plist │ ├── KVOPerf-WinStore10.sln │ ├── KVOPerf.vsimporter │ │ └── KVOPerf-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── KVOPerf-Debug-xcvars.txt │ │ │ ├── KVOPerf-Release-xcvars.txt │ │ │ ├── KVOPerf.vcxproj │ │ │ ├── KVOPerf.vcxproj.filters │ │ │ ├── KVOPerf_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ └── KVOPerf │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── KVOPerf.mm │ │ └── main.m ├── WOCCatalog │ ├── WOCCatalog-WinStore10.sln │ ├── WOCCatalog.vsimporter │ │ └── WOCCatalog-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ │ ├── Package.appxmanifest │ │ │ ├── WOCCatalog-Debug-xcvars.txt │ │ │ ├── WOCCatalog-Release-xcvars.txt │ │ │ ├── WOCCatalog.vcxproj │ │ │ ├── WOCCatalog.vcxproj.filters │ │ │ ├── WOCCatalog_TemporaryKey.pfx │ │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ │ ├── default.rd.xml │ │ │ ├── es_MX.lproj │ │ │ └── Localizable.strings │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── zh-Hant-TW.lproj │ │ │ └── Localizable.strings │ │ │ └── zh.lproj │ │ │ └── Localizable.strings │ ├── WOCCatalog.xcodeproj │ │ └── project.pbxproj │ ├── WOCCatalog │ │ ├── AccelerateViewController.h │ │ ├── AccelerateViewController.m │ │ ├── AccelerateViewController2.h │ │ ├── AccelerateViewController2.m │ │ ├── AlertsViewController.h │ │ ├── AlertsViewController.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ApplicationViewController.h │ │ ├── ApplicationViewController.m │ │ ├── AudioToolboxViewController.h │ │ ├── AudioToolboxViewController.mm │ │ ├── AutoLayoutViewController.h │ │ ├── AutoLayoutViewController.m │ │ ├── BasicAnimationViewController.h │ │ ├── BasicAnimationViewController.m │ │ ├── BezierViewController.h │ │ ├── BezierViewController.m │ │ ├── BezierViewController.xib │ │ ├── ControlsViewController.h │ │ ├── ControlsViewController.m │ │ ├── CoreLocationViewController.h │ │ ├── CoreLocationViewController.mm │ │ ├── CoreMotionViewController.h │ │ ├── CoreMotionViewController.mm │ │ ├── DisplayModeViewController.h │ │ ├── DisplayModeViewController.m │ │ ├── GLKitExampleController.h │ │ ├── GLKitExampleController.mm │ │ ├── GeocodingViewController.h │ │ ├── GeocodingViewController.m │ │ ├── GesturesViewController.h │ │ ├── GesturesViewController.m │ │ ├── Images │ │ │ ├── blueButton.png │ │ │ ├── photo1.jpg │ │ │ ├── photo10.jpg │ │ │ ├── photo2.jpg │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── photo5.jpg │ │ │ ├── photo6.jpg │ │ │ ├── photo7.gif │ │ │ ├── photo8.tif │ │ │ ├── photo9.jpg │ │ │ ├── segment_check.png │ │ │ ├── segment_search.png │ │ │ ├── segment_tools.png │ │ │ ├── tf_bgimage.jpg │ │ │ └── whiteButton.png │ │ ├── ImagesViewController.h │ │ ├── ImagesViewController.m │ │ ├── Info.plist │ │ ├── LocalizationViewController.h │ │ ├── LocalizationViewController.m │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── MenuTableViewController.h │ │ ├── MenuTableViewController.m │ │ ├── OpenGLES11Controller.h │ │ ├── OpenGLES11Controller.m │ │ ├── OpenGLES20Controller.h │ │ ├── OpenGLES20Controller.m │ │ ├── PageViewController.h │ │ ├── PageViewController.m │ │ ├── PhotogridViewController.h │ │ ├── PhotogridViewController.m │ │ ├── PickersViewController.h │ │ ├── PickersViewController.m │ │ ├── PopoverViewController.h │ │ ├── PopoverViewController.m │ │ ├── SearchBarViewController.h │ │ ├── SearchBarViewController.m │ │ ├── SegmentsViewController.h │ │ ├── SegmentsViewController.m │ │ ├── ShadowViewController.h │ │ ├── ShadowViewController.m │ │ ├── SingleImageViewController.h │ │ ├── SingleImageViewController.m │ │ ├── TextDisplayViewController.h │ │ ├── TextDisplayViewController.m │ │ ├── ToolbarsViewController.h │ │ ├── ToolbarsViewController.m │ │ ├── TransitionsViewController.h │ │ ├── TransitionsViewController.m │ │ ├── UIPasteboardViewController.h │ │ ├── UIPasteboardViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── WebViewController.h │ │ ├── WebViewController.m │ │ ├── XIBTest.storyboard │ │ ├── XamlViewController.h │ │ ├── XamlViewController.m │ │ ├── main.m │ │ └── test.wav │ └── WOCCatalogTests │ │ ├── Info.plist │ │ └── WOCCatalogTests.m ├── WinRTSample │ ├── WinRTSample-WinStore10.sln │ ├── WinRTSample.vsimporter │ │ ├── WinRTSample-Headers-WinStore10 │ │ │ ├── WinRTSample-Headers.vcxitems │ │ │ └── WinRTSample-Headers.vcxitems.filters │ │ └── WinRTSample-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Package.appxmanifest │ │ │ ├── WinRTSample-Debug-xcvars.txt │ │ │ ├── WinRTSample-Release-xcvars.txt │ │ │ ├── WinRTSample.vcxproj │ │ │ ├── WinRTSample.vcxproj.filters │ │ │ ├── WinRTSample_TemporaryKey.pfx │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ └── WinRTSample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ButtonsViewController.h │ │ ├── ButtonsViewController.m │ │ ├── IAPViewController.h │ │ ├── IAPViewController.m │ │ ├── Info.plist │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── MenuTableViewController.h │ │ ├── MenuTableViewController.m │ │ ├── TilesViewController.h │ │ ├── TilesViewController.m │ │ ├── ToastsViewController.h │ │ ├── ToastsViewController.m │ │ ├── cappuccino.jpg │ │ ├── espresso.jpg │ │ ├── icon-black-espresso.png │ │ ├── icon-white-espresso.png │ │ ├── in-app-purchase.xml │ │ ├── latte.jpg │ │ └── main.m ├── XAMLCatalog │ ├── XAMLCatalog-WinStore10.sln │ ├── XAMLCatalog.vsimporter │ │ └── XAMLCatalog-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Package.appxmanifest │ │ │ ├── XAMLCatalog-Debug-xcvars.txt │ │ │ ├── XAMLCatalog-Release-xcvars.txt │ │ │ ├── XAMLCatalog.vcxproj │ │ │ ├── XAMLCatalog.vcxproj.filters │ │ │ ├── XAMLCatalog_TemporaryKey.pfx │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── XAMLCatalog.xcodeproj │ │ └── project.pbxproj │ └── XAMLCatalog │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── CustomTextControlViewController.h │ │ ├── CustomTextControlViewController.m │ │ ├── Fonts │ │ ├── WinObjC-Bold.ttf │ │ ├── WinObjC-Italic.ttf │ │ └── WinObjC.ttf │ │ ├── Images │ │ ├── 100x100.png │ │ ├── 125x125.png │ │ ├── 150x150.png │ │ ├── 50x50.png │ │ ├── 75x75.png │ │ ├── blue_background.jpg │ │ ├── button_image.png │ │ ├── progress-fill-sample.png │ │ ├── progress-track-sample.png │ │ └── yellow_background.jpg │ │ ├── Info.plist │ │ ├── MenuTableViewController.h │ │ ├── MenuTableViewController.m │ │ ├── MiscellaneousViewController.h │ │ ├── MiscellaneousViewController.m │ │ ├── ProgrammaticViewController.h │ │ ├── ProgrammaticViewController.m │ │ ├── StoryBoardViewController.h │ │ ├── StoryBoardViewController.m │ │ ├── TestEnabledUITextField.h │ │ ├── TestEnabledUITextField.mm │ │ ├── UIKitControls │ │ ├── UIActionSheetViewController.h │ │ ├── UIActionSheetViewController.m │ │ ├── UIActivityIndicatorViewController.h │ │ ├── UIActivityIndicatorViewController.m │ │ ├── UIButtonWithControlsViewController.h │ │ ├── UIButtonWithControlsViewController.m │ │ ├── UILabelViewController.h │ │ ├── UILabelViewController.m │ │ ├── UIProgressViewController.h │ │ ├── UIProgressViewController.m │ │ ├── UIScrollViewController.h │ │ ├── UIScrollViewController.m │ │ ├── UISliderViewController.h │ │ ├── UISliderViewController.m │ │ ├── UITextFieldViewController.h │ │ ├── UITextFieldViewController.m │ │ ├── UITextFieldViewController2.h │ │ ├── UITextFieldViewController2.m │ │ ├── UIViewViewController.h │ │ └── UIViewViewController.m │ │ ├── XAMLCatalog.storyboard │ │ └── main.m ├── XAMLTest │ ├── Default-568h@2x.png │ ├── XamlTest-WinStore10.sln │ ├── XamlTest.vsimporter │ │ ├── XamlTest-Headers-WinStore10 │ │ │ ├── XamlTest-Headers.vcxitems │ │ │ └── XamlTest-Headers.vcxitems.filters │ │ └── XamlTest-WinStore10 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── MainViewController.xaml │ │ │ ├── MainViewController.xaml.cpp │ │ │ ├── MainViewController.xaml.h │ │ │ ├── Package.appxmanifest │ │ │ ├── XamlTest-Debug-xcvars.txt │ │ │ ├── XamlTest-Release-xcvars.txt │ │ │ ├── XamlTest.vcxproj │ │ │ ├── XamlTest.vcxproj.filters │ │ │ ├── XamlTest_TemporaryKey.pfx │ │ │ ├── default.rd.xml │ │ │ ├── pch.cpp │ │ │ └── pch.h │ ├── XamlTest.xcodeproj │ │ └── project.pbxproj │ └── XamlTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── MainViewController.xib │ │ └── main.m ├── nuget.config └── samples.txt ├── scripts ├── build │ ├── Remove-VSTSNugetSources.ps1 │ ├── Submit-CIBuilds.ps1 │ ├── Submit-GithubBuildStatus.ps1 │ ├── VSImport-Samples.ps1 │ ├── unzip.ps1 │ └── wack.ps1 ├── git │ ├── clang-format.ps1 │ ├── common.ps1 │ ├── pre-commit │ ├── pre-commit.ps1 │ ├── pre-push │ └── pre-push.ps1 └── init │ ├── .version │ ├── Initialize-DownloadLatest.ps1 │ ├── Initialize-Environment.ps1 │ ├── Initialize-InstallFromNuget.ps1 │ ├── Initialize-NuGet.ps1 │ ├── Restore-ToolPackages.ps1 │ └── Update-Environment.ps1 ├── tests ├── Benchmark │ ├── Benchmark.h │ ├── BenchmarkPublisher.h │ ├── BenchmarkSampleTests.mm │ ├── EntryPoint.cpp │ ├── KVOBenchmarkTests.mm │ ├── NSDataBenchmarkTests.mm │ ├── NSOperationQueueBenchmarkTests.mm │ ├── StringBenchmarkTests.mm │ └── TextBenchmarkTests.mm ├── ContainerCRTDeps │ ├── ARM │ │ ├── concrt140_app.dll │ │ ├── concrt140d_app.dll │ │ ├── msvcp140.dll │ │ ├── msvcp140_app.dll │ │ ├── msvcp140d.dll │ │ ├── msvcp140d_app.dll │ │ ├── ucrtbased.dll │ │ ├── vcamp140_app.dll │ │ ├── vcamp140d_app.dll │ │ ├── vccorlib140.dll │ │ ├── vccorlib140_app.dll │ │ ├── vccorlib140d.dll │ │ ├── vccorlib140d_app.dll │ │ ├── vcomp140_app.dll │ │ ├── vcomp140d_app.dll │ │ ├── vcruntime140.dll │ │ ├── vcruntime140_app.dll │ │ ├── vcruntime140d.dll │ │ └── vcruntime140d_app.dll │ └── x86 │ │ ├── concrt140_app.dll │ │ ├── concrt140d_app.dll │ │ ├── msvcp140.dll │ │ ├── msvcp140_app.dll │ │ ├── msvcp140d.dll │ │ ├── msvcp140d_app.dll │ │ ├── ucrtbased.dll │ │ ├── vcamp140_app.dll │ │ ├── vcamp140d_app.dll │ │ ├── vccorlib140.dll │ │ ├── vccorlib140_app.dll │ │ ├── vccorlib140d.dll │ │ ├── vccorlib140d_app.dll │ │ ├── vcomp140_app.dll │ │ ├── vcomp140d_app.dll │ │ ├── vcruntime140.dll │ │ ├── vcruntime140_app.dll │ │ ├── vcruntime140d.dll │ │ └── vcruntime140d_app.dll ├── Generate-TestImages.ps1 ├── Run-FunctionalTests.ps1 ├── Run-Tests.ps1 ├── Run-UnitTests.ps1 ├── Tests.Shared │ ├── Framework │ │ ├── Framework.cpp │ │ └── Framework.h │ ├── Logger.cpp │ ├── Logger.h │ ├── pch.h │ ├── targetver.h │ └── test-api.h ├── apps │ ├── AutoAppBuild-tests.json │ ├── AutoAppBuild.py │ └── TemporaryKey.pfx ├── frameworks │ ├── OSXShims │ │ ├── include │ │ │ └── windows.h │ │ └── src │ │ │ ├── LoggingNative.mm │ │ │ └── windows.cpp │ ├── gtest │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── include │ │ │ ├── gtest-api.h │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ └── include │ │ ├── Helpers │ │ └── TestHelpers.h │ │ └── TestFramework.h ├── functionaltests │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── FunctionalTestHelpers.h │ ├── FunctionalTestHelpers.mm │ ├── FunctionalTests.cpp │ ├── MainViewController.h │ ├── MainViewController.mm │ ├── Tests │ │ ├── AssetsLibraryTests │ │ │ ├── AssetsLibrary.AppxManifest.xml │ │ │ ├── AssetsLibraryTestHelpers.h │ │ │ ├── AssetsLibraryTestHelpers.mm │ │ │ ├── AssetsLibraryTestVideo.mp4 │ │ │ └── AssetsLibraryTests.mm │ │ ├── CoreAnimationTests │ │ │ └── CALayerAppearanceTests.mm │ │ ├── CortanaTests.mm │ │ ├── Default.AppXManifest.xml │ │ ├── FileActivationTests.mm │ │ ├── NSBundleTests.mm │ │ ├── NSLayoutConstraintTests.mm │ │ ├── NSOperationQueueTests.mm │ │ ├── NSURL.AppxManifest.xml │ │ ├── NSURLConnectionTests.mm │ │ ├── NSURLSession.mm │ │ ├── NSURLStorageFileTests.mm │ │ ├── NSUserDefaultsTests.mm │ │ ├── ProjectionTests │ │ │ ├── CoreDispatcherTests.mm │ │ │ ├── SanityTests.mm │ │ │ └── SanityTestsWithARCEnabled.mm │ │ ├── SampleTest.mm │ │ ├── ToastNotificationTests.mm │ │ ├── UIApplicationDelegateTests.mm │ │ ├── UIApplicationTests.mm │ │ └── UIKitTests │ │ │ ├── Assets │ │ │ └── uilabel-ios.xml │ │ │ ├── UIActionSheetTests.mm │ │ │ ├── UIActivityIndicatorTests.mm │ │ │ ├── UIButtonTests.mm │ │ │ ├── UIGestureCoordinatorTests.mm │ │ │ ├── UILabelTests.mm │ │ │ ├── UIProgressViewTests.mm │ │ │ ├── UIScrollViewTests.mm │ │ │ ├── UISliderTests.mm │ │ │ ├── UITextFieldTests.mm │ │ │ ├── UIViewControllerTests.mm │ │ │ └── UIViewTests.mm │ ├── UXTestHelpers.h │ ├── UXTestHelpers.mm │ ├── pch.h │ └── targetver.h ├── helpers │ ├── THBooleanCondition.mm │ └── THRunLoopSpinner.mm ├── testapps │ ├── AddressBookSample │ │ ├── AddressBook │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── SingleContactViewController.h │ │ │ ├── SingleContactViewController.m │ │ │ ├── ViewAllContactsViewController.h │ │ │ ├── ViewAllContactsViewController.m │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── AddressBookSample-WinStore10.sln │ │ ├── AddressBookSample.vsimporter │ │ │ ├── AddressBookSample-Headers-WinStore10 │ │ │ │ ├── AddressBookSample-Headers.vcxitems │ │ │ │ └── AddressBookSample-Headers.vcxitems.filters │ │ │ └── AddressBookSample-WinStore10 │ │ │ │ ├── AddressBookSample-Debug-xcvars.txt │ │ │ │ ├── AddressBookSample-Release-xcvars.txt │ │ │ │ ├── AddressBookSample.vcxproj │ │ │ │ ├── AddressBookSample.vcxproj.filters │ │ │ │ ├── AddressBookSample_TemporaryKey.pfx │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ └── AddressBookSample.xcodeproj │ │ │ └── project.pbxproj │ ├── ApplicationGroupFolderRead │ │ ├── ApplicationGroupFolderRead-WinStore10.sln │ │ ├── ApplicationGroupFolderRead.vsimporter │ │ │ └── ApplicationGroupFolderRead-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── ApplicationGroupFolderRead-Debug-xcvars.txt │ │ │ │ ├── ApplicationGroupFolderRead-Release-xcvars.txt │ │ │ │ ├── ApplicationGroupFolderRead.vcxproj │ │ │ │ ├── ApplicationGroupFolderRead.vcxproj.filters │ │ │ │ ├── ApplicationGroupFolderRead_TemporaryKey.pfx │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── ApplicationGroupFolderRead.xcodeproj │ │ │ └── project.pbxproj │ │ └── ApplicationGroupFolderRead │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── ApplicationGroupFolderRead.entitlements │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ ├── ApplicationGroupFolderWrite │ │ ├── ApplicationGroupFolderWrite-WinStore10.sln │ │ ├── ApplicationGroupFolderWrite.vsimporter │ │ │ └── ApplicationGroupFolderWrite-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── ApplicationGroupFolderWrite-Debug-xcvars.txt │ │ │ │ ├── ApplicationGroupFolderWrite-Release-xcvars.txt │ │ │ │ ├── ApplicationGroupFolderWrite.vcxproj │ │ │ │ ├── ApplicationGroupFolderWrite.vcxproj.filters │ │ │ │ ├── ApplicationGroupFolderWrite_TemporaryKey.pfx │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── ApplicationGroupFolderWrite.xcodeproj │ │ │ └── project.pbxproj │ │ └── ApplicationGroupFolderWrite │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── ApplicationGroupFolderWrite.entitlements │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ ├── CGCatalog │ │ ├── CGCatalog-WinStore10.sln │ │ ├── CGCatalog.vsimporter │ │ │ ├── CGCatalog-Headers-WinStore10 │ │ │ │ ├── CGCatalog-Headers.vcxitems │ │ │ │ └── CGCatalog-Headers.vcxitems.filters │ │ │ └── CGCatalog-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── CGCatalog-Debug-xcvars.txt │ │ │ │ ├── CGCatalog-Release-xcvars.txt │ │ │ │ ├── CGCatalog.vcxproj │ │ │ │ ├── CGCatalog.vcxproj.filters │ │ │ │ ├── CGCatalog_TemporaryKey.pfx │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── CGCatalog.xcodeproj │ │ │ └── project.pbxproj │ │ └── CGCatalog │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── CGCBaseViewController.h │ │ │ ├── CGCBaseViewController.m │ │ │ ├── CGCRootViewController.h │ │ │ ├── CGCRootViewController.m │ │ │ ├── CGContextSampleRow.h │ │ │ ├── CGContextSampleRow.m │ │ │ ├── CGContextSamplesRootViewController.h │ │ │ ├── CGContextSamplesRootViewController.m │ │ │ ├── CGContextShadowViewController.h │ │ │ ├── CGContextShadowViewController.mm │ │ │ ├── CGDrawOptions.h │ │ │ ├── CGDrawOptions.m │ │ │ ├── CGDrawView.h │ │ │ ├── CGDrawView.m │ │ │ ├── CGPathAddArcFullCircleViewController.h │ │ │ ├── CGPathAddArcFullCircleViewController.m │ │ │ ├── CGPathAddArcToPointViewController.h │ │ │ ├── CGPathAddArcToPointViewController.m │ │ │ ├── CGPathAddArcViewController.h │ │ │ ├── CGPathAddArcViewController.m │ │ │ ├── CGPathAddCurveToPointViewController.h │ │ │ ├── CGPathAddCurveToPointViewController.m │ │ │ ├── CGPathAddElipseViewController.h │ │ │ ├── CGPathAddElipseViewController.m │ │ │ ├── CGPathAddLineToPointViewController.h │ │ │ ├── CGPathAddLineToPointViewController.m │ │ │ ├── CGPathAddPathViewController.h │ │ │ ├── CGPathAddPathViewController.m │ │ │ ├── CGPathAddQuadCurveToPointViewController.h │ │ │ ├── CGPathAddQuadCurveToPointViewController.m │ │ │ ├── CGPathAddRectViewController.h │ │ │ ├── CGPathAddRectViewController.m │ │ │ ├── CGPathAddRoundedRectViewController.h │ │ │ ├── CGPathAddRoundedRectViewController.m │ │ │ ├── CGPathApplyCurveViewController.h │ │ │ ├── CGPathApplyCurveViewController.m │ │ │ ├── CGPathApplyViewController.h │ │ │ ├── CGPathApplyViewController.m │ │ │ ├── CGPathCloseSubpathViewController.h │ │ │ ├── CGPathCloseSubpathViewController.m │ │ │ ├── CGPathContainsPointViewController.h │ │ │ ├── CGPathContainsPointViewController.m │ │ │ ├── CGPathGetBoundingBoxViewController.h │ │ │ ├── CGPathGetBoundingBoxViewController.m │ │ │ ├── CGSamplePage.h │ │ │ ├── Info.plist │ │ │ ├── Resources │ │ │ ├── AddArc.png │ │ │ ├── AddArcToPoint.png │ │ │ ├── AddCurveToPoint.png │ │ │ ├── AddElipseToRect.png │ │ │ ├── AddLineToPoint.png │ │ │ ├── AddPath.png │ │ │ ├── AddQuadCurveToPoint.png │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── CloseSubPath.png │ │ │ ├── FullCircles.png │ │ │ ├── GetBoundingBox.png │ │ │ ├── Launch Screen.storyboard │ │ │ ├── LogoAutodesk.png │ │ │ ├── PathAddRect.png │ │ │ ├── PathApply.png │ │ │ └── RoundedRect.png │ │ │ ├── Samples │ │ │ ├── CGCCGBitmapContentViewController.h │ │ │ ├── CGCCGBitmapContentViewController.m │ │ │ ├── CGCCGContextBeginEndTransparencyLayer.h │ │ │ ├── CGCCGContextBeginEndTransparencyLayer.m │ │ │ ├── CGCCGContextBeginTransparencyLayerWithRect.h │ │ │ ├── CGCCGContextBeginTransparencyLayerWithRect.m │ │ │ ├── CGCCGContextReplacePathWithStrokedPath.h │ │ │ ├── CGCCGContextReplacePathWithStrokedPath.m │ │ │ ├── CGCCGContextSetPatternPhase.h │ │ │ ├── CGCCGContextSetPatternPhase.m │ │ │ ├── CGCCGContextViewController.h │ │ │ ├── CGCCGContextViewController.m │ │ │ ├── CGCCGPathApplyViewController.h │ │ │ ├── CGCCGPathApplyViewController.m │ │ │ ├── CGCCGPathContainsPointViewController.h │ │ │ ├── CGCCGPathContainsPointViewController.m │ │ │ ├── CGContextNewTestsController.h │ │ │ └── CGContextNewTestsController.m │ │ │ └── main.m │ ├── CTCatalog │ │ ├── CTCatalog-WinStore10.sln │ │ ├── CTCatalog.vsimporter │ │ │ ├── CTCatalog-Headers-WinStore10 │ │ │ │ ├── CTCatalog-Headers.vcxitems │ │ │ │ └── CTCatalog-Headers.vcxitems.filters │ │ │ └── CTCatalog-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── CTCatalog-Debug-xcvars.txt │ │ │ │ ├── CTCatalog-Release-xcvars.txt │ │ │ │ ├── CTCatalog.vcxproj │ │ │ │ ├── CTCatalog.vcxproj.filters │ │ │ │ ├── CTCatalog_TemporaryKey.pfx │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── CTCatalog.xcodeproj │ │ │ └── project.pbxproj │ │ └── CTCatalog │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── CTCBaseViewController.h │ │ │ ├── CTCBaseViewController.mm │ │ │ ├── CTCRootViewController.h │ │ │ ├── CTCRootViewController.m │ │ │ ├── Fonts │ │ │ ├── WinObjC-Bold.ttf │ │ │ ├── WinObjC-Italic.ttf │ │ │ └── WinObjC.ttf │ │ │ ├── Info.plist │ │ │ ├── Tests │ │ │ ├── CTCAffineTransformationTestViewController.h │ │ │ ├── CTCAffineTransformationTestViewController.mm │ │ │ ├── CTCAlignmentTestViewController.h │ │ │ ├── CTCAlignmentTestViewController.m │ │ │ ├── CTCFontTestViewController.h │ │ │ ├── CTCFontTestViewController.mm │ │ │ ├── CTCFrameTestViewController.h │ │ │ ├── CTCFrameTestViewController.mm │ │ │ ├── CTCFramesetterTestViewController.h │ │ │ ├── CTCFramesetterTestViewController.mm │ │ │ ├── CTCLineTestViewController.h │ │ │ ├── CTCLineTestViewController.mm │ │ │ ├── CTCParagraphStyleTestViewController.h │ │ │ ├── CTCParagraphStyleTestViewController.mm │ │ │ ├── CTCPathForGlyphTestViewController.h │ │ │ ├── CTCPathForGlyphTestViewController.mm │ │ │ ├── CTCRunTestViewController.h │ │ │ └── CTCRunTestViewController.mm │ │ │ └── main.m │ ├── Foundation-Dev │ │ ├── Foundation-Dev-WinStore10.sln │ │ ├── Foundation-Dev.vsimporter │ │ │ └── Foundation-Dev-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── Foundation-Dev-Debug-xcvars.txt │ │ │ │ ├── Foundation-Dev-Release-xcvars.txt │ │ │ │ ├── Foundation-Dev.vcxproj │ │ │ │ ├── Foundation-Dev.vcxproj.filters │ │ │ │ ├── Foundation-Dev_TemporaryKey.pfx │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── Foundation-Dev.xcodeproj │ │ │ └── project.pbxproj │ │ └── Foundation-Dev │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── FoundationsViewController.h │ │ │ ├── FoundationsViewController.m │ │ │ ├── Info.plist │ │ │ ├── MenuTableViewController.h │ │ │ ├── MenuTableViewController.m │ │ │ ├── TaskInfoViewController.h │ │ │ ├── TaskInfoViewController.m │ │ │ ├── URLDownloadCell.h │ │ │ ├── URLDownloadCell.mm │ │ │ ├── URLSessionViewController.h │ │ │ ├── URLSessionViewController.mm │ │ │ ├── UserDefaultsViewController.h │ │ │ ├── UserDefaultsViewController.m │ │ │ └── main.m │ ├── MinApp │ │ ├── MinApp-WinStore10.sln │ │ ├── MinApp.vsimporter │ │ │ └── MinApp-WinStore10 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ │ ├── MinApp-Debug-xcvars.txt │ │ │ │ ├── MinApp-Release-xcvars.txt │ │ │ │ ├── MinApp.vcxproj │ │ │ │ ├── MinApp.vcxproj.filters │ │ │ │ ├── MinApp_TemporaryKey.pfx │ │ │ │ ├── Package.appxmanifest │ │ │ │ ├── default.rd.xml │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ ├── MinApp.xcodeproj │ │ │ └── project.pbxproj │ │ └── MinApp │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ ├── MinAppCppCx │ │ ├── MinAppCppCx.sln │ │ └── MinAppCppCx │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cpp │ │ │ ├── MainPage.xaml.h │ │ │ ├── MinAppCppCx.vcxproj │ │ │ ├── MinAppCppCx.vcxproj.filters │ │ │ ├── MinAppCppCx_TemporaryKey.pfx │ │ │ ├── Package.appxmanifest │ │ │ ├── pch.cpp │ │ │ └── pch.h │ └── nuget.config ├── uiautomation │ └── XAMLCatalogTest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SliderTest.cs │ │ ├── TestCommon.cs │ │ ├── TextFieldsTest.cs │ │ ├── XAMLCatalogTest.csproj │ │ ├── XAMLCatalogTest.sln │ │ └── packages.config └── unittests │ ├── Accelerate │ ├── BLASTest.m │ ├── images │ │ └── Photo2.jpg │ ├── vDSPTest.mm │ └── vImageTest.mm │ ├── Accounts │ └── AccountsTests.mm │ ├── AddressBook │ ├── AuthorizationTests.mm │ ├── BasicQueryTests.mm │ ├── ModifyContactsTests.mm │ ├── MultiValueTests.mm │ └── MutableMultiValueTests.mm │ ├── AudioToolbox │ ├── AudioConverterTest.mm │ └── ExampleTest.m │ ├── Clang │ ├── ClangModules.h │ ├── ObjCImportTest.m │ ├── ObjCModulesTest.m │ ├── ObjCPPModulesTest.mm │ └── SanityTest.cpp │ ├── CoreData │ └── CoreDataTests.mm │ ├── CoreFoundation │ ├── CFAttributedStringTests.mm │ ├── CFBinaryHeapTests.m │ ├── CFCppBaseTests.cpp │ ├── CFStringTokenizerTests.m │ ├── CFTimeZoneTests.mm │ ├── CFURLTests.mm │ └── CFUUIDTests.m │ ├── CoreGraphics.Drawing │ ├── CGContextBlendModeTests.cpp │ ├── CGContextDrawingTests.cpp │ ├── CGContextDrawing_AntiAliasTests.cpp │ ├── CGContextDrawing_ClearRectTests.cpp │ ├── CGContextDrawing_DrawingOptionsTests.cpp │ ├── CGContextDrawing_FillModeTests.cpp │ ├── CGContextDrawing_FillTests.cpp │ ├── CGContextDrawing_FlushTests.cpp │ ├── CGContextDrawing_GradientTests.cpp │ ├── CGContextDrawing_ImageDrawingTests.cpp │ ├── CGContextDrawing_ImageMaskTests.cpp │ ├── CGContextDrawing_PatternTests.cpp │ ├── CGContextDrawing_ShadowTests.cpp │ ├── CGContextDrawing_WidenPathTests.cpp │ ├── CGContextTransparencyLayerTests.cpp │ ├── CGPathDrawingTests.cpp │ ├── CGTextDrawing.cpp │ ├── CTDrawingTests.cpp │ ├── DrawingTest.cpp │ ├── DrawingTest.h │ ├── DrawingTestConfig.h │ ├── EntryPoint.cpp │ ├── ImageComparison.cpp │ ├── ImageComparison.h │ ├── ImageHelpers.cpp │ ├── ImageHelpers.h │ ├── Makefile │ ├── TAEFEntryPoint.cpp │ ├── UIBezierPath_DrawingTest.mm │ └── data │ │ ├── .keep │ │ ├── WinObjC-Bold.ttf │ │ ├── WinObjC-Italic.ttf │ │ ├── WinObjC.ttf │ │ ├── jpg1.jpg │ │ ├── png1.9.png │ │ ├── reference │ │ ├── ArcAA_0_0.000000.png │ │ ├── ArcAA_0_0.250000.png │ │ ├── ArcAA_0_0.500000.png │ │ ├── ArcAA_0_0.750000.png │ │ ├── ArcAA_1_0.000000.png │ │ ├── ArcAA_1_0.250000.png │ │ ├── ArcAA_1_0.500000.png │ │ ├── ArcAA_1_0.750000.png │ │ ├── ArcAA_2_0.000000.png │ │ ├── ArcAA_2_0.250000.png │ │ ├── ArcAA_2_0.500000.png │ │ ├── ArcAA_2_0.750000.png │ │ ├── LineAA_0_0.000000.png │ │ ├── LineAA_0_0.250000.png │ │ ├── LineAA_0_0.500000.png │ │ ├── LineAA_0_0.750000.png │ │ ├── LineAA_1_0.000000.png │ │ ├── LineAA_1_0.250000.png │ │ ├── LineAA_1_0.500000.png │ │ ├── LineAA_1_0.750000.png │ │ ├── LineAA_2_0.000000.png │ │ ├── LineAA_2_0.250000.png │ │ ├── LineAA_2_0.500000.png │ │ ├── LineAA_2_0.750000.png │ │ ├── TestImage.CGContext.AntialiasToggleTranscendsGState.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeColor.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeColorBurn.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeColorDodge.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeCopy.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDarken.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDestinationAtop.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDestinationIn.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDestinationOut.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDestinationOver.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeDifference.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeExclusion.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeHardLight.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeHue.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeLighten.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeLuminosity.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeMultiply.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeNormal.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeOverlay.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModePlusLighter.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeSaturation.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeScreen.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeSoftLight.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeSourceAtop.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeSourceIn.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeSourceOut.png │ │ ├── TestImage.CGContext.Blending_ImageDestination_kCGBlendModeXOR.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeColor.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeColorBurn.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeColorDodge.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeCopy.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDarken.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDestinationAtop.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDestinationIn.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDestinationOut.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDestinationOver.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeDifference.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeExclusion.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeHardLight.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeHue.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeLighten.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeLuminosity.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeMultiply.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeNormal.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeOverlay.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModePlusLighter.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeSaturation.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeScreen.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeSoftLight.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeSourceAtop.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeSourceIn.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeSourceOut.png │ │ ├── TestImage.CGContext.Blending_ImageSource_kCGBlendModeXOR.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeColor.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeColorBurn.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeColorDodge.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeCopy.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDarken.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDestinationAtop.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDestinationIn.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDestinationOut.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDestinationOver.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeDifference.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeExclusion.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeHardLight.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeHue.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeLighten.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeLuminosity.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeMultiply.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeNormal.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeOverlay.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModePlusLighter.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeSaturation.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeScreen.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeSoftLight.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeSourceAtop.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeSourceIn.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeSourceOut.png │ │ ├── TestImage.CGContext.Blending_Layered_kCGBlendModeXOR.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeColor.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeColorBurn.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeColorDodge.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeDarken.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeDifference.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeExclusion.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeHardLight.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeHue.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeLighten.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeLuminosity.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeMultiply.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeOverlay.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeSaturation.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeScreen.png │ │ ├── TestImage.CGContext.Blending_kCGBlendModeSoftLight.png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)100x100.sweep(0--3).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)100x100.sweep(0--6).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)100x100.sweep(1--2).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)100x100.sweep(3--0).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)50x250.sweep(0--3).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)50x250.sweep(0--6).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)50x250.sweep(1--2).png │ │ ├── TestImage.CGContext.CGClearRectArc.(0.0)50x250.sweep(3--0).png │ │ ├── TestImage.CGContext.CGClearRectArc.(100.100)125x250.sweep(0--3).png │ │ ├── TestImage.CGContext.CGClearRectArc.(100.100)125x250.sweep(0--6).png │ │ ├── TestImage.CGContext.CGClearRectArc.(100.100)125x250.sweep(1--2).png │ │ ├── TestImage.CGContext.CGClearRectArc.(100.100)125x250.sweep(3--0).png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.16.A0.3.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.16.A0.5.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.16.A1.0.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.20.A0.3.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.20.A0.5.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.20.A1.0.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.32.A0.3.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.32.A0.5.png │ │ ├── TestImage.CGContext.CGPatternColored.drawColoredPatternMultiSquare.size.32.A1.0.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedFill.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawPatternWindowsLogo.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(0.0)100x100.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.100.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.100.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.25.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha0.50.png │ │ ├── TestImage.CGContext.CGPatternColoredRectBasedStroke.drawStencilStar.rect.(inf.inf)0x0.xStep.50.00.yStep.50.00.alpha1.00.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.purple.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.purple.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.purple.32.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.red.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.red.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.red.32.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.teal.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.teal.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilBox.teal.32.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.purple.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.purple.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.purple.32.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.red.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.red.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.red.32.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.teal.16.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.teal.20.png │ │ ├── TestImage.CGContext.CGPatternStencil.drawStencilStar.teal.32.png │ │ ├── TestImage.CGContext.Canva.png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(0.0)250x250.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)100x100.clear.(10.20)300x400.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(0.0)250x250.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(0.0)50x250.clear.(10.20)300x400.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(0.0)250x250.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[0.2,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[0.3,0.0,0.0,0.8,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[0.9,0.4,-0.4,0.9,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[1.0,0.0,0.0,1.0,3.0,6.0].png │ │ ├── TestImage.CGContext.ClearRect.(100.100)125x250.clear.(10.20)300x400.[1.0,0.0,0.3,1.0,0.0,0.0].png │ │ ├── TestImage.CGContext.ClearRect.png │ │ ├── TestImage.CGContext.ClearRectTransparencyLayer.png │ │ ├── TestImage.CGContext.ClipBoundingBox.png │ │ ├── TestImage.CGContext.CustomPathClearRect.png │ │ ├── TestImage.CGContext.DrawAnImageWithInterpolationQuality.png │ │ ├── TestImage.CGContext.DrawAnImageWithInterpolationQualityAndAlpha.png │ │ ├── TestImage.CGContext.DrawAnImageWithOpacity.png │ │ ├── TestImage.CGContext.DrawWithRotatedTextMatrix.png │ │ ├── TestImage.CGContext.FillMode.EOFill.png │ │ ├── TestImage.CGContext.FillMode.EOFillStroke.png │ │ ├── TestImage.CGContext.FillMode.Fill.png │ │ ├── TestImage.CGContext.FillMode.FillStroke.png │ │ ├── TestImage.CGContext.ImageInterpolation_High.png │ │ ├── TestImage.CGContext.ImageInterpolation_Low.png │ │ ├── TestImage.CGContext.ImageInterpolation_Medium.png │ │ ├── TestImage.CGContext.ImageInterpolation_None.png │ │ ├── TestImage.CGContext.NullColorFill.png │ │ ├── TestImage.CGContext.NullColorStroke.png │ │ ├── TestImage.CGContext.PremultipliedAlphaImage.png │ │ ├── TestImage.CGContext.RedBox.png │ │ ├── TestImage.CGContext.Shadow.png │ │ ├── TestImage.CGContext.ShadowDisabledInMiddle.png │ │ ├── TestImage.CGContext.ShadowEnabledInMiddle.png │ │ ├── TestImage.CGContext.ShadowOverlap.png │ │ ├── TestImage.CGContext.ShadowWithRotatedCTM.png │ │ ├── TestImage.CGContext.ShowGlyphs.png │ │ ├── TestImage.CGContext.ShowGlyphsAtPoint.png │ │ ├── TestImage.CGContext.ShowTextAtPoint.png │ │ ├── TestImage.CGContext.StrokeRectWithWidth.png │ │ ├── TestImage.CGContext.SubPixelAlignment.png │ │ ├── TestImage.CGContextClipping.ClipATransparencyLayer.png │ │ ├── TestImage.CGContextClipping.ClipDrawClipDraw.png │ │ ├── TestImage.CGContextClipping.CrossTransformedImageMasks.png │ │ ├── TestImage.CGContextClipping.NonOverlappingImageMasks.png │ │ ├── TestImage.CGContextClipping.PushClipPopClip.png │ │ ├── TestImage.CGContextFill.Arc.sweep(0--3).direction.0.png │ │ ├── TestImage.CGContextFill.Arc.sweep(0--3).direction.1.png │ │ ├── TestImage.CGContextFill.Arc.sweep(0--6).direction.0.png │ │ ├── TestImage.CGContextFill.Arc.sweep(0--6).direction.1.png │ │ ├── TestImage.CGContextFill.Arc.sweep(1--2).direction.0.png │ │ ├── TestImage.CGContextFill.Arc.sweep(1--2).direction.1.png │ │ ├── TestImage.CGContextFill.Arc.sweep(6--0).direction.0.png │ │ ├── TestImage.CGContextFill.Arc.sweep(6--0).direction.1.png │ │ ├── TestImage.CGContextFlush.FillFlush.png │ │ ├── TestImage.CGContextFlush.FillFlushMultipleDrawingCounters.png │ │ ├── TestImage.CGContextTransparencyLayer.BoundedLayerFloodFill.png │ │ ├── TestImage.CGContextTransparencyLayer.BoundedLayerFloodFill_GlobalClip.png │ │ ├── TestImage.CGContextTransparencyLayer.FloodFill_GlobalAlpha0_5f.png │ │ ├── TestImage.CGContextTransparencyLayer.ZeroGlobalAlpha.png │ │ ├── TestImage.CGGradient..LinearGradient2.png │ │ ├── TestImage.CGGradient..LinearGradient3.png │ │ ├── TestImage.CGGradient..LinearGradientShortBothSides.png │ │ ├── TestImage.CGGradient..LinearGradientShortBothSides_Options_0.png │ │ ├── TestImage.CGGradient.Linear.DifferentColorSpace.RGB.png │ │ ├── TestImage.CGGradient.Linear.DifferentColorSpace.Unknown.png │ │ ├── TestImage.CGGradient.LinearGradient.png │ │ ├── TestImage.CGGradient.LinearGradient2.png │ │ ├── TestImage.CGGradient.LinearGradient2Short.png │ │ ├── TestImage.CGGradient.LinearGradient3.png │ │ ├── TestImage.CGGradient.LinearGradientDrawWithCGColor.png │ │ ├── TestImage.CGGradient.LinearGradientInvalidCount.png │ │ ├── TestImage.CGGradient.LinearGradientNullLocations.png │ │ ├── TestImage.CGGradient.LinearGradientOneLocation.png │ │ ├── TestImage.CGGradient.LinearGradientShortBothSides_Options_0.png │ │ ├── TestImage.CGGradient.LinearGradientShortBothSides_Options_kCGGradientDrawsAfterEndLocation.png │ │ ├── TestImage.CGGradient.LinearGradientShortBothSides_Options_kCGGradientDrawsBeforeStartLocation.png │ │ ├── TestImage.CGGradient.LinearGradientWithAlpha.png │ │ ├── TestImage.CGGradient.LinearGradientWithLowOpacity.png │ │ ├── TestImage.CGGradient.LinearGradientWithLowOpacityShort.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.0.900000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.0.900000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.10.000000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.10.000000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.200.000000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(200.000000, 10.000000).radius.200.000000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.0.900000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.0.900000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.10.000000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.10.000000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.200.000000.color.teal.purple.red.blue.options.endLocation.png │ │ ├── TestImage.CGGradient.Radial.center.(60.000000, 80.000000).radius.200.000000.color.teal.purple.red.blue.options.startLocation.png │ │ ├── TestImage.CGGradient.RadialOneColor.png │ │ ├── TestImage.CGGradient.RadialSimpleDraw.png │ │ ├── TestImage.CGImage.CreateWithSameSizeMask.png │ │ ├── TestImage.CGImage.CreateWithScaledMask.png │ │ ├── TestImage.CGImageDrawing.DrawAContextIntoAnImage.png │ │ ├── TestImage.CGImageDrawing.DrawAnImage.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustom.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaled.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaledAlpha.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaledDown.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaledDownReallyLow.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaledObscure.png │ │ ├── TestImage.CGImageDrawing.TiledImageCustomScaledUp.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlower.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaled.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledAlpha1.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledAlpha2.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledAlpha3.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledDown.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledTiny.png │ │ ├── TestImage.CGImageDrawing.TiledImageFlowerScaledUp.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlower.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaled.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaled2.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledAlpha.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledAlpha2.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledAlpha3.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledAspectRatio.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledAspectRatioWrong.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledDown.png │ │ ├── TestImage.CGImageDrawing.TiledImageMultiColorFlowerScaledUp.png │ │ ├── TestImage.CGPath.AddCurveToPoint.png │ │ ├── TestImage.CGPath.AddLineToPoint.png │ │ ├── TestImage.CGPath.AddLinesWithoutMove.png │ │ ├── TestImage.CGPath.AddPath.png │ │ ├── TestImage.CGPath.AddQuadCurveToPoint.png │ │ ├── TestImage.CGPath.AddRect.png │ │ ├── TestImage.CGPath.AddRects.png │ │ ├── TestImage.CGPath.Apply.png │ │ ├── TestImage.CGPath.ArcCircles_HalfCircle.png │ │ ├── TestImage.CGPath.ArcCircles_MoveToSidePoint.png │ │ ├── TestImage.CGPath.ArcCircles_MoveToStart.png │ │ ├── TestImage.CGPath.ArcCircles_NoMove.png │ │ ├── TestImage.CGPath.CloseSubpath.png │ │ ├── TestImage.CGPath.FillArcsComplex.png │ │ ├── TestImage.CGPath.FillArcsSimple.png │ │ ├── TestImage.CGPath.FillStraightLines.png │ │ ├── TestImage.CGPath.PathApplyControlPointsArcs.png │ │ ├── TestImage.CGPath.PathApplyControlPointsArcsSimple.png │ │ ├── TestImage.CGPath.PathApplyControlPointsQuadCurve.png │ │ ├── TestImage.CGPath.PathApplyDraw.png │ │ ├── TestImage.CGPatternTests.CGPatternColoredRectBasedStrokeTransform.png │ │ ├── TestImage.CGPatternTests.PatternDrawPath.png │ │ ├── TestImage.CGPatternTests.PatternDrawPathWhiteBackground.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoNone.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoNoneWhiteBackground.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoRotate.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoRotateWhiteBackground.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoScale.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoScaleWhiteBackground.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoSingle.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoTranslate.png │ │ ├── TestImage.CGPatternTests.PatternFillTransformationWindowsLogoTranslateWhiteBackground.png │ │ ├── TestImage.CGPatternTests.PatternFillWindowsLogoPath.png │ │ ├── TestImage.CGPatternTests.PatternFillWindowsLogoRotate.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.0.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.1.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.0.LineBreakMode.2.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.0.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.1.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.1.LineBreakMode.2.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.0.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.1.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.2.LineBreakMode.2.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.0.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.1.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.3.LineBreakMode.2.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.0.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.1.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.-1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.-1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.-1.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.0.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.0.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.0.FontSize.91.25.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.1.FontSize.25.50.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.1.FontSize.8.00.png │ │ ├── TestImage.CT.Alignment.4.LineBreakMode.2.WritingDirection.1.FontSize.91.25.png │ │ ├── TestImage.CTDrawing.CGPathTranslation.png │ │ ├── TestImage.CTFont.DrawGlyphs.png │ │ ├── TestImage.CTFontManager.DrawWithCustomFont.png │ │ ├── TestImage.CTFrame.BasicDrawingTest.png │ │ ├── TestImage.CTFrame.BasicUIKitMimicDrawingTest.png │ │ ├── TestImage.CTFrame.BasicUnicodeTest.png │ │ ├── TestImage.CTLine.BasicDrawingTest.png │ │ ├── TestImage.CTRun.BasicDrawingTest.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_0.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_1.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_10.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_11.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_12.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_13.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_14.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_15.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_16.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_17.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_2.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_3.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_4.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_5.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_6.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_7.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_8.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.MaskedAndClipped_9.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_0.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_1.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_10.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_11.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_12.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_13.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_14.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_15.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_16.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_17.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_2.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_3.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_4.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_5.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_6.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_7.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_8.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskOtherType_9.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_0.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_1.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_10.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_11.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_12.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_13.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_14.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_15.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_16.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_17.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_2.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_3.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_4.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_5.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_6.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_7.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_8.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StackedMaskSameType_9.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_0.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_1.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_10.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_11.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_12.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_13.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_14.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_15.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_16.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_17.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_2.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_3.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_4.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_5.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_6.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_7.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_8.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.StraightMask_9.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_0.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_1.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_10.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_11.di.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_12.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_13.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_14.rct.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_15.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_16.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_17.rct.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_2.sq.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_3.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_4.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_5.sq.alpha.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_6.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_7.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_8.di.mask.png │ │ ├── TestImage.Clipping_CGContextClipping.TransformedMask_9.di.alpha.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinBevel.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinBevel.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinMiter.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinMiter.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinRound.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.0.000000.LineJoinRound.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinBevel.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinBevel.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinMiter.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinMiter.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinRound.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.1.000000.LineJoinRound.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinBevel.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinBevel.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinMiter.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinMiter.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinRound.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.5.000000.LineJoinRound.Path.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.ZeroWidth.Context.png │ │ ├── TestImage.CopyByStrokingLinesIndidivudal.ZeroWidth.Path.png │ │ ├── TestImage.CopyByStroking_Arcs.0.000000.LineCapButt.png │ │ ├── TestImage.CopyByStroking_Arcs.0.000000.LineCapRound.png │ │ ├── TestImage.CopyByStroking_Arcs.0.000000.LineCapSquare.png │ │ ├── TestImage.CopyByStroking_Arcs.1.000000.LineCapButt.png │ │ ├── TestImage.CopyByStroking_Arcs.1.000000.LineCapRound.png │ │ ├── TestImage.CopyByStroking_Arcs.1.000000.LineCapSquare.png │ │ ├── TestImage.CopyByStroking_Arcs.5.000000.LineCapButt.png │ │ ├── TestImage.CopyByStroking_Arcs.5.000000.LineCapRound.png │ │ ├── TestImage.CopyByStroking_Arcs.5.000000.LineCapSquare.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinBevel.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinMiter.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.0.000000.LineJoinRound.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinBevel.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinMiter.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.1.000000.LineJoinRound.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinBevel.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinMiter.LineCapSquare.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapButt.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapButt.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapRound.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapRound.Path.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapSquare.Context.png │ │ ├── TestImage.CopyByStroking_Lines.5.000000.LineJoinRound.LineCapSquare.Path.png │ │ ├── TestImage.ExtraKerning.-1.00.png │ │ ├── TestImage.ExtraKerning.1.00.png │ │ ├── TestImage.ExtraKerning.25.75.png │ │ ├── TestImage.ExtraKerning.5.25.png │ │ ├── TestImage.Fonts.Arial.png │ │ ├── TestImage.Fonts.Times New Roman.png │ │ ├── TestImage.Fonts.Wingdings.png │ │ ├── TestImage.LineDashWithCap.Butt.png │ │ ├── TestImage.LineDashWithCap.Round.png │ │ ├── TestImage.LineDashWithCap.Square.png │ │ ├── TestImage.LineHeightMultiple.-1.00.png │ │ ├── TestImage.LineHeightMultiple.0.75.png │ │ ├── TestImage.LineHeightMultiple.1.25.png │ │ ├── TestImage.LineWithCap.Butt.png │ │ ├── TestImage.LineWithCap.Round.png │ │ ├── TestImage.LineWithCap.Square.png │ │ ├── TestImage.LineWithJoin.Bevel.png │ │ ├── TestImage.LineWithJoin.Round.png │ │ ├── TestImage.LineWithMiter.1.5.png │ │ ├── TestImage.LineWithMiter.1.8.png │ │ ├── TestImage.LineWithMiter.2.png │ │ ├── TestImage.LineWithMiter.3.png │ │ ├── TestImage.LineWithPhaseDashes.0.1.1.png │ │ ├── TestImage.LineWithPhaseDashes.0.5.2.3.1.png │ │ ├── TestImage.LineWithPhaseDashes.0.5.2.png │ │ ├── TestImage.LineWithPhaseDashes.1.1.1.png │ │ ├── TestImage.LineWithPhaseDashes.5.5.2.png │ │ ├── TestImage.RTLText.Rotated.-30.png │ │ ├── TestImage.RTLText.Rotated.0.png │ │ ├── TestImage.RTLText.Rotated.45.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_0.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_1.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_10.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_100.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_101.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_102.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_103.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_104.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_105.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_106.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_107.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_108.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_109.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_11.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_110.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_111.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_112.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_113.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_114.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_115.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_116.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_117.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_118.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_119.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_12.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_120.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_13.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_14.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_15.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_16.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_17.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_18.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_19.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_2.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_20.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_21.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_22.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_23.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_24.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_25.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_26.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_27.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_28.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_29.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_3.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_30.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_31.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_32.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_33.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_34.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_35.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_36.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_37.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_38.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_39.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_4.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_40.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_41.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_42.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_43.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_44.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_45.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_46.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_47.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_48.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_49.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_5.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_50.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_51.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_52.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_53.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_54.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_55.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_56.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_57.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_58.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_59.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_6.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_60.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_61.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_62.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_63.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_64.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_65.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_66.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_67.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_68.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_69.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_7.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_70.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_71.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_72.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_73.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_74.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_75.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_76.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_77.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_78.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_79.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_8.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_80.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_81.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_82.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_83.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_84.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_85.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_86.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_87.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_88.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_89.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_9.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_90.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_91.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_92.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_93.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_94.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_95.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_96.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_97.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_98.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGTransform.TestMatrices_99.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_0.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_1.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_10.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_100.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_101.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_102.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_103.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_104.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_105.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_106.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_107.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_108.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_109.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_11.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_110.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_111.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_112.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_113.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_114.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_115.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_116.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_117.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_118.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_119.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_12.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_120.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_13.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_14.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_15.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_16.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_17.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_18.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_19.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_2.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_20.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_21.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_22.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_23.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_24.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_25.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_26.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_27.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_28.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_29.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_3.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_30.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_31.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_32.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_33.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_34.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_35.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_36.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_37.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_38.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_39.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_4.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_40.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_41.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_42.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_43.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_44.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_45.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_46.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_47.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_48.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_49.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_5.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_50.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_51.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_52.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_53.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_54.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_55.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_56.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_57.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_58.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_59.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_6.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_60.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_61.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_62.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_63.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_64.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_65.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_66.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_67.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_68.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_69.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_7.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_70.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_71.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_72.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_73.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_74.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_75.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_76.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_77.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_78.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_79.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_8.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_80.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_81.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_82.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_83.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_84.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_85.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_86.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_87.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_88.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_89.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_9.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_90.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_91.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_92.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_93.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_94.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_95.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_96.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_97.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_98.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_CGUIKitTransform.TestMatrices_99.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_0.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_1.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_10.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_100.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_101.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_102.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_103.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_104.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_105.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_106.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_107.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_108.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_109.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_11.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_110.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_111.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_112.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_113.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_114.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_115.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_116.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_117.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_118.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_119.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_12.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_120.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_13.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_14.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_15.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_16.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_17.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_18.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_19.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_2.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_20.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_21.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_22.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_23.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_24.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_25.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_26.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_27.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_28.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_29.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_3.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_30.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_31.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_32.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_33.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_34.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_35.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_36.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_37.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_38.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_39.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_4.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_40.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_41.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_42.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_43.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_44.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_45.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_46.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_47.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_48.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_49.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_5.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_50.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_51.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_52.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_53.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_54.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_55.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_56.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_57.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_58.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_59.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_6.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_60.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_61.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_62.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_63.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_64.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_65.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_66.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_67.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_68.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_69.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_7.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_70.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_71.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_72.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_73.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_74.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_75.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_76.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_77.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_78.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_79.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_8.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_80.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_81.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_82.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_83.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_84.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_85.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_86.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_87.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_88.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_89.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_9.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_90.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_91.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_92.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_93.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_94.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_95.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_96.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_97.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_98.png │ │ ├── TestImage.TestDrawingTextWithTransformedMatrices_Transform.TestMatrices_99.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_0.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_1.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_10.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_100.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_101.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_102.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_103.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_104.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_105.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_106.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_107.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_108.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_109.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_11.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_110.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_111.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_112.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_113.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_114.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_115.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_116.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_117.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_118.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_119.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_12.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_120.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_13.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_14.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_15.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_16.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_17.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_18.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_19.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_2.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_20.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_21.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_22.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_23.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_24.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_25.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_26.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_27.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_28.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_29.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_3.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_30.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_31.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_32.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_33.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_34.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_35.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_36.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_37.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_38.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_39.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_4.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_40.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_41.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_42.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_43.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_44.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_45.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_46.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_47.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_48.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_49.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_5.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_50.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_51.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_52.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_53.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_54.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_55.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_56.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_57.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_58.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_59.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_6.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_60.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_61.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_62.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_63.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_64.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_65.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_66.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_67.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_68.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_69.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_7.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_70.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_71.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_72.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_73.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_74.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_75.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_76.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_77.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_78.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_79.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_8.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_80.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_81.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_82.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_83.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_84.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_85.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_86.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_87.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_88.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_89.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_9.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_90.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_91.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_92.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_93.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_94.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_95.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_96.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_97.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_98.png │ │ ├── TestImage.TestDrawingUITransforms_UIKitTransform.TestMatrices_99.png │ │ ├── TestImage.TextDrawingMode.0.-30.png │ │ ├── TestImage.TextDrawingMode.0.0.png │ │ ├── TestImage.TextDrawingMode.0.45.png │ │ ├── TestImage.TextDrawingMode.1.-30.png │ │ ├── TestImage.TextDrawingMode.1.0.png │ │ ├── TestImage.TextDrawingMode.1.45.png │ │ ├── TestImage.TextDrawingMode.2.-30.png │ │ ├── TestImage.TextDrawingMode.2.0.png │ │ ├── TestImage.TextDrawingMode.2.45.png │ │ ├── TestImage.TextDrawingMode.3.-30.png │ │ ├── TestImage.TextDrawingMode.3.0.png │ │ ├── TestImage.TextDrawingMode.3.45.png │ │ ├── TestImage.TextDrawingMode.4.-30.png │ │ ├── TestImage.TextDrawingMode.4.0.png │ │ ├── TestImage.TextDrawingMode.4.45.png │ │ ├── TestImage.TextDrawingMode.5.-30.png │ │ ├── TestImage.TextDrawingMode.5.0.png │ │ ├── TestImage.TextDrawingMode.5.45.png │ │ ├── TestImage.TextDrawingMode.6.-30.png │ │ ├── TestImage.TextDrawingMode.6.0.png │ │ ├── TestImage.TextDrawingMode.6.45.png │ │ ├── TestImage.TextDrawingMode.7.-30.png │ │ ├── TestImage.TextDrawingMode.7.0.png │ │ ├── TestImage.TextDrawingMode.7.45.png │ │ ├── TestImage.UIBezierPath.AddCurveToPoint.png │ │ ├── TestImage.UIBezierPath.AddLineToPoint.png │ │ ├── TestImage.UIBezierPath.AddPath.png │ │ ├── TestImage.UIBezierPath.AddQuadCurveToPoint.png │ │ ├── TestImage.UIBezierPath.BlendModeBezier.png │ │ ├── TestImage.UIBezierPath.CloseSubpath.png │ │ ├── TestImage.UIBezierPath.FillArcsComplex.png │ │ ├── TestImage.UIBezierPath.FillArcsSimple.png │ │ ├── TestImage.UIBezierPath.FillStraightLines.png │ │ ├── TestImage.UIBezierPath.LineDash.png │ │ ├── TestImage.UIBezierPath.Rectangle.png │ │ ├── TestImage.UIBezierPath.RoundedRect.png │ │ ├── TextAA_0_0_0_0_0.000000.png │ │ ├── TextAA_0_0_0_0_0.250000.png │ │ ├── TextAA_0_0_0_0_0.500000.png │ │ ├── TextAA_0_0_0_0_0.750000.png │ │ ├── TextAA_0_0_0_1_0.000000.png │ │ ├── TextAA_0_0_0_1_0.250000.png │ │ ├── TextAA_0_0_0_1_0.500000.png │ │ ├── TextAA_0_0_0_1_0.750000.png │ │ ├── TextAA_0_0_0_2_0.000000.png │ │ ├── TextAA_0_0_0_2_0.250000.png │ │ ├── TextAA_0_0_0_2_0.500000.png │ │ ├── TextAA_0_0_0_2_0.750000.png │ │ ├── TextAA_0_0_1_0_0.000000.png │ │ ├── TextAA_0_0_1_0_0.250000.png │ │ ├── TextAA_0_0_1_0_0.500000.png │ │ ├── TextAA_0_0_1_0_0.750000.png │ │ ├── TextAA_0_0_1_1_0.000000.png │ │ ├── TextAA_0_0_1_1_0.250000.png │ │ ├── TextAA_0_0_1_1_0.500000.png │ │ ├── TextAA_0_0_1_1_0.750000.png │ │ ├── TextAA_0_0_1_2_0.000000.png │ │ ├── TextAA_0_0_1_2_0.250000.png │ │ ├── TextAA_0_0_1_2_0.500000.png │ │ ├── TextAA_0_0_1_2_0.750000.png │ │ ├── TextAA_0_0_2_0_0.000000.png │ │ ├── TextAA_0_0_2_0_0.250000.png │ │ ├── TextAA_0_0_2_0_0.500000.png │ │ ├── TextAA_0_0_2_0_0.750000.png │ │ ├── TextAA_0_0_2_1_0.000000.png │ │ ├── TextAA_0_0_2_1_0.250000.png │ │ ├── TextAA_0_0_2_1_0.500000.png │ │ ├── TextAA_0_0_2_1_0.750000.png │ │ ├── TextAA_0_0_2_2_0.000000.png │ │ ├── TextAA_0_0_2_2_0.250000.png │ │ ├── TextAA_0_0_2_2_0.500000.png │ │ ├── TextAA_0_0_2_2_0.750000.png │ │ ├── TextAA_0_1_0_0_0.000000.png │ │ ├── TextAA_0_1_0_0_0.250000.png │ │ ├── TextAA_0_1_0_0_0.500000.png │ │ ├── TextAA_0_1_0_0_0.750000.png │ │ ├── TextAA_0_1_0_1_0.000000.png │ │ ├── TextAA_0_1_0_1_0.250000.png │ │ ├── TextAA_0_1_0_1_0.500000.png │ │ ├── TextAA_0_1_0_1_0.750000.png │ │ ├── TextAA_0_1_0_2_0.000000.png │ │ ├── TextAA_0_1_0_2_0.250000.png │ │ ├── TextAA_0_1_0_2_0.500000.png │ │ ├── TextAA_0_1_0_2_0.750000.png │ │ ├── TextAA_0_1_1_0_0.000000.png │ │ ├── TextAA_0_1_1_0_0.250000.png │ │ ├── TextAA_0_1_1_0_0.500000.png │ │ ├── TextAA_0_1_1_0_0.750000.png │ │ ├── TextAA_0_1_1_1_0.000000.png │ │ ├── TextAA_0_1_1_1_0.250000.png │ │ ├── TextAA_0_1_1_1_0.500000.png │ │ ├── TextAA_0_1_1_1_0.750000.png │ │ ├── TextAA_0_1_1_2_0.000000.png │ │ ├── TextAA_0_1_1_2_0.250000.png │ │ ├── TextAA_0_1_1_2_0.500000.png │ │ ├── TextAA_0_1_1_2_0.750000.png │ │ ├── TextAA_0_1_2_0_0.000000.png │ │ ├── TextAA_0_1_2_0_0.250000.png │ │ ├── TextAA_0_1_2_0_0.500000.png │ │ ├── TextAA_0_1_2_0_0.750000.png │ │ ├── TextAA_0_1_2_1_0.000000.png │ │ ├── TextAA_0_1_2_1_0.250000.png │ │ ├── TextAA_0_1_2_1_0.500000.png │ │ ├── TextAA_0_1_2_1_0.750000.png │ │ ├── TextAA_0_1_2_2_0.000000.png │ │ ├── TextAA_0_1_2_2_0.250000.png │ │ ├── TextAA_0_1_2_2_0.500000.png │ │ ├── TextAA_0_1_2_2_0.750000.png │ │ ├── TextAA_0_2_0_0_0.000000.png │ │ ├── TextAA_0_2_0_0_0.250000.png │ │ ├── TextAA_0_2_0_0_0.500000.png │ │ ├── TextAA_0_2_0_0_0.750000.png │ │ ├── TextAA_0_2_0_1_0.000000.png │ │ ├── TextAA_0_2_0_1_0.250000.png │ │ ├── TextAA_0_2_0_1_0.500000.png │ │ ├── TextAA_0_2_0_1_0.750000.png │ │ ├── TextAA_0_2_0_2_0.000000.png │ │ ├── TextAA_0_2_0_2_0.250000.png │ │ ├── TextAA_0_2_0_2_0.500000.png │ │ ├── TextAA_0_2_0_2_0.750000.png │ │ ├── TextAA_0_2_1_0_0.000000.png │ │ ├── TextAA_0_2_1_0_0.250000.png │ │ ├── TextAA_0_2_1_0_0.500000.png │ │ ├── TextAA_0_2_1_0_0.750000.png │ │ ├── TextAA_0_2_1_1_0.000000.png │ │ ├── TextAA_0_2_1_1_0.250000.png │ │ ├── TextAA_0_2_1_1_0.500000.png │ │ ├── TextAA_0_2_1_1_0.750000.png │ │ ├── TextAA_0_2_1_2_0.000000.png │ │ ├── TextAA_0_2_1_2_0.250000.png │ │ ├── TextAA_0_2_1_2_0.500000.png │ │ ├── TextAA_0_2_1_2_0.750000.png │ │ ├── TextAA_0_2_2_0_0.000000.png │ │ ├── TextAA_0_2_2_0_0.250000.png │ │ ├── TextAA_0_2_2_0_0.500000.png │ │ ├── TextAA_0_2_2_0_0.750000.png │ │ ├── TextAA_0_2_2_1_0.000000.png │ │ ├── TextAA_0_2_2_1_0.250000.png │ │ ├── TextAA_0_2_2_1_0.500000.png │ │ ├── TextAA_0_2_2_1_0.750000.png │ │ ├── TextAA_0_2_2_2_0.000000.png │ │ ├── TextAA_0_2_2_2_0.250000.png │ │ ├── TextAA_0_2_2_2_0.500000.png │ │ ├── TextAA_0_2_2_2_0.750000.png │ │ ├── TextAA_1_0_0_0_0.000000.png │ │ ├── TextAA_1_0_0_0_0.250000.png │ │ ├── TextAA_1_0_0_0_0.500000.png │ │ ├── TextAA_1_0_0_0_0.750000.png │ │ ├── TextAA_1_0_0_1_0.000000.png │ │ ├── TextAA_1_0_0_1_0.250000.png │ │ ├── TextAA_1_0_0_1_0.500000.png │ │ ├── TextAA_1_0_0_1_0.750000.png │ │ ├── TextAA_1_0_0_2_0.000000.png │ │ ├── TextAA_1_0_0_2_0.250000.png │ │ ├── TextAA_1_0_0_2_0.500000.png │ │ ├── TextAA_1_0_0_2_0.750000.png │ │ ├── TextAA_1_0_1_0_0.000000.png │ │ ├── TextAA_1_0_1_0_0.250000.png │ │ ├── TextAA_1_0_1_0_0.500000.png │ │ ├── TextAA_1_0_1_0_0.750000.png │ │ ├── TextAA_1_0_1_1_0.000000.png │ │ ├── TextAA_1_0_1_1_0.250000.png │ │ ├── TextAA_1_0_1_1_0.500000.png │ │ ├── TextAA_1_0_1_1_0.750000.png │ │ ├── TextAA_1_0_1_2_0.000000.png │ │ ├── TextAA_1_0_1_2_0.250000.png │ │ ├── TextAA_1_0_1_2_0.500000.png │ │ ├── TextAA_1_0_1_2_0.750000.png │ │ ├── TextAA_1_0_2_0_0.000000.png │ │ ├── TextAA_1_0_2_0_0.250000.png │ │ ├── TextAA_1_0_2_0_0.500000.png │ │ ├── TextAA_1_0_2_0_0.750000.png │ │ ├── TextAA_1_0_2_1_0.000000.png │ │ ├── TextAA_1_0_2_1_0.250000.png │ │ ├── TextAA_1_0_2_1_0.500000.png │ │ ├── TextAA_1_0_2_1_0.750000.png │ │ ├── TextAA_1_0_2_2_0.000000.png │ │ ├── TextAA_1_0_2_2_0.250000.png │ │ ├── TextAA_1_0_2_2_0.500000.png │ │ ├── TextAA_1_0_2_2_0.750000.png │ │ ├── TextAA_1_1_0_0_0.000000.png │ │ ├── TextAA_1_1_0_0_0.250000.png │ │ ├── TextAA_1_1_0_0_0.500000.png │ │ ├── TextAA_1_1_0_0_0.750000.png │ │ ├── TextAA_1_1_0_1_0.000000.png │ │ ├── TextAA_1_1_0_1_0.250000.png │ │ ├── TextAA_1_1_0_1_0.500000.png │ │ ├── TextAA_1_1_0_1_0.750000.png │ │ ├── TextAA_1_1_0_2_0.000000.png │ │ ├── TextAA_1_1_0_2_0.250000.png │ │ ├── TextAA_1_1_0_2_0.500000.png │ │ ├── TextAA_1_1_0_2_0.750000.png │ │ ├── TextAA_1_1_1_0_0.000000.png │ │ ├── TextAA_1_1_1_0_0.250000.png │ │ ├── TextAA_1_1_1_0_0.500000.png │ │ ├── TextAA_1_1_1_0_0.750000.png │ │ ├── TextAA_1_1_1_1_0.000000.png │ │ ├── TextAA_1_1_1_1_0.250000.png │ │ ├── TextAA_1_1_1_1_0.500000.png │ │ ├── TextAA_1_1_1_1_0.750000.png │ │ ├── TextAA_1_1_1_2_0.000000.png │ │ ├── TextAA_1_1_1_2_0.250000.png │ │ ├── TextAA_1_1_1_2_0.500000.png │ │ ├── TextAA_1_1_1_2_0.750000.png │ │ ├── TextAA_1_1_2_0_0.000000.png │ │ ├── TextAA_1_1_2_0_0.250000.png │ │ ├── TextAA_1_1_2_0_0.500000.png │ │ ├── TextAA_1_1_2_0_0.750000.png │ │ ├── TextAA_1_1_2_1_0.000000.png │ │ ├── TextAA_1_1_2_1_0.250000.png │ │ ├── TextAA_1_1_2_1_0.500000.png │ │ ├── TextAA_1_1_2_1_0.750000.png │ │ ├── TextAA_1_1_2_2_0.000000.png │ │ ├── TextAA_1_1_2_2_0.250000.png │ │ ├── TextAA_1_1_2_2_0.500000.png │ │ ├── TextAA_1_1_2_2_0.750000.png │ │ ├── TextAA_1_2_0_0_0.000000.png │ │ ├── TextAA_1_2_0_0_0.250000.png │ │ ├── TextAA_1_2_0_0_0.500000.png │ │ ├── TextAA_1_2_0_0_0.750000.png │ │ ├── TextAA_1_2_0_1_0.000000.png │ │ ├── TextAA_1_2_0_1_0.250000.png │ │ ├── TextAA_1_2_0_1_0.500000.png │ │ ├── TextAA_1_2_0_1_0.750000.png │ │ ├── TextAA_1_2_0_2_0.000000.png │ │ ├── TextAA_1_2_0_2_0.250000.png │ │ ├── TextAA_1_2_0_2_0.500000.png │ │ ├── TextAA_1_2_0_2_0.750000.png │ │ ├── TextAA_1_2_1_0_0.000000.png │ │ ├── TextAA_1_2_1_0_0.250000.png │ │ ├── TextAA_1_2_1_0_0.500000.png │ │ ├── TextAA_1_2_1_0_0.750000.png │ │ ├── TextAA_1_2_1_1_0.000000.png │ │ ├── TextAA_1_2_1_1_0.250000.png │ │ ├── TextAA_1_2_1_1_0.500000.png │ │ ├── TextAA_1_2_1_1_0.750000.png │ │ ├── TextAA_1_2_1_2_0.000000.png │ │ ├── TextAA_1_2_1_2_0.250000.png │ │ ├── TextAA_1_2_1_2_0.500000.png │ │ ├── TextAA_1_2_1_2_0.750000.png │ │ ├── TextAA_1_2_2_0_0.000000.png │ │ ├── TextAA_1_2_2_0_0.250000.png │ │ ├── TextAA_1_2_2_0_0.500000.png │ │ ├── TextAA_1_2_2_0_0.750000.png │ │ ├── TextAA_1_2_2_1_0.000000.png │ │ ├── TextAA_1_2_2_1_0.250000.png │ │ ├── TextAA_1_2_2_1_0.500000.png │ │ ├── TextAA_1_2_2_1_0.750000.png │ │ ├── TextAA_1_2_2_2_0.000000.png │ │ ├── TextAA_1_2_2_2_0.250000.png │ │ ├── TextAA_1_2_2_2_0.500000.png │ │ ├── TextAA_1_2_2_2_0.750000.png │ │ ├── TextAA_2_0_0_0_0.000000.png │ │ ├── TextAA_2_0_0_0_0.250000.png │ │ ├── TextAA_2_0_0_0_0.500000.png │ │ ├── TextAA_2_0_0_0_0.750000.png │ │ ├── TextAA_2_0_0_1_0.000000.png │ │ ├── TextAA_2_0_0_1_0.250000.png │ │ ├── TextAA_2_0_0_1_0.500000.png │ │ ├── TextAA_2_0_0_1_0.750000.png │ │ ├── TextAA_2_0_0_2_0.000000.png │ │ ├── TextAA_2_0_0_2_0.250000.png │ │ ├── TextAA_2_0_0_2_0.500000.png │ │ ├── TextAA_2_0_0_2_0.750000.png │ │ ├── TextAA_2_0_1_0_0.000000.png │ │ ├── TextAA_2_0_1_0_0.250000.png │ │ ├── TextAA_2_0_1_0_0.500000.png │ │ ├── TextAA_2_0_1_0_0.750000.png │ │ ├── TextAA_2_0_1_1_0.000000.png │ │ ├── TextAA_2_0_1_1_0.250000.png │ │ ├── TextAA_2_0_1_1_0.500000.png │ │ ├── TextAA_2_0_1_1_0.750000.png │ │ ├── TextAA_2_0_1_2_0.000000.png │ │ ├── TextAA_2_0_1_2_0.250000.png │ │ ├── TextAA_2_0_1_2_0.500000.png │ │ ├── TextAA_2_0_1_2_0.750000.png │ │ ├── TextAA_2_0_2_0_0.000000.png │ │ ├── TextAA_2_0_2_0_0.250000.png │ │ ├── TextAA_2_0_2_0_0.500000.png │ │ ├── TextAA_2_0_2_0_0.750000.png │ │ ├── TextAA_2_0_2_1_0.000000.png │ │ ├── TextAA_2_0_2_1_0.250000.png │ │ ├── TextAA_2_0_2_1_0.500000.png │ │ ├── TextAA_2_0_2_1_0.750000.png │ │ ├── TextAA_2_0_2_2_0.000000.png │ │ ├── TextAA_2_0_2_2_0.250000.png │ │ ├── TextAA_2_0_2_2_0.500000.png │ │ ├── TextAA_2_0_2_2_0.750000.png │ │ ├── TextAA_2_1_0_0_0.000000.png │ │ ├── TextAA_2_1_0_0_0.250000.png │ │ ├── TextAA_2_1_0_0_0.500000.png │ │ ├── TextAA_2_1_0_0_0.750000.png │ │ ├── TextAA_2_1_0_1_0.000000.png │ │ ├── TextAA_2_1_0_1_0.250000.png │ │ ├── TextAA_2_1_0_1_0.500000.png │ │ ├── TextAA_2_1_0_1_0.750000.png │ │ ├── TextAA_2_1_0_2_0.000000.png │ │ ├── TextAA_2_1_0_2_0.250000.png │ │ ├── TextAA_2_1_0_2_0.500000.png │ │ ├── TextAA_2_1_0_2_0.750000.png │ │ ├── TextAA_2_1_1_0_0.000000.png │ │ ├── TextAA_2_1_1_0_0.250000.png │ │ ├── TextAA_2_1_1_0_0.500000.png │ │ ├── TextAA_2_1_1_0_0.750000.png │ │ ├── TextAA_2_1_1_1_0.000000.png │ │ ├── TextAA_2_1_1_1_0.250000.png │ │ ├── TextAA_2_1_1_1_0.500000.png │ │ ├── TextAA_2_1_1_1_0.750000.png │ │ ├── TextAA_2_1_1_2_0.000000.png │ │ ├── TextAA_2_1_1_2_0.250000.png │ │ ├── TextAA_2_1_1_2_0.500000.png │ │ ├── TextAA_2_1_1_2_0.750000.png │ │ ├── TextAA_2_1_2_0_0.000000.png │ │ ├── TextAA_2_1_2_0_0.250000.png │ │ ├── TextAA_2_1_2_0_0.500000.png │ │ ├── TextAA_2_1_2_0_0.750000.png │ │ ├── TextAA_2_1_2_1_0.000000.png │ │ ├── TextAA_2_1_2_1_0.250000.png │ │ ├── TextAA_2_1_2_1_0.500000.png │ │ ├── TextAA_2_1_2_1_0.750000.png │ │ ├── TextAA_2_1_2_2_0.000000.png │ │ ├── TextAA_2_1_2_2_0.250000.png │ │ ├── TextAA_2_1_2_2_0.500000.png │ │ ├── TextAA_2_1_2_2_0.750000.png │ │ ├── TextAA_2_2_0_0_0.000000.png │ │ ├── TextAA_2_2_0_0_0.250000.png │ │ ├── TextAA_2_2_0_0_0.500000.png │ │ ├── TextAA_2_2_0_0_0.750000.png │ │ ├── TextAA_2_2_0_1_0.000000.png │ │ ├── TextAA_2_2_0_1_0.250000.png │ │ ├── TextAA_2_2_0_1_0.500000.png │ │ ├── TextAA_2_2_0_1_0.750000.png │ │ ├── TextAA_2_2_0_2_0.000000.png │ │ ├── TextAA_2_2_0_2_0.250000.png │ │ ├── TextAA_2_2_0_2_0.500000.png │ │ ├── TextAA_2_2_0_2_0.750000.png │ │ ├── TextAA_2_2_1_0_0.000000.png │ │ ├── TextAA_2_2_1_0_0.250000.png │ │ ├── TextAA_2_2_1_0_0.500000.png │ │ ├── TextAA_2_2_1_0_0.750000.png │ │ ├── TextAA_2_2_1_1_0.000000.png │ │ ├── TextAA_2_2_1_1_0.250000.png │ │ ├── TextAA_2_2_1_1_0.500000.png │ │ ├── TextAA_2_2_1_1_0.750000.png │ │ ├── TextAA_2_2_1_2_0.000000.png │ │ ├── TextAA_2_2_1_2_0.250000.png │ │ ├── TextAA_2_2_1_2_0.500000.png │ │ ├── TextAA_2_2_1_2_0.750000.png │ │ ├── TextAA_2_2_2_0_0.000000.png │ │ ├── TextAA_2_2_2_0_0.250000.png │ │ ├── TextAA_2_2_2_0_0.500000.png │ │ ├── TextAA_2_2_2_0_0.750000.png │ │ ├── TextAA_2_2_2_1_0.000000.png │ │ ├── TextAA_2_2_2_1_0.250000.png │ │ ├── TextAA_2_2_2_1_0.500000.png │ │ ├── TextAA_2_2_2_1_0.750000.png │ │ ├── TextAA_2_2_2_2_0.000000.png │ │ ├── TextAA_2_2_2_2_0.250000.png │ │ ├── TextAA_2_2_2_2_0.500000.png │ │ └── TextAA_2_2_2_2_0.750000.png │ │ ├── tiledImageCircleMe.png │ │ ├── tiledImageFlower.png │ │ ├── tiledImageMultiColorFlower.png │ │ ├── winobjc.png │ │ └── winobjc_indexed.png │ ├── CoreGraphics │ ├── CGBitmapContextTests.mm │ ├── CGColorSpaceTests.mm │ ├── CGColorTests.mm │ ├── CGContextTests.mm │ ├── CGDataConsumerTests.mm │ ├── CGDataProviderTests.mm │ ├── CGFontTests.mm │ ├── CGGeometryTests.mm │ ├── CGGradientTests.mm │ ├── CGImageTests.mm │ ├── CGPathTests.mm │ ├── DWriteWrapperTests.mm │ ├── TestUtils.h │ ├── TestUtils.mm │ └── data │ │ ├── WinObjC-Bold.ttf │ │ ├── WinObjC-Italic.ttf │ │ ├── WinObjC.ttf │ │ ├── gif1.gif │ │ ├── jpg1.jpg │ │ ├── jpg2.jpg │ │ ├── jpg3.jpg │ │ ├── jpg4.jpg │ │ ├── nef1.nef │ │ ├── png1.png │ │ ├── png2.png │ │ ├── png3.png │ │ ├── tiff1.tiff │ │ └── xcf1.xcf │ ├── CoreImage │ ├── CIContextTests.mm │ └── images │ │ ├── CroppedPhoto2.jpg │ │ └── Photo2.jpg │ ├── CoreLocation │ └── CLLocationTests.mm │ ├── CoreText │ ├── CTFontDescriptorTests.mm │ ├── CTFontManagerTests.mm │ ├── CTFontTests.mm │ ├── CTFrameTests.mm │ ├── CTFramesetterTests.mm │ ├── CTLineTests.mm │ ├── CTParagraphStyleTests.mm │ ├── CTRunTests.mm │ ├── CTTypesetterTests.mm │ └── data │ │ ├── MetadataTest-Regular.ttf │ │ ├── WinObjC-Bold.ttf │ │ ├── WinObjC-Italic.ttf │ │ └── WinObjC.ttf │ ├── EntryPoint.cpp │ ├── Foundation │ ├── ArchivalTests.mm │ ├── CFStringTests.mm │ ├── CoreFoundationTests.m │ ├── DispatchTests.mm │ ├── FoundationTests.mm │ ├── Makefile │ ├── NSArrayTests.mm │ ├── NSAttributedStringTests.mm │ ├── NSBundleTests.mm │ ├── NSCacheTests.mm │ ├── NSCachedURLResponseTests.mm │ ├── NSCalendarTests.mm │ ├── NSCharacterSetTests.m │ ├── NSComparisonPredicateTests.m │ ├── NSCompoundPredicateTests.m │ ├── NSConditionTests.mm │ ├── NSCountedSetTests.mm │ ├── NSDataTests.mm │ ├── NSDateComponentsTests.m │ ├── NSDateFormatterTests.m │ ├── NSDecimalNumberTests.mm │ ├── NSDictionaryTests.mm │ ├── NSErrorTests.mm │ ├── NSExpressionTests.mm │ ├── NSFileHandleTests.mm │ ├── NSFileManagerTests.mm │ ├── NSGenericsTests.mm │ ├── NSIndexPathTests.mm │ ├── NSIndexSetTests.mm │ ├── NSInvocationOperationTests.mm │ ├── NSInvocationTests.mm │ ├── NSJSONSerializationTests.m │ ├── NSKeyValueCodingTests.mm │ ├── NSLocaleTests.mm │ ├── NSLockTests.m │ ├── NSMapTableTests.mm │ ├── NSMutableOrderedSetTests.mm │ ├── NSMutableURLRequestTests.m │ ├── NSNotificationQueueTests.mm │ ├── NSNotificationTests.mm │ ├── NSNullTests.mm │ ├── NSNumberTests.mm │ ├── NSObjectTests.mm │ ├── NSObject_CancelPreviousPerformRequests.m │ ├── NSObject_KeyValueObservationTests.mm │ ├── NSObject_NSKeyValueArrayAdaptersTests.mm │ ├── NSObject_NSKeyValueOrderedSetAdaptersTests.mm │ ├── NSObject_NSKeyValueSetAdaptersTests.mm │ ├── NSObject_NSKeyValueValidation.mm │ ├── NSOperationTests.mm │ ├── NSOrderedSetTests.mm │ ├── NSPointerArrayTests.mm │ ├── NSPointerFunctionsTests.mm │ ├── NSPredicateTests.m │ ├── NSProcessInfoTests.mm │ ├── NSProgressTests.mm │ ├── NSPropertyListSerializationTests.mm │ ├── NSProxyTests.mm │ ├── NSRangeTests.mm │ ├── NSRecursiveLockTests.m │ ├── NSRegularExpressionTests.m │ ├── NSRunLoopTests.mm │ ├── NSScannerTests.mm │ ├── NSSetTests.mm │ ├── NSSortDescriptorTests.m │ ├── NSStringTests.m │ ├── NSThreadTests.m │ ├── NSTimeZoneTests.m │ ├── NSTimerTests.mm │ ├── NSURLCacheTests.mm │ ├── NSURLComponentsTests.m │ ├── NSURLCredentialStorageTests.m │ ├── NSURLCredentialTests.mm │ ├── NSURLProtectionSpaceTests.m │ ├── NSURLProtocolTests.mm │ ├── NSURLRequestTests.m │ ├── NSURLResponseTests.mm │ ├── NSURLSessionConfigurationTests.m │ ├── NSURLSessionTests.mm │ ├── NSURLTests.m │ ├── NSUUIDTests.mm │ ├── NSUndoManagerTests.mm │ ├── NSValueTests.mm │ ├── ReferenceFoundation │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── NSKeyedUnarchiver-ArrayTest.plist │ │ │ ├── NSKeyedUnarchiver-ComplexTest.plist │ │ │ ├── NSKeyedUnarchiver-ConcreteValueTest.plist │ │ │ ├── NSKeyedUnarchiver-EdgeInsetsTest.plist │ │ │ ├── NSKeyedUnarchiver-NotificationTest.plist │ │ │ ├── NSKeyedUnarchiver-OrderedSetTest.plist │ │ │ ├── NSKeyedUnarchiver-RangeTest.plist │ │ │ ├── NSKeyedUnarchiver-RectTest.plist │ │ │ ├── NSKeyedUnarchiver-URLTest.plist │ │ │ ├── NSKeyedUnarchiver-UUIDTest.plist │ │ │ ├── NSStringTestData.txt │ │ │ ├── NSURLTestData.plist │ │ │ ├── NSXMLDTDTestData.xml │ │ │ ├── NSXMLDocumentTestData.xml │ │ │ ├── PropertyList-1.0.dtd │ │ │ └── Test.plist │ │ ├── TestNSArray.mm │ │ ├── TestNSBundle.mm │ │ ├── TestNSCalendar.mm │ │ ├── TestNSCharacterSet.mm │ │ ├── TestNSData.mm │ │ ├── TestNSDate.mm │ │ ├── TestNSDateFormatter.mm │ │ ├── TestNSDictionary.mm │ │ ├── TestNSLocale.mm │ │ ├── TestNSNumber.mm │ │ ├── TestNSNumberFormatter.mm │ │ ├── TestNSPropertyList.mm │ │ ├── TestNSSet.mm │ │ ├── TestNSStream.mm │ │ ├── TestNSString.mm │ │ ├── TestNSTimeZone.mm │ │ ├── TestNSURL.mm │ │ ├── TestNSURLRequest.mm │ │ ├── TestNSURLResponse.mm │ │ ├── TestUtils.h │ │ └── TestUtils.mm │ ├── RuntimeTestHelpers.h │ ├── RuntimeTestHelpers.m │ ├── RuntimeTests.m │ ├── TestUtils.h │ ├── TestUtils.mm │ ├── WindowsOnly │ │ ├── ArchivalInternalTests.mm │ │ ├── BlockClassTests.mm │ │ ├── BundleInternalTests.mm │ │ ├── CFBridgeBaseTests.mm │ │ ├── ErrorHandlingTests.mm │ │ ├── FoundationInternalTests.mm │ │ ├── NSBooleanPredicateTests.mm │ │ ├── NSCacheInternalTests.mm │ │ ├── NSEnumeratorTests.mm │ │ ├── NSErrorInternalTests.mm │ │ ├── NSExpressionInternalTests.mm │ │ ├── NSHttpCookieTests.mm │ │ ├── NSLockInternalTests.mm │ │ ├── NSLoggingTests.m │ │ ├── NSObjectInternalTests.mm │ │ ├── NSPointerArrayInternalTests.mm │ │ ├── NSPointerFunctionsInternalTests.mm │ │ ├── NSRecursiveLockInternalTests.mm │ │ └── README.md │ └── data │ │ └── NSFileManagerUT.txt │ ├── Framework │ └── Framework.cpp │ ├── GLKit │ └── GLKitTest.mm │ ├── ImageIO │ ├── ImageIOTest.mm │ ├── photo2_683x1024.ico │ ├── photo6_1024x670.jpg │ ├── photo6_1024x670_thumbnail_227x149.jpg │ ├── photo7_4layers_683x1024.gif │ ├── photo8_4layers_1024x683.tif │ ├── seafloor_256x256.png │ └── testimg_227x149.bmp │ ├── Makefile │ ├── MobileCoreServices │ └── MobileCoreServicesTests.mm │ ├── QuartzCore │ └── QuartzCoreTest.mm │ ├── Security │ ├── GenericPasswordTests.mm │ ├── SecItemTests.mm │ └── SecRandomTests.mm │ ├── Starboard │ ├── AutoCFTests.cpp │ ├── AutoIdTests_ARC.mm │ ├── AutoIdTests_NoARC.mm │ ├── CommonCryptoTests.m │ ├── CommonCryptoTests.mm │ ├── ErrorHandling.mm │ ├── LifetimeCounting.h │ ├── LifetimeCounting.mm │ ├── PathMapperTests.mm │ ├── ProjectionsTests.mm │ ├── PthreadTests.mm │ ├── StarboardAutoIdTests.inl │ ├── objcrt_assoc.mm │ ├── objcrt_runtime.mm │ └── objcrt_sanity.m │ ├── Tests.Shared │ └── ByteUtils.h │ ├── UIKit │ ├── Accessibility.mm │ ├── NSAttributedString+UIKitAdditionsTests.mm │ ├── NSCoder+UIKitAdditionsTest.mm │ ├── NSIndexPath+UITableViewTests.mm │ ├── NSParagraphStyleTests.mm │ ├── NSString+UIKitAdditionsTests.mm │ ├── NSTextContainerTests.mm │ ├── NSValue+UIKitAdditionsTests.mm │ ├── NullCompositor.h │ ├── UIApplication.m │ ├── UIBezierPathTests.mm │ ├── UIColorTests.mm │ ├── UIFontDescriptorTests.mm │ ├── UIFontTests.mm │ ├── UIImageTests.mm │ └── data │ │ ├── CroppedPhoto1.png │ │ ├── CroppedPhoto2.jpg │ │ ├── Photo2.jpg │ │ ├── WinObjC-Bold.ttf │ │ ├── WinObjC-Italic.ttf │ │ ├── WinObjC.ttf │ │ └── png1.png │ ├── UT.common.mk │ └── WOCStdLib │ ├── OSSpinLockTest.mm │ ├── inettests.mm │ └── mach │ ├── mach_task_info_test.mm │ └── mach_test.mm └── tools ├── AppInsights ├── .gitattributes ├── .gitignore ├── LICENSE ├── Projects │ ├── AppInsights_Win10-UAP │ │ ├── AppInsights_Win10-UAP.sln │ │ ├── AppInsights_Win10-UAP │ │ │ ├── AppInsights_Win10-UAP.vcxproj │ │ │ ├── AppInsights_Win10-UAP.vcxproj.filters │ │ │ ├── Project.json │ │ │ ├── dllmain.cpp │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── targetver.h │ │ ├── ApplicationInsights │ │ │ ├── ApplicationInsights.vcxproj │ │ │ ├── ApplicationInsights.vcxproj.filters │ │ │ ├── PageTracking.cpp │ │ │ ├── PageTracking.h │ │ │ ├── Project.json │ │ │ ├── SessionTracking.cpp │ │ │ ├── SessionTracking.h │ │ │ ├── TelemetryClient.cpp │ │ │ └── TelemetryClient.h │ │ └── UnitTestApp │ │ │ ├── Assets │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ └── WideLogo.scale-100.png │ │ │ ├── Package.appxmanifest │ │ │ ├── UnitTest.cpp │ │ │ ├── UnitTestApp.vcxproj │ │ │ ├── UnitTestApp.vcxproj.filters │ │ │ ├── UnitTestApp_TemporaryKey.pfx │ │ │ ├── pch.cpp │ │ │ └── pch.h │ └── AppInsights_Win32 │ │ ├── application_insights.sln │ │ ├── core │ │ ├── core.vcxproj │ │ ├── core.vcxproj.filters │ │ └── packages.config │ │ └── test │ │ ├── core.tests.vcxproj │ │ └── core.tests.vcxproj.filters ├── ReadMe.md └── src │ └── core │ ├── BaseTelemetryContext.cpp │ ├── BaseTelemetryContext.h │ ├── TelemetryClient.cpp │ ├── TelemetryClient.h │ ├── TelemetryClientConfig.h │ ├── TelemetryContext.h │ ├── TelemetryContextOther.cpp │ ├── TelemetryContextWin32.cpp │ ├── TelemetryContextWinPhone.cpp │ ├── TelemetryContextWinStore.cpp │ ├── channel │ ├── TelemetryChannel.cpp │ ├── TelemetryChannel.h │ └── utils │ │ ├── HttpHeaderField.cpp │ │ ├── HttpHeaderField.h │ │ ├── HttpHeaderFields.h │ │ ├── HttpRequest.cpp │ │ ├── HttpRequest.h │ │ ├── HttpResponse.cpp │ │ └── HttpResponse.h │ ├── common │ ├── Common.h │ ├── JsonWriter.cpp │ ├── JsonWriter.h │ ├── Nullable.h │ ├── Serializer.cpp │ ├── Serializer.h │ ├── StreamWriter.cpp │ ├── StreamWriter.h │ ├── StringWriter.cpp │ ├── StringWriter.h │ ├── Utils.cpp │ └── Utils.h │ ├── contracts │ ├── Application.cpp │ ├── Application.h │ ├── Base.cpp │ ├── Base.h │ ├── Contracts.h │ ├── CrashData.cpp │ ├── CrashData.h │ ├── CrashDataBinary.cpp │ ├── CrashDataBinary.h │ ├── CrashDataHeaders.cpp │ ├── CrashDataHeaders.h │ ├── CrashDataThread.cpp │ ├── CrashDataThread.h │ ├── CrashDataThreadFrame.cpp │ ├── CrashDataThreadFrame.h │ ├── Data.cpp │ ├── Data.h │ ├── DataPoint.cpp │ ├── DataPoint.h │ ├── DataPointType.h │ ├── DependencyKind.h │ ├── DependencySourceType.h │ ├── Device.cpp │ ├── Device.h │ ├── Domain.cpp │ ├── Domain.h │ ├── Envelope.cpp │ ├── Envelope.h │ ├── EventData.cpp │ ├── EventData.h │ ├── ExceptionData.cpp │ ├── ExceptionData.h │ ├── ExceptionDetails.cpp │ ├── ExceptionDetails.h │ ├── Internal.cpp │ ├── Internal.h │ ├── Location.cpp │ ├── Location.h │ ├── MessageData.cpp │ ├── MessageData.h │ ├── MetricData.cpp │ ├── MetricData.h │ ├── Operation.cpp │ ├── Operation.h │ ├── PageViewData.cpp │ ├── PageViewData.h │ ├── PageViewPerfData.cpp │ ├── PageViewPerfData.h │ ├── RemoteDependencyData.cpp │ ├── RemoteDependencyData.h │ ├── RequestData.cpp │ ├── RequestData.h │ ├── Session.cpp │ ├── Session.h │ ├── SessionState.h │ ├── SessionStateData.cpp │ ├── SessionStateData.h │ ├── SeverityLevel.h │ ├── StackFrame.cpp │ ├── StackFrame.h │ ├── User.cpp │ └── User.h │ ├── core.sln │ ├── core.vcxproj │ └── core.vcxproj.filters ├── AssetCatalogBuilder ├── App.config ├── AssetCatalogBuilder.csproj ├── Program.cs ├── Project.json ├── Properties │ └── AssemblyInfo.cs └── SimpleLogger.cs ├── BuildMonitor ├── BuildEventProcessor.cs ├── BuildMonitor.cs ├── BuildMonitor.csproj ├── BuildTelemetryClient.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── VSPackage.resx ├── app.config ├── packages.config └── source.extension.vsixmanifest ├── ClangCompileTask ├── .gitignore ├── ClangCompile.cs ├── ClangCompile.csproj ├── Project.json ├── Properties │ └── AssemblyInfo.cs ├── ProperyPageAttribute.cs ├── Readme.txt └── stranth.snk ├── Logging ├── dll │ ├── Logging.def │ ├── Logging.vcxproj │ ├── Project.json │ ├── Telemetry.cpp │ ├── Telemetry.h │ └── dllmain.cpp ├── include │ ├── ErrorHandling.h │ ├── LoggingInternal.h │ ├── LoggingNative.h │ ├── LoggingTesting.h │ ├── StubReturn.h │ └── wil │ │ ├── Common.h │ │ ├── result.h │ │ └── wistd_type_traits.h └── lib │ ├── ErrorHandling.cpp │ ├── LoggingInternal.cpp │ ├── LoggingLib.vcxproj │ ├── LoggingNative.cpp │ └── LoggingTesting.cpp ├── OutputPackages ├── Debug │ └── .gitignore └── Release │ └── .gitignore ├── PropSchemaGen ├── App.config ├── Program.cs ├── Project.json ├── PropSchemaGen.csproj ├── Properties │ └── AssemblyInfo.cs └── ReadMe.txt ├── README.md ├── VSIX ├── ObjectiveCVSIX.csproj ├── Properties │ └── AssemblyInfo.cs ├── VC_Pkg_Core_Registration_ObjC.pkgdef ├── Visualizers │ ├── ObjectiveC.natstepfilter │ └── ObjectiveC.natvis ├── app.config ├── packages.config └── source.extension.vsixmanifest ├── WOCStdLib ├── dll │ ├── WOCStdLib.def │ ├── WOCStdLib.vcxproj │ ├── dllmain.cpp │ └── project.json └── lib │ ├── OSEndian.cpp │ ├── OSMisc.cpp │ ├── OSSpinLock.cpp │ ├── String.cpp │ ├── TaskInfo.cpp │ ├── UTSName.cpp │ ├── WOCStdLibLib.vcxproj │ ├── dlfcn.cpp │ ├── inet.cpp │ ├── mach.cpp │ ├── random.cpp │ ├── sched.cpp │ ├── sysctl.cpp │ ├── time.cpp │ ├── unistd.cpp │ └── version.cpp ├── WinObjC.Compiler ├── ClangCompile.props ├── ClangCompile.targets ├── ClangCompile.xml ├── LLVM │ ├── bin │ │ ├── clang.exe │ │ └── libclang.dll │ ├── include │ │ ├── clang-c │ │ │ ├── BuildSystem.h │ │ │ ├── CXCompilationDatabase.h │ │ │ ├── CXErrorCode.h │ │ │ ├── CXString.h │ │ │ ├── Documentation.h │ │ │ ├── Index.h │ │ │ ├── Platform.h │ │ │ └── module.modulemap │ │ └── llvm-c │ │ │ ├── Analysis.h │ │ │ ├── BitReader.h │ │ │ ├── BitWriter.h │ │ │ ├── Core.h │ │ │ ├── DebugInfo.h │ │ │ ├── Disassembler.h │ │ │ ├── ErrorHandling.h │ │ │ ├── ExecutionEngine.h │ │ │ ├── IRReader.h │ │ │ ├── Initialization.h │ │ │ ├── LinkTimeOptimizer.h │ │ │ ├── Linker.h │ │ │ ├── Object.h │ │ │ ├── OrcBindings.h │ │ │ ├── Support.h │ │ │ ├── Target.h │ │ │ ├── TargetMachine.h │ │ │ ├── Transforms │ │ │ ├── IPO.h │ │ │ ├── PassManagerBuilder.h │ │ │ ├── Scalar.h │ │ │ └── Vectorize.h │ │ │ ├── Types.h │ │ │ ├── lto.h │ │ │ └── module.modulemap │ └── lib │ │ ├── clang │ │ └── 6.0.1 │ │ │ └── include │ │ │ ├── __clang_cuda_builtin_vars.h │ │ │ ├── __clang_cuda_cmath.h │ │ │ ├── __clang_cuda_complex_builtins.h │ │ │ ├── __clang_cuda_intrinsics.h │ │ │ ├── __clang_cuda_math_forward_declares.h │ │ │ ├── __clang_cuda_runtime_wrapper.h │ │ │ ├── __stddef_max_align_t.h │ │ │ ├── __wmmintrin_aes.h │ │ │ ├── __wmmintrin_pclmul.h │ │ │ ├── adxintrin.h │ │ │ ├── altivec.h │ │ │ ├── ammintrin.h │ │ │ ├── arm64intr.h │ │ │ ├── arm_acle.h │ │ │ ├── arm_neon.h │ │ │ ├── armintr.h │ │ │ ├── avx2intrin.h │ │ │ ├── avx512bitalgintrin.h │ │ │ ├── avx512bwintrin.h │ │ │ ├── avx512cdintrin.h │ │ │ ├── avx512dqintrin.h │ │ │ ├── avx512erintrin.h │ │ │ ├── avx512fintrin.h │ │ │ ├── avx512ifmaintrin.h │ │ │ ├── avx512ifmavlintrin.h │ │ │ ├── avx512pfintrin.h │ │ │ ├── avx512vbmi2intrin.h │ │ │ ├── avx512vbmiintrin.h │ │ │ ├── avx512vbmivlintrin.h │ │ │ ├── avx512vlbitalgintrin.h │ │ │ ├── avx512vlbwintrin.h │ │ │ ├── avx512vlcdintrin.h │ │ │ ├── avx512vldqintrin.h │ │ │ ├── avx512vlintrin.h │ │ │ ├── avx512vlvbmi2intrin.h │ │ │ ├── avx512vlvnniintrin.h │ │ │ ├── avx512vnniintrin.h │ │ │ ├── avx512vpopcntdqintrin.h │ │ │ ├── avx512vpopcntdqvlintrin.h │ │ │ ├── avxintrin.h │ │ │ ├── bmi2intrin.h │ │ │ ├── bmiintrin.h │ │ │ ├── cetintrin.h │ │ │ ├── clflushoptintrin.h │ │ │ ├── clwbintrin.h │ │ │ ├── clzerointrin.h │ │ │ ├── complex.h │ │ │ ├── cpuid.h │ │ │ ├── cuda_wrappers │ │ │ ├── algorithm │ │ │ ├── complex │ │ │ └── new │ │ │ ├── emmintrin.h │ │ │ ├── f16cintrin.h │ │ │ ├── float.h │ │ │ ├── fma4intrin.h │ │ │ ├── fmaintrin.h │ │ │ ├── fxsrintrin.h │ │ │ ├── gfniintrin.h │ │ │ ├── htmintrin.h │ │ │ ├── htmxlintrin.h │ │ │ ├── ia32intrin.h │ │ │ ├── immintrin.h │ │ │ ├── intrin.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── lwpintrin.h │ │ │ ├── lzcntintrin.h │ │ │ ├── mm3dnow.h │ │ │ ├── mm_malloc.h │ │ │ ├── mmintrin.h │ │ │ ├── module.modulemap │ │ │ ├── msa.h │ │ │ ├── mwaitxintrin.h │ │ │ ├── nmmintrin.h │ │ │ ├── opencl-c.h │ │ │ ├── pkuintrin.h │ │ │ ├── pmmintrin.h │ │ │ ├── popcntintrin.h │ │ │ ├── prfchwintrin.h │ │ │ ├── rdseedintrin.h │ │ │ ├── rtmintrin.h │ │ │ ├── s390intrin.h │ │ │ ├── shaintrin.h │ │ │ ├── smmintrin.h │ │ │ ├── stdalign.h │ │ │ ├── stdarg.h │ │ │ ├── stdatomic.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdnoreturn.h │ │ │ ├── tbmintrin.h │ │ │ ├── tgmath.h │ │ │ ├── tmmintrin.h │ │ │ ├── unwind.h │ │ │ ├── vadefs.h │ │ │ ├── vaesintrin.h │ │ │ ├── varargs.h │ │ │ ├── vecintrin.h │ │ │ ├── vpclmulqdqintrin.h │ │ │ ├── wmmintrin.h │ │ │ ├── x86intrin.h │ │ │ ├── xmmintrin.h │ │ │ ├── xopintrin.h │ │ │ ├── xsavecintrin.h │ │ │ ├── xsaveintrin.h │ │ │ ├── xsaveoptintrin.h │ │ │ ├── xsavesintrin.h │ │ │ └── xtestintrin.h │ │ └── libclang.lib ├── Readme.txt ├── WinObjC.Compiler.Packaging.targets ├── WinObjC.Compiler.nuproj ├── WinObjC.Compiler.props ├── WinObjC.Compiler.targets ├── prebuilt │ ├── ARM │ │ └── vcclang.lib │ ├── x64 │ │ └── vcclang.lib │ └── x86 │ │ └── vcclang.lib └── project.json ├── WinObjC.Language ├── Readme.txt ├── WinObjC.Language.Packaging.targets ├── WinObjC.Language.nuproj ├── WinObjC.Language.props ├── WinObjC.Language.targets ├── assets │ ├── ClCompile.Additions.props │ ├── ClCompile.Additions.targets │ ├── ClCompile.Additions.xml │ ├── ConsumeRuntimeComponent.cpp │ ├── Islandwood.props │ ├── Islandwood.targets │ ├── Islandwood.xml │ ├── WinObjC.Objc2Winmd.targets │ ├── WinObjC.ObjectiveC.targets │ ├── WinObjC.Resources.targets │ ├── WinObjC.Resources.xml │ └── filterprojects.tasks └── project.json ├── WinObjC.Logging ├── Readme.txt ├── WinObjC.Logging.Packaging.props ├── WinObjC.Logging.Packaging.targets ├── WinObjC.Logging.nuproj ├── WinObjC.Logging.props ├── WinObjC.Logging.targets └── project.json ├── WinObjC.Packaging ├── ImportedByAnyDependent.props ├── ImportedByAnyDependent.targets ├── ImportedByThisProj.props ├── ImportedByThisProj.targets ├── Package.Default.props ├── Package.Default.targets ├── Package.props ├── Package.targets ├── Readme.txt ├── WinObjC.Packageable.props ├── WinObjC.Packageable.targets ├── WinObjC.Packager.props ├── WinObjC.Packager.targets ├── WinObjC.Packaging.nuproj └── project.json ├── WinObjC.Tools ├── Readme.txt ├── WinObjC.Tools.nuproj ├── WinObjC.Tools.targets ├── project.json ├── tools │ ├── chocolateyinstall.ps1 │ ├── chocolateyuninstall.ps1 │ ├── objc-language-services-VS2017.vsix │ └── objc-syntax-highlighting.vsix └── vsimporter-templates │ ├── WinStore10-Aggregate │ ├── Project.vstemplate │ ├── Utility.vcxproj │ └── Utility.vcxproj.filters │ ├── WinStore10-App │ ├── App.vcxproj │ ├── App.vcxproj.filters │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── LockScreenLogo.scale-200.png │ ├── Package-native.appxmanifest │ ├── Project.vstemplate │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── TemporaryKey.pfx │ ├── Wide310x150Logo.scale-200.png │ ├── default.rd.xml │ ├── pch.cpp │ └── pch.h │ ├── WinStore10-Bundle │ ├── Bundle.vcxproj │ ├── Bundle.vcxproj.filters │ ├── Project.vstemplate │ ├── packageable.project.json │ └── project.json │ ├── WinStore10-Package │ ├── Package.Creation.props │ ├── Package.Creation.targets │ ├── Package.Custom.props │ ├── Package.Custom.targets │ ├── Package.nuproj │ ├── Project.vstemplate │ ├── Readme.txt │ └── project.json │ ├── WinStore10-SharedHeaders │ ├── Project.vstemplate │ ├── SharedHeaders.vcxitems │ └── SharedHeaders.vcxitems.filters │ ├── WinStore10-StaticLib │ ├── Project.vstemplate │ ├── StaticLib.vcxproj │ └── StaticLib.vcxproj.filters │ ├── WinStore10-WinRT │ ├── Module.cpp │ ├── Project.vstemplate │ └── WinRT.vcxproj │ ├── frameworks.txt │ ├── nuget.config │ ├── packageable.project.json │ └── project.json ├── WinObjCRT └── dll │ ├── Project.json │ ├── WinObjCRT.vcxproj │ ├── WinObjCRT_Debug.def │ ├── WinObjCRT_Release.def │ └── dllmain.cpp ├── bin ├── depends.dll ├── depends.exe ├── libclang.dll └── objc2winmd.exe ├── common ├── common-build.props ├── common-build.targets ├── tools-build.props └── tools-build.targets ├── deps └── prebuilt │ ├── Universal Windows │ ├── ARM │ │ ├── Debug │ │ │ ├── libdispatch.dll │ │ │ ├── libdispatch.lib │ │ │ ├── libdispatch.pdb │ │ │ ├── libobjc2.dll │ │ │ ├── libobjc2.lib │ │ │ └── libobjc2.pdb │ │ └── Release │ │ │ ├── libdispatch.dll │ │ │ ├── libdispatch.lib │ │ │ ├── libdispatch.pdb │ │ │ ├── libobjc2.dll │ │ │ ├── libobjc2.lib │ │ │ └── libobjc2.pdb │ └── x86 │ │ ├── libdispatch.dll │ │ ├── libdispatch.lib │ │ ├── libdispatch.pdb │ │ ├── libobjc2.dll │ │ ├── libobjc2.lib │ │ └── libobjc2.pdb │ └── include │ └── dispatch │ ├── atomic.h │ ├── base.h │ ├── benchmark.h │ ├── continuation_cache.h │ ├── debug.h │ ├── dispatch.h │ ├── group.h │ ├── hw_shims.h │ ├── internal.h │ ├── interop.h │ ├── interop_internal.h │ ├── kevent_internal.h │ ├── legacy.h │ ├── module.modulemap │ ├── object.h │ ├── object_internal.h │ ├── once.h │ ├── os_shims.h │ ├── private.h │ ├── queue.h │ ├── queue_internal.h │ ├── queue_private.h │ ├── semaphore.h │ ├── semaphore_internal.h │ ├── source.h │ ├── source_internal.h │ ├── source_private.h │ └── time.h ├── include ├── MacTypes.h ├── WOCStdLib │ ├── COMIncludes.h │ ├── COMIncludes_End.h │ ├── WOCStdLib.h │ ├── arm │ │ ├── _align.h │ │ ├── _inttypes.h │ │ ├── _limits.h │ │ ├── _stdint.h │ │ ├── _types.h │ │ ├── acle-compat.h │ │ ├── arch.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ └── types.h │ ├── arpa │ │ ├── inet.h │ │ ├── nameser.h │ │ └── nameser_compat.h │ ├── dlfcn.h │ ├── ifaddrs.h │ ├── libkern │ │ ├── OSAtomic.h │ │ ├── OSByteOrder.h │ │ ├── OSCacheControl.h │ │ ├── OSMemoryNotification.h │ │ ├── OSThermalNotification.h │ │ └── arm │ │ │ └── OSByteOrder.h │ ├── mach-o │ │ └── dyld.h │ ├── mach │ │ ├── mach.h │ │ ├── mach_defs.h │ │ ├── mach_host.h │ │ ├── mach_task.h │ │ ├── mach_time.h │ │ ├── mach_types.h │ │ ├── machine.h │ │ ├── message.h │ │ ├── port.h │ │ └── vm_statistics.h │ ├── machine │ │ ├── _limits.h │ │ ├── _types.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ └── types.h │ ├── net │ │ ├── if.h │ │ └── if_dl.h │ ├── netdb.h │ ├── netinet │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ └── tcp.h │ ├── netinet6 │ │ ├── in6.h │ │ ├── ipsec.h │ │ └── ipsec6.h │ ├── os │ │ └── object.h │ ├── sched.h │ ├── sys │ │ ├── _iovec.h │ │ ├── _null.h │ │ ├── _pthreadtypes.h │ │ ├── _sigset.h │ │ ├── _sockaddr_storage.h │ │ ├── _timespec.h │ │ ├── _timeval.h │ │ ├── _types.h │ │ ├── appleapiopts.h │ │ ├── cdefs.h │ │ ├── queue.h │ │ ├── select.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── time.h │ │ ├── timespec.h │ │ ├── unistd.h │ │ └── utsname.h │ ├── unistd.h │ └── wrl │ │ └── module.h ├── WinObjCRTExport.h ├── objc │ ├── Availability.h │ ├── Object.h │ ├── Protocol.h │ ├── SOURCE.txt │ ├── blocks_private.h │ ├── blocks_runtime.h │ ├── capabilities.h │ ├── developer.h │ ├── encoding.h │ ├── hooks.h │ ├── message.h │ ├── module.modulemap │ ├── objc-api.h │ ├── objc-arc.h │ ├── objc-auto.h │ ├── objc.h │ ├── runtime-deprecated.h │ ├── runtime.h │ ├── slot.h │ └── toydispatch.h └── xplat │ └── Starboard │ ├── SmartTypes.h │ └── TypeTraits.h ├── include_next └── WOCStdLib │ ├── Dxgi1_3.h │ ├── Windows.h │ ├── d3d11.h │ ├── d3d11_1.h │ ├── d3d11_2.h │ ├── math.h │ ├── stdarg.h │ ├── stdio.h │ ├── stdlib.h │ ├── string │ ├── strings.h │ ├── sys │ └── stat.h │ ├── winnt.h │ └── ws2def.h ├── nuget.config ├── objc2winmd ├── ClangHelpers.cpp ├── ClangHelpers.h ├── ClangObjectModel.cpp ├── ClangObjectModel.h ├── CommonCodeGenerator.cpp ├── CommonCodeGenerator.h ├── ContainerTemplates.cpp ├── ContainerTemplates.h ├── Helpers.cpp ├── Helpers.h ├── Readme.txt ├── TypeConvertor.cpp ├── TypeConvertor.h ├── objc2winmd.cpp ├── objc2winmd.vcxproj ├── objc2winmd.vcxproj.filters ├── packages.config ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── tokenizer.cpp └── tokenizer.h ├── tools.sln ├── vsimporter ├── PlistCpp │ ├── PlistCpp.vcxproj │ └── PlistCpp.vcxproj.filters ├── WBITelemetry │ ├── WBITelemetry.cpp │ ├── WBITelemetry.h │ ├── WBITelemetry.vcxproj │ └── WBITelemetry.vcxproj.filters ├── hmapmaker │ ├── Project.json │ ├── hmapmaker.vcxproj │ └── hmapmaker.vcxproj.filters ├── include │ ├── BuildSettings.h │ ├── BuildSettingsInfo.h │ ├── EnvironmentVariableCollection.h │ ├── PBX │ │ ├── ErrorReporter.h │ │ ├── PBXAggregateTarget.h │ │ ├── PBXBuildFile.h │ │ ├── PBXBuildPhase.h │ │ ├── PBXBuildRule.h │ │ ├── PBXContainerItemProxy.h │ │ ├── PBXCopyFilesBuildPhase.h │ │ ├── PBXDocument.h │ │ ├── PBXFile.h │ │ ├── PBXFileReference.h │ │ ├── PBXFrameworksBuildPhase.h │ │ ├── PBXGroup.h │ │ ├── PBXHeadersBuildPhase.h │ │ ├── PBXLegacyTarget.h │ │ ├── PBXNativeTarget.h │ │ ├── PBXObject.h │ │ ├── PBXObjectIdConvert.h │ │ ├── PBXProject.h │ │ ├── PBXReferenceProxy.h │ │ ├── PBXResourcesBuildPhase.h │ │ ├── PBXShellScriptBuildPhase.h │ │ ├── PBXSourcesBuildPhase.h │ │ ├── PBXTarget.h │ │ ├── PBXTargetDependency.h │ │ ├── PBXVariantGroup.h │ │ ├── PlistFuncs.h │ │ ├── XCBuildConfiguration.h │ │ ├── XCConfigurationList.h │ │ ├── XCScheme.h │ │ ├── XCVersionGroup.h │ │ ├── XCWorkspace.h │ │ └── XMLFuncs.h │ ├── SBAggregateTarget.h │ ├── SBBuildPhase.h │ ├── SBFrameworksBuildPhase.h │ ├── SBHeadersBuildPhase.h │ ├── SBLog.h │ ├── SBNativeTarget.h │ ├── SBProject.h │ ├── SBResourcesBuildPhase.h │ ├── SBSourcesBuildPhase.h │ ├── SBTarget.h │ ├── SBWorkspace.h │ ├── SimpleVariableCollection.h │ ├── SplitStream.h │ ├── VariableCollection.h │ ├── VariableCollectionHierarchy.h │ ├── VariableCollectionManager.h │ ├── XCVariableExpander.h │ ├── query.h │ ├── settingmodifiers.h │ ├── types.h │ ├── utils.h │ ├── utils │ │ ├── clangoptparser.h │ │ ├── fileutils.h │ │ ├── hmapmaker.h │ │ ├── miscutils.h │ │ ├── sbassert.h │ │ ├── stringutils.h │ │ ├── telemetryutils.h │ │ ├── tokenizer.h │ │ ├── versionutils.h │ │ ├── wildcardmatch.h │ │ └── xc2vs.h │ ├── vswriter │ │ ├── ConditionalValue.h │ │ ├── VCProject.h │ │ ├── VCProjectConfiguration.h │ │ ├── VCProjectConfigurationPlatform.h │ │ ├── VCProjectItem.h │ │ ├── VCSharedProject.h │ │ ├── VSBuildableSolutionProject.h │ │ ├── VSSolution.h │ │ ├── VSSolutionFolderProject.h │ │ ├── VSSolutionProject.h │ │ ├── VSTemplate.h │ │ ├── VSTemplateParameters.h │ │ ├── VSTemplateProject.h │ │ └── vshelpers.h │ ├── windows │ │ ├── dirent.h │ │ ├── getopt.h │ │ ├── libgen.h │ │ ├── posix_compat.h │ │ └── unistd.h │ └── xcconfigparser.h ├── packages.config ├── pugixml │ └── pugixml.vcxproj ├── resource_vsimporter.h ├── sb-expandvars │ ├── Project.json │ ├── sb-expandvars.vcxproj │ └── sb-expandvars.vcxproj.filters ├── src │ ├── BuildSettings.cpp │ ├── BuildSettingsInfo.cpp │ ├── EnvironmentVariableCollection.cpp │ ├── PBX │ │ ├── ErrorReporter.cpp │ │ ├── PBXAggregateTarget.cpp │ │ ├── PBXBuildFile.cpp │ │ ├── PBXBuildPhase.cpp │ │ ├── PBXBuildRule.cpp │ │ ├── PBXContainerItemProxy.cpp │ │ ├── PBXCopyFilesBuildPhase.cpp │ │ ├── PBXDocument.cpp │ │ ├── PBXFile.cpp │ │ ├── PBXFileReference.cpp │ │ ├── PBXFrameworksBuildPhase.cpp │ │ ├── PBXGroup.cpp │ │ ├── PBXHeadersBuildPhase.cpp │ │ ├── PBXLegacyTarget.cpp │ │ ├── PBXNativeTarget.cpp │ │ ├── PBXObject.cpp │ │ ├── PBXProject.cpp │ │ ├── PBXReferenceProxy.cpp │ │ ├── PBXResourcesBuildPhase.cpp │ │ ├── PBXShellScriptBuildPhase.cpp │ │ ├── PBXSourcesBuildPhase.cpp │ │ ├── PBXTarget.cpp │ │ ├── PBXTargetDependency.cpp │ │ ├── PBXVariantGroup.cpp │ │ ├── PlistFuncs.cpp │ │ ├── XCBuildConfiguration.cpp │ │ ├── XCConfigurationList.cpp │ │ ├── XCScheme.cpp │ │ ├── XCVersionGroup.cpp │ │ ├── XCWorkspace.cpp │ │ └── XMLFuncs.cpp │ ├── SBAggregateTarget.cpp │ ├── SBBuildPhase.cpp │ ├── SBFrameworksBuildPhase.cpp │ ├── SBHeadersBuildPhase.cpp │ ├── SBLog.cpp │ ├── SBNativeTarget.cpp │ ├── SBProject.cpp │ ├── SBResourcesBuildPhase.cpp │ ├── SBSourcesBuildPhase.cpp │ ├── SBTarget.cpp │ ├── SBWorkspace.cpp │ ├── SimpleVariableCollection.cpp │ ├── VariableCollection.cpp │ ├── VariableCollectionHierarchy.cpp │ ├── VariableCollectionManager.cpp │ ├── XCVariableExpander.cpp │ ├── query.cpp │ ├── sb-hmapmaker.cpp │ ├── settingmodifiers.cpp │ ├── starexpand.cpp │ ├── utils │ │ ├── clangoptparser.cpp │ │ ├── fileutils.cpp │ │ ├── hmapmaker.cpp │ │ ├── miscutils.cpp │ │ ├── sbassert.cpp │ │ ├── stringutils.cpp │ │ ├── telemetryutils.cpp │ │ ├── tokenizer.cpp │ │ ├── versionutils.cpp │ │ ├── wildcardmatch.cpp │ │ └── xc2vs.cpp │ ├── vsimporter.cpp │ ├── vswriter │ │ ├── ConditionalValue.cpp │ │ ├── VCProject.cpp │ │ ├── VCProjectConfiguration.cpp │ │ ├── VCProjectConfigurationPlatform.cpp │ │ ├── VCProjectItem.cpp │ │ ├── VCSharedProject.cpp │ │ ├── VSBuildableSolutionProject.cpp │ │ ├── VSSolution.cpp │ │ ├── VSSolutionFolderProject.cpp │ │ ├── VSSolutionProject.cpp │ │ ├── VSTemplate.cpp │ │ ├── VSTemplateParameters.cpp │ │ ├── VSTemplateProject.cpp │ │ └── vshelpers.cpp │ ├── windows │ │ ├── basename.c │ │ ├── dirname.c │ │ ├── getopt.c │ │ └── realpath.c │ └── xcconfigparser.cpp ├── vsimporter.vcxproj ├── vsimporter.vcxproj.filters └── xib2nib │ ├── Project.json │ ├── resource_xib2nib.h │ ├── src │ ├── MKMapView.cpp │ ├── MKMapView.h │ ├── NIBWriter.cpp │ ├── NIBWriter.h │ ├── NSLayoutConstraint.cpp │ ├── NSLayoutConstraint.h │ ├── ObjectConverter.cpp │ ├── ObjectConverter.h │ ├── UIActivityIndicatorView.cpp │ ├── UIActivityIndicatorView.h │ ├── UIBarButtonItem.cpp │ ├── UIBarButtonItem.h │ ├── UIButton.cpp │ ├── UIButton.h │ ├── UICollectionView.cpp │ ├── UICollectionView.h │ ├── UICollectionViewCell.cpp │ ├── UICollectionViewCell.h │ ├── UICollectionViewController.cpp │ ├── UICollectionViewController.h │ ├── UIColor.cpp │ ├── UIColor.h │ ├── UIControl.cpp │ ├── UIControl.h │ ├── UICustomResource.cpp │ ├── UICustomResource.h │ ├── UIDatePicker.cpp │ ├── UIDatePicker.h │ ├── UIFont.cpp │ ├── UIFont.h │ ├── UIGestureRecognizer.cpp │ ├── UIGestureRecognizer.h │ ├── UIImageView.cpp │ ├── UIImageView.h │ ├── UILabel.cpp │ ├── UILabel.h │ ├── UINavigationBar.cpp │ ├── UINavigationBar.h │ ├── UINavigationController.cpp │ ├── UINavigationController.h │ ├── UINavigationItem.cpp │ ├── UINavigationItem.h │ ├── UIPageControl.cpp │ ├── UIPageControl.h │ ├── UIPanGestureRecognizer.cpp │ ├── UIPanGestureRecognizer.h │ ├── UIPickerView.cpp │ ├── UIPickerView.h │ ├── UIPongPressGestureRecognizer.cpp │ ├── UIPongPressGestureRecognizer.h │ ├── UIProgressView.cpp │ ├── UIProgressView.h │ ├── UIProxyObject.cpp │ ├── UIProxyObject.h │ ├── UIRuntimeAccessibilityConfiguration.cpp │ ├── UIRuntimeAccessibilityConfiguration.h │ ├── UIRuntimeEventConnection.cpp │ ├── UIRuntimeEventConnection.h │ ├── UIRuntimeOutletCollectionConnection.cpp │ ├── UIRuntimeOutletCollectionConnection.h │ ├── UIRuntimeOutletConnection.cpp │ ├── UIRuntimeOutletConnection.h │ ├── UIScrollView.cpp │ ├── UIScrollView.h │ ├── UISearchBar.cpp │ ├── UISearchBar.h │ ├── UISearchDisplayController.cpp │ ├── UISearchDisplayController.h │ ├── UISegment.cpp │ ├── UISegment.h │ ├── UISegmentedControl.cpp │ ├── UISegmentedControl.h │ ├── UISlider.cpp │ ├── UISlider.h │ ├── UIStackView.cpp │ ├── UIStackView.h │ ├── UIStepper.cpp │ ├── UIStepper.h │ ├── UIStoryboardSegue.cpp │ ├── UIStoryboardSegue.h │ ├── UISwipeGestureRecognizer.cpp │ ├── UISwipeGestureRecognizer.h │ ├── UISwitch.cpp │ ├── UISwitch.h │ ├── UITabBar.cpp │ ├── UITabBar.h │ ├── UITabBarController.cpp │ ├── UITabBarController.h │ ├── UITabBarItem.cpp │ ├── UITabBarItem.h │ ├── UITableView.cpp │ ├── UITableView.h │ ├── UITableViewCell.cpp │ ├── UITableViewCell.h │ ├── UITableViewCellContentView.cpp │ ├── UITableViewCellContentView.h │ ├── UITableViewController.cpp │ ├── UITableViewController.h │ ├── UITapGestureRecognizer.cpp │ ├── UITapGestureRecognizer.h │ ├── UITextField.cpp │ ├── UITextField.h │ ├── UITextView.cpp │ ├── UITextView.h │ ├── UIToolbar.cpp │ ├── UIToolbar.h │ ├── UIView.cpp │ ├── UIView.h │ ├── UIViewController.cpp │ ├── UIViewController.h │ ├── UIWebView.cpp │ ├── UIWebView.h │ ├── UIWindow.cpp │ ├── UIWindow.h │ ├── XIBDictionary.cpp │ ├── XIBDictionary.h │ ├── XIBDocument.cpp │ ├── XIBDocument.h │ ├── XIBObject.cpp │ ├── XIBObject.h │ ├── XIBObjectDouble.cpp │ ├── XIBObjectDouble.h │ ├── XIBObjectFloat.cpp │ ├── XIBObjectFloat.h │ ├── XIBObjectInt.cpp │ ├── XIBObjectInt.h │ ├── XIBObjectNil.cpp │ ├── XIBObjectNil.h │ ├── XIBObjectTypes.cpp │ ├── XIBObjectTypes.h │ ├── _UILayoutGuide.cpp │ ├── _UILayoutGuide.h │ └── xib2nib.cpp │ ├── xib2nib.vcxproj │ └── xib2nib.vcxproj.filters ├── winmd2objc ├── Common │ └── WinObjC.Frameworks.UWP.Common.targets ├── UnitTests │ ├── CodeGenTests.cpp │ ├── TestFramework.cpp │ ├── TypeInfoTests.cpp │ ├── UnitTests.vcxproj │ ├── UnitTests.vcxproj.filters │ ├── stdafx.cpp │ └── stdafx.h ├── include │ ├── CodeGen.h │ ├── CodeGenModel.h │ ├── CommandLine.h │ ├── Conversion.h │ ├── DepResolution.h │ ├── Generics.h │ ├── MetadataScope.h │ ├── Misc.h │ ├── ObjectModel.h │ ├── ShimTracker.h │ ├── TypeEnumerator.h │ ├── TypeInfo.h │ ├── WinMDVerString.h │ ├── WinRTSymbolTable.h │ ├── WinrtType.h │ └── caparser.h ├── lib │ ├── CodeGen.cpp │ ├── CommandLine.cpp │ ├── DepResolution.cpp │ ├── Generics.cpp │ ├── MetadataScope.cpp │ ├── Misc.cpp │ ├── ObjectModel.cpp │ ├── Precompiled.cpp │ ├── Precompiled.h │ ├── ShimTracker.cpp │ ├── TypeInfo.cpp │ ├── WinrtType.cpp │ ├── libwinmd2objc.filters │ ├── libwinmd2objc.vcxproj │ ├── libwinmd2objc.vcxproj.filters │ ├── main.cpp │ └── packages.config └── winmd2objc │ ├── entry.cpp │ ├── packages.config │ ├── winmd2objc.vcxproj │ └── winmd2objc.vcxproj.filters └── xib2xaml ├── xamltools ├── DiagnosticWriter.cs ├── Project.json ├── ResourceIDHelper.cs ├── XamlDom │ ├── SealableNamespaceCollection.cs │ ├── ValueNode.cs │ ├── XamlDom.cd │ ├── XamlDomItem.cs │ ├── XamlDomMember.cs │ ├── XamlDomNamespace.cs │ ├── XamlDomNode.cs │ ├── XamlDomObject.cs │ ├── XamlDomReader.cs │ ├── XamlDomReaderSettings.cs │ ├── XamlDomServices.cs │ ├── XamlDomValue.cs │ ├── XamlDomWriter.cs │ └── XamlNodeCollection.cs └── xamltools.csproj └── xib2xaml ├── ColorConverters.cs ├── Handlers ├── ActivityIndicatorViewHandler.cs ├── BarButtonHandler.cs ├── ButtonHandler.cs ├── ImageViewHandler.cs ├── LabelHandler.cs ├── ScrollViewHandler.cs ├── SegmentedControlHandler.cs ├── SliderHandler.cs ├── SwitchHandler.cs ├── TableViewCellHandler.cs ├── TableViewHandler.cs ├── TextFieldHandler.cs ├── TextViewHandler.cs ├── ViewHandler.cs └── WebViewHandler.cs ├── LegacyHandlers ├── ActivityIndicatorViewHandler.cs ├── BarButtonHandler.cs ├── ButtonHandler.cs ├── ImageViewHandler.cs ├── LabelHandler.cs ├── ScrollViewHandler.cs ├── SegmentedControlHandler.cs ├── SliderHandler.cs ├── SwitchHandler.cs ├── TableViewCellHandler.cs ├── TableViewHandler.cs ├── TextFieldHandler.cs ├── TextViewHandler.cs ├── ViewHandler.cs └── WebViewHandler.cs ├── NonContentPropertyXamlMember.cs ├── PostProcessor.cs ├── Program.cs ├── Project.json ├── Properties └── AssemblyInfo.cs ├── Resources ├── placeholder.xaml.cpp └── placeholder.xaml.h ├── XamlLegacyXibReader.cs ├── XamlXibReader.cs ├── app.config └── xib2xaml.csproj /.apianalyzer/clangargs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.apianalyzer/clangargs.txt -------------------------------------------------------------------------------- /.ci-repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.ci-repo.xml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/.gitmodules -------------------------------------------------------------------------------- /Frameworks/Accelerate/vDSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Accelerate/vDSP.cpp -------------------------------------------------------------------------------- /Frameworks/Accelerate/vImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Accelerate/vImage.cpp -------------------------------------------------------------------------------- /Frameworks/Accelerate/vImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Accelerate/vImage.mm -------------------------------------------------------------------------------- /Frameworks/Accounts/ACAccount.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Accounts/ACAccount.mm -------------------------------------------------------------------------------- /Frameworks/CFNetwork/CFHost.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CFNetwork/CFHost.mm -------------------------------------------------------------------------------- /Frameworks/CloudKit/CKAsset.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CloudKit/CKAsset.mm -------------------------------------------------------------------------------- /Frameworks/CloudKit/CKQuery.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CloudKit/CKQuery.mm -------------------------------------------------------------------------------- /Frameworks/CloudKit/CKRecord.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CloudKit/CKRecord.mm -------------------------------------------------------------------------------- /Frameworks/Contacts/CNContact.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Contacts/CNContact.mm -------------------------------------------------------------------------------- /Frameworks/Contacts/CNGroup.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Contacts/CNGroup.mm -------------------------------------------------------------------------------- /Frameworks/CoreFoundation/linux.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/CoreImage/CIColor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreImage/CIColor.mm -------------------------------------------------------------------------------- /Frameworks/CoreImage/CIFilter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreImage/CIFilter.mm -------------------------------------------------------------------------------- /Frameworks/CoreImage/CIImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreImage/CIImage.mm -------------------------------------------------------------------------------- /Frameworks/CoreImage/CIKernel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreImage/CIKernel.mm -------------------------------------------------------------------------------- /Frameworks/CoreImage/CIVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreImage/CIVector.mm -------------------------------------------------------------------------------- /Frameworks/CoreMIDI/MIDISetup.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreMIDI/MIDISetup.mm -------------------------------------------------------------------------------- /Frameworks/CoreMedia/CMSync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreMedia/CMSync.mm -------------------------------------------------------------------------------- /Frameworks/CoreMedia/CMTime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreMedia/CMTime.mm -------------------------------------------------------------------------------- /Frameworks/CoreText/CTFont.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreText/CTFont.mm -------------------------------------------------------------------------------- /Frameworks/CoreText/CTFrame.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreText/CTFrame.mm -------------------------------------------------------------------------------- /Frameworks/CoreText/CTLine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreText/CTLine.mm -------------------------------------------------------------------------------- /Frameworks/CoreText/CTRun.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreText/CTRun.mm -------------------------------------------------------------------------------- /Frameworks/CoreText/CTTextTab.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreText/CTTextTab.mm -------------------------------------------------------------------------------- /Frameworks/CoreVideo/CVBuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreVideo/CVBuffer.mm -------------------------------------------------------------------------------- /Frameworks/CoreVideo/CVTime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/CoreVideo/CVTime.mm -------------------------------------------------------------------------------- /Frameworks/EventKit/EKAlarm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/EventKit/EKAlarm.mm -------------------------------------------------------------------------------- /Frameworks/EventKit/EKEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/EventKit/EKEvent.mm -------------------------------------------------------------------------------- /Frameworks/EventKit/EKObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/EventKit/EKObject.mm -------------------------------------------------------------------------------- /Frameworks/EventKit/EKSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/EventKit/EKSource.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSArray.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFData.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFDate.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFSet.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFSet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFSet.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFURL.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCFURL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCFURL.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCache.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSCoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSCoder.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSColor.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSColor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSColor.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSData.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSData.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSDate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSDate.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSError.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSError.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSLock.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSLock.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSLog.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSLog.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSNull.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSNull.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSPipe.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSPipe.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSPort.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSPort.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSProxy.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSProxy.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSRange.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSRange.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSSet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSSet.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSSocket.h -------------------------------------------------------------------------------- /Frameworks/Foundation/NSTimer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSTimer.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSURL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSURL.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSUUID.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSUUID.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSValue.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSValue.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/NSZone.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/NSZone.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/Utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/Utils.mm -------------------------------------------------------------------------------- /Frameworks/Foundation/lex.yy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Foundation/lex.yy.m -------------------------------------------------------------------------------- /Frameworks/GLKit/GLKEffect.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/GLKEffect.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/GLKMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/GLKMath.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/GLKShader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/GLKShader.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/GLKTexture.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/GLKTexture.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/GLKView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/GLKView.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderGen.h -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderGen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderGen.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderInfo.h -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderInfo.mm -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderProg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderProg.h -------------------------------------------------------------------------------- /Frameworks/GLKit/ShaderProg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GLKit/ShaderProg.mm -------------------------------------------------------------------------------- /Frameworks/GameKit/GKInvite.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GameKit/GKInvite.mm -------------------------------------------------------------------------------- /Frameworks/GameKit/GKMatch.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GameKit/GKMatch.mm -------------------------------------------------------------------------------- /Frameworks/GameKit/GKPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GameKit/GKPlayer.mm -------------------------------------------------------------------------------- /Frameworks/GameKit/GKScore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GameKit/GKScore.mm -------------------------------------------------------------------------------- /Frameworks/GameKit/GKSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GameKit/GKSession.mm -------------------------------------------------------------------------------- /Frameworks/GamePlayKit/GKGoal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GamePlayKit/GKGoal.mm -------------------------------------------------------------------------------- /Frameworks/GamePlayKit/GKPath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GamePlayKit/GKPath.mm -------------------------------------------------------------------------------- /Frameworks/GamePlayKit/GKRule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/GamePlayKit/GKRule.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKDevice.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKObject.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKQuery.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKQuery.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKSample.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKSample.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKSource.mm -------------------------------------------------------------------------------- /Frameworks/HealthKit/HKUnit.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HealthKit/HKUnit.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMAction.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMAction.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMHome.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMHome.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMRoom.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMRoom.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMService.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMService.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMTrigger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMTrigger.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMUser.mm -------------------------------------------------------------------------------- /Frameworks/HomeKit/HMZone.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/HomeKit/HMZone.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKCircle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKCircle.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKMapCamera.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKMapCamera.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKMapItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKMapItem.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKMapView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKMapView.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKPlacemark.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKPlacemark.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKPolygon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKPolygon.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKPolyline.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKPolyline.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKRoute.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKRoute.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKRouteStep.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKRouteStep.mm -------------------------------------------------------------------------------- /Frameworks/MapKit/MKShape.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/MapKit/MKShape.mm -------------------------------------------------------------------------------- /Frameworks/Metal/MTLArgument.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Metal/MTLArgument.mm -------------------------------------------------------------------------------- /Frameworks/Metal/MTLArrayType.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Metal/MTLArrayType.mm -------------------------------------------------------------------------------- /Frameworks/Metal/MTLLibrary.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Metal/MTLLibrary.mm -------------------------------------------------------------------------------- /Frameworks/OpenGLES/GLES.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/OpenGLES/GLES.mm -------------------------------------------------------------------------------- /Frameworks/QuartzCore/CALayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/QuartzCore/CALayer.mm -------------------------------------------------------------------------------- /Frameworks/Security/SecItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Security/SecItem.mm -------------------------------------------------------------------------------- /Frameworks/Security/SecKey.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Security/SecKey.mm -------------------------------------------------------------------------------- /Frameworks/Security/SecPolicy.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Security/SecPolicy.mm -------------------------------------------------------------------------------- /Frameworks/Security/SecRandom.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Security/SecRandom.mm -------------------------------------------------------------------------------- /Frameworks/Security/SecTrust.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Security/SecTrust.mm -------------------------------------------------------------------------------- /Frameworks/Social.Xaml/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Social.Xaml/pch.cpp -------------------------------------------------------------------------------- /Frameworks/Social.Xaml/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Social.Xaml/pch.h -------------------------------------------------------------------------------- /Frameworks/Social/SLRequest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Social/SLRequest.mm -------------------------------------------------------------------------------- /Frameworks/Starboard/EbrFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/EbrFile.cpp -------------------------------------------------------------------------------- /Frameworks/Starboard/EbrFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/EbrFile.h -------------------------------------------------------------------------------- /Frameworks/Starboard/EbrIOFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/EbrIOFile.h -------------------------------------------------------------------------------- /Frameworks/Starboard/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/String.cpp -------------------------------------------------------------------------------- /Frameworks/Starboard/pevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/pevents.cpp -------------------------------------------------------------------------------- /Frameworks/Starboard/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Starboard/pthread.cpp -------------------------------------------------------------------------------- /Frameworks/StoreKit/SKPayment.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/StoreKit/SKPayment.mm -------------------------------------------------------------------------------- /Frameworks/StoreKit/SKProduct.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/StoreKit/SKProduct.mm -------------------------------------------------------------------------------- /Frameworks/StoreKit/SKRequest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/StoreKit/SKRequest.mm -------------------------------------------------------------------------------- /Frameworks/Twitter/TWRequest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/Twitter/TWRequest.mm -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/ILayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/ILayer.cpp -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/ILayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/ILayer.h -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/Label.xaml -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/Layer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/Layer.xaml -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/pch.cpp -------------------------------------------------------------------------------- /Frameworks/UIKit.Xaml/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit.Xaml/pch.h -------------------------------------------------------------------------------- /Frameworks/UIKit/NSDataAsset.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/NSDataAsset.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/NSShadow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/NSShadow.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/NSTextTab.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/NSTextTab.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIActivity.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIActivity.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIAlertView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIAlertView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIBarItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIBarItem.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIBezierPath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIBezierPath.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIBlurEffect.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIBlurEffect.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIButton.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UICGColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UICGColor.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UICGColor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UICGColor.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UICTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UICTFont.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UICTFont.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UICTFont.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIColor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIColor.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIControl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIControl.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIDatePicker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIDatePicker.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIDevice.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIDocument.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIDocument.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIEmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIEmptyView.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UIEmptyView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIEmptyView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIEvent.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIFocusGuide.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIFocusGuide.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIFont.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIFont.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIGeometry.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIGraphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIGraphics.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIImage.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIImageAsset.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIImageAsset.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIImageView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIImageView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIInputView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIInputView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIKeyCommand.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIKeyCommand.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UILabel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UILabel.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UILexicon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UILexicon.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIMenuItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIMenuItem.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UINib.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UINib.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPasteboard.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPasteboard.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPickerView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPickerView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPress.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPress.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPrintInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPrintInfo.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPrintPaper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPrintPaper.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIPrinter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIPrinter.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIProxyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIProxyObject.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UIRegion.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIRegion.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIResponder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIResponder.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIScreen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIScreen.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIScreenMode.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIScreenMode.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIScrollView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIScrollView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UISearchBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UISearchBar.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UISegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UISegment.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UISegment.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UISegment.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UISlider.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UISlider.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIStackView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIStackView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIStepper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIStepper.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIStoryboard.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIStoryboard.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UISwitch.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UISwitch.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITabBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITabBar.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITabBarItem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITabBarItem.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITabPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITabPane.h -------------------------------------------------------------------------------- /Frameworks/UIKit/UITabPane.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITabPane.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITableView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITableView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITextField.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITextField.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITextInput.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITextInput.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITextRange.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITextRange.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITextView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITextView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIToolbar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIToolbar.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UITouch.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UITouch.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIWebView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIWebView.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UIWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UIWindow.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/UrlLauncher.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/UrlLauncher.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/XamlControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/XamlControls.h -------------------------------------------------------------------------------- /Frameworks/UIKit/XamlControls.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/XamlControls.mm -------------------------------------------------------------------------------- /Frameworks/UIKit/XamlUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/XamlUtilities.h -------------------------------------------------------------------------------- /Frameworks/UIKit/art.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/UIKit/art.mm -------------------------------------------------------------------------------- /Frameworks/WebKit/WKFrameInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/WebKit/WKFrameInfo.mm -------------------------------------------------------------------------------- /Frameworks/WebKit/WKWebView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/WebKit/WKWebView.mm -------------------------------------------------------------------------------- /Frameworks/iAd/ADBannerView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/iAd/ADBannerView.mm -------------------------------------------------------------------------------- /Frameworks/iAd/ADClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/iAd/ADClient.mm -------------------------------------------------------------------------------- /Frameworks/include/AssetFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/AssetFile.h -------------------------------------------------------------------------------- /Frameworks/include/AutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/AutoLayout.h -------------------------------------------------------------------------------- /Frameworks/include/CFCppBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/CFCppBase.h -------------------------------------------------------------------------------- /Frameworks/include/CFUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/CFUtils.h -------------------------------------------------------------------------------- /Frameworks/include/CppUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/CppUtils.h -------------------------------------------------------------------------------- /Frameworks/include/EbrGLES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/EbrGLES.h -------------------------------------------------------------------------------- /Frameworks/include/Etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Etc.h -------------------------------------------------------------------------------- /Frameworks/include/FontAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/FontAtlas.h -------------------------------------------------------------------------------- /Frameworks/include/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Hash.h -------------------------------------------------------------------------------- /Frameworks/include/HashFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/HashFn.h -------------------------------------------------------------------------------- /Frameworks/include/IcuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/IcuHelper.h -------------------------------------------------------------------------------- /Frameworks/include/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/LinkedList.h -------------------------------------------------------------------------------- /Frameworks/include/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/List.h -------------------------------------------------------------------------------- /Frameworks/include/MockClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/MockClass.h -------------------------------------------------------------------------------- /Frameworks/include/MurmurHash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/MurmurHash3.h -------------------------------------------------------------------------------- /Frameworks/include/NSLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/NSLogging.h -------------------------------------------------------------------------------- /Frameworks/include/NSRaise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/NSRaise.h -------------------------------------------------------------------------------- /Frameworks/include/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Quaternion.h -------------------------------------------------------------------------------- /Frameworks/include/RawBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/RawBuffer.h -------------------------------------------------------------------------------- /Frameworks/include/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/RingBuffer.h -------------------------------------------------------------------------------- /Frameworks/include/Starboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Starboard.h -------------------------------------------------------------------------------- /Frameworks/include/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Str.h -------------------------------------------------------------------------------- /Frameworks/include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/Types.h -------------------------------------------------------------------------------- /Frameworks/include/UIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/UIInterface.h -------------------------------------------------------------------------------- /Frameworks/include/UrlLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/UrlLauncher.h -------------------------------------------------------------------------------- /Frameworks/include/WRLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/WRLHelpers.h -------------------------------------------------------------------------------- /Frameworks/include/_NSCFNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/_NSCFNumber.h -------------------------------------------------------------------------------- /Frameworks/include/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/khash.h -------------------------------------------------------------------------------- /Frameworks/include/pevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/pevents.h -------------------------------------------------------------------------------- /Frameworks/include/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/rapidxml.hpp -------------------------------------------------------------------------------- /Frameworks/include/rules.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/rules.tab.h -------------------------------------------------------------------------------- /Frameworks/include/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/Frameworks/include/stb_vorbis.h -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /common/NugetRestore.msbuildproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/common/NugetRestore.msbuildproj -------------------------------------------------------------------------------- /common/Override-ProjectJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/common/Override-ProjectJson.ps1 -------------------------------------------------------------------------------- /common/common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/common/common.rc -------------------------------------------------------------------------------- /contrib/clang/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/contrib/clang/README -------------------------------------------------------------------------------- /contrib/clang/patches/0008-Placeholder-to-delineate-upstream-vs.-Microsoft-chan.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/llvm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/contrib/llvm/README -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas.h -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_cher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_cher.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_chpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_chpr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_ddot.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_dger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_dger.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_drot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_drot.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_dspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_dspr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_dsyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_dsyr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_f77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_f77.h -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_sdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_sdot.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_sger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_sger.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_srot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_srot.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_sspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_sspr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_ssyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_ssyr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_zher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_zher.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/cblas_zhpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/cblas_zhpr.c -------------------------------------------------------------------------------- /deps/3rdparty/CBLAS/xerbla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/CBLAS/xerbla.c -------------------------------------------------------------------------------- /deps/3rdparty/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/Eigen/Core -------------------------------------------------------------------------------- /deps/3rdparty/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/Eigen/Jacobi -------------------------------------------------------------------------------- /deps/3rdparty/cassowary-0.60/c++/config-inline.h: -------------------------------------------------------------------------------- 1 | #define CL_USE_UNORDERED_MAP 2 | -------------------------------------------------------------------------------- /deps/3rdparty/cassowary-0.60/c++/config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "config-inline.h" -------------------------------------------------------------------------------- /deps/3rdparty/cassowary-0.60/c++/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /deps/3rdparty/cassowary-0.60/java/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/3rdparty/libdispatch/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /deps/3rdparty/libdispatch/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -fvi 3 | -------------------------------------------------------------------------------- /deps/3rdparty/libdispatch/platform/windows/libkern/OSAtomic.c: -------------------------------------------------------------------------------- 1 | #include "OSAtomic.h" 2 | 3 | -------------------------------------------------------------------------------- /deps/3rdparty/libjpeg/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | -------------------------------------------------------------------------------- /deps/3rdparty/libjpeg/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/libjpeg/src/README -------------------------------------------------------------------------------- /deps/3rdparty/libjpeg/src/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/libjpeg/src/ar-lib -------------------------------------------------------------------------------- /deps/3rdparty/libjpeg/src/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/3rdparty/libjpeg/src/jdct.h -------------------------------------------------------------------------------- /deps/3rdparty/libjpeg/src/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /deps/3rdparty/libxml2legacy/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | -------------------------------------------------------------------------------- /deps/3rdparty/libxml2legacy/MODULE_LICENSE_MIT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/3rdparty/openal-soft-winphone/winrt.vs2012/example.winrt/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /deps/3rdparty/openal-soft-winphone/winrt.vs2012/example.wp8/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /deps/3rdparty/openal-soft-winphone/winrt.vs2013/winrt_and_wp_v8.0/example.winrt/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /deps/3rdparty/openal-soft-winphone/winrt.vs2013/winrt_and_wp_v8.0/example.wp8/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /deps/3rdparty/openal-soft-winphone/winrt.vs2015/example_xaml/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /deps/prebuilt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/prebuilt/.gitignore -------------------------------------------------------------------------------- /deps/prebuilt/include/cassowary-0.60/config-inline.h: -------------------------------------------------------------------------------- 1 | #define CL_USE_UNORDERED_MAP 2 | -------------------------------------------------------------------------------- /deps/prebuilt/include/cassowary-0.60/config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "config-inline.h" -------------------------------------------------------------------------------- /deps/prebuilt/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/prebuilt/include/zconf.h -------------------------------------------------------------------------------- /deps/prebuilt/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/prebuilt/include/zlib.h -------------------------------------------------------------------------------- /deps/scripts/createlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/createlibs.py -------------------------------------------------------------------------------- /deps/scripts/libjpeg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/libjpeg.bat -------------------------------------------------------------------------------- /deps/scripts/libxml2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/libxml2.bat -------------------------------------------------------------------------------- /deps/scripts/openssl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/openssl.bat -------------------------------------------------------------------------------- /deps/scripts/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/paths.txt -------------------------------------------------------------------------------- /deps/scripts/zlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/zlib.patch -------------------------------------------------------------------------------- /deps/scripts/zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/deps/scripts/zlib.py -------------------------------------------------------------------------------- /docs/Foundation/NSInvocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/docs/Foundation/NSInvocation.md -------------------------------------------------------------------------------- /docs/Testing/OSXWinObjCTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/docs/Testing/OSXWinObjCTests.md -------------------------------------------------------------------------------- /docs/UIKit/All.UX.Controls.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/docs/UIKit/All.UX.Controls.xlsx -------------------------------------------------------------------------------- /docs/UIKit/WinObjC.UIKit.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/docs/UIKit/WinObjC.UIKit.docx -------------------------------------------------------------------------------- /include/AVFoundation/AVAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AVFoundation/AVAsset.h -------------------------------------------------------------------------------- /include/AVFoundation/AVPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AVFoundation/AVPlayer.h -------------------------------------------------------------------------------- /include/AVKit/AVKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AVKit/AVKit.h -------------------------------------------------------------------------------- /include/AVKit/AVKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AVKit/AVKitExport.h -------------------------------------------------------------------------------- /include/AVKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AVKit/module.modulemap -------------------------------------------------------------------------------- /include/Accelerate/Accelerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accelerate/Accelerate.h -------------------------------------------------------------------------------- /include/Accelerate/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accelerate/cblas.h -------------------------------------------------------------------------------- /include/Accelerate/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accelerate/eigen.h -------------------------------------------------------------------------------- /include/Accelerate/vDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accelerate/vDSP.h -------------------------------------------------------------------------------- /include/Accelerate/vImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accelerate/vImage.h -------------------------------------------------------------------------------- /include/Accounts/ACAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accounts/ACAccount.h -------------------------------------------------------------------------------- /include/Accounts/ACAccountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accounts/ACAccountType.h -------------------------------------------------------------------------------- /include/Accounts/Accounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Accounts/Accounts.h -------------------------------------------------------------------------------- /include/AdSupport/AdSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AdSupport/AdSupport.h -------------------------------------------------------------------------------- /include/AddressBook/ABGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AddressBook/ABGroup.h -------------------------------------------------------------------------------- /include/AddressBook/ABPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AddressBook/ABPerson.h -------------------------------------------------------------------------------- /include/AddressBook/ABRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AddressBook/ABRecord.h -------------------------------------------------------------------------------- /include/AddressBook/ABSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AddressBook/ABSource.h -------------------------------------------------------------------------------- /include/AssertMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AssertMacros.h -------------------------------------------------------------------------------- /include/AssetsLibrary/ALAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AssetsLibrary/ALAsset.h -------------------------------------------------------------------------------- /include/AudioToolbox/AudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AudioToolbox/AudioFile.h -------------------------------------------------------------------------------- /include/AudioUnit/AUAudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AudioUnit/AUAudioUnit.h -------------------------------------------------------------------------------- /include/AudioUnit/AUParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AudioUnit/AUParameter.h -------------------------------------------------------------------------------- /include/AudioUnit/AudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AudioUnit/AudioUnit.h -------------------------------------------------------------------------------- /include/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Availability.h -------------------------------------------------------------------------------- /include/AvailabilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/AvailabilityMacros.h -------------------------------------------------------------------------------- /include/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Block.h -------------------------------------------------------------------------------- /include/CFNetwork/CFFTPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CFNetwork/CFFTPStream.h -------------------------------------------------------------------------------- /include/CFNetwork/CFHTTPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CFNetwork/CFHTTPStream.h -------------------------------------------------------------------------------- /include/CFNetwork/CFHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CFNetwork/CFHost.h -------------------------------------------------------------------------------- /include/CFNetwork/CFNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CFNetwork/CFNetwork.h -------------------------------------------------------------------------------- /include/CloudKit/CKAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKAsset.h -------------------------------------------------------------------------------- /include/CloudKit/CKContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKContainer.h -------------------------------------------------------------------------------- /include/CloudKit/CKDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKDatabase.h -------------------------------------------------------------------------------- /include/CloudKit/CKOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKOperation.h -------------------------------------------------------------------------------- /include/CloudKit/CKQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKQuery.h -------------------------------------------------------------------------------- /include/CloudKit/CKQueryCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKQueryCursor.h -------------------------------------------------------------------------------- /include/CloudKit/CKRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKRecord.h -------------------------------------------------------------------------------- /include/CloudKit/CKRecordID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKRecordID.h -------------------------------------------------------------------------------- /include/CloudKit/CKRecordValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKRecordValue.h -------------------------------------------------------------------------------- /include/CloudKit/CKRecordZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKRecordZone.h -------------------------------------------------------------------------------- /include/CloudKit/CKReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CKReference.h -------------------------------------------------------------------------------- /include/CloudKit/CloudKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CloudKit/CloudKit.h -------------------------------------------------------------------------------- /include/Contacts/CNContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/CNContact.h -------------------------------------------------------------------------------- /include/Contacts/CNContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/CNContainer.h -------------------------------------------------------------------------------- /include/Contacts/CNGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/CNGroup.h -------------------------------------------------------------------------------- /include/Contacts/CNPhoneNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/CNPhoneNumber.h -------------------------------------------------------------------------------- /include/Contacts/CNSaveRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/CNSaveRequest.h -------------------------------------------------------------------------------- /include/Contacts/Contacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Contacts/Contacts.h -------------------------------------------------------------------------------- /include/CoreAudio/CoreAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreAudio/CoreAudio.h -------------------------------------------------------------------------------- /include/CoreBluetooth/CBPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreBluetooth/CBPeer.h -------------------------------------------------------------------------------- /include/CoreBluetooth/CBUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreBluetooth/CBUUID.h -------------------------------------------------------------------------------- /include/CoreData/CoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreData/CoreData.h -------------------------------------------------------------------------------- /include/CoreData/NSAtomicStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreData/NSAtomicStore.h -------------------------------------------------------------------------------- /include/CoreData/NSMergePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreData/NSMergePolicy.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGBase.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGColor.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGContext.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGFont.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGImage.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGLayer.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGPDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGPDFPage.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGPath.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGPattern.h -------------------------------------------------------------------------------- /include/CoreGraphics/CGShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreGraphics/CGShading.h -------------------------------------------------------------------------------- /include/CoreImage/CIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIColor.h -------------------------------------------------------------------------------- /include/CoreImage/CIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIContext.h -------------------------------------------------------------------------------- /include/CoreImage/CIDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIDetector.h -------------------------------------------------------------------------------- /include/CoreImage/CIFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIFeature.h -------------------------------------------------------------------------------- /include/CoreImage/CIFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIFilter.h -------------------------------------------------------------------------------- /include/CoreImage/CIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIImage.h -------------------------------------------------------------------------------- /include/CoreImage/CIKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIKernel.h -------------------------------------------------------------------------------- /include/CoreImage/CISampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CISampler.h -------------------------------------------------------------------------------- /include/CoreImage/CIVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIVector.h -------------------------------------------------------------------------------- /include/CoreImage/CIWarpKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CIWarpKernel.h -------------------------------------------------------------------------------- /include/CoreImage/CoreImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreImage/CoreImage.h -------------------------------------------------------------------------------- /include/CoreLocation/CLBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreLocation/CLBeacon.h -------------------------------------------------------------------------------- /include/CoreLocation/CLFloor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreLocation/CLFloor.h -------------------------------------------------------------------------------- /include/CoreLocation/CLHeading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreLocation/CLHeading.h -------------------------------------------------------------------------------- /include/CoreLocation/CLRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreLocation/CLRegion.h -------------------------------------------------------------------------------- /include/CoreLocation/CLVisit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreLocation/CLVisit.h -------------------------------------------------------------------------------- /include/CoreMIDI/CoreMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMIDI/CoreMIDI.h -------------------------------------------------------------------------------- /include/CoreMIDI/MIDIServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMIDI/MIDIServices.h -------------------------------------------------------------------------------- /include/CoreMIDI/MIDISetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMIDI/MIDISetup.h -------------------------------------------------------------------------------- /include/CoreMedia/CMAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMAttachment.h -------------------------------------------------------------------------------- /include/CoreMedia/CMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMSync.h -------------------------------------------------------------------------------- /include/CoreMedia/CMTextMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMTextMarkup.h -------------------------------------------------------------------------------- /include/CoreMedia/CMTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMTime.h -------------------------------------------------------------------------------- /include/CoreMedia/CMTimeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMTimeRange.h -------------------------------------------------------------------------------- /include/CoreMedia/CMTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CMTypes.h -------------------------------------------------------------------------------- /include/CoreMedia/CoreMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMedia/CoreMedia.h -------------------------------------------------------------------------------- /include/CoreMotion/CMAltimeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CMAltimeter.h -------------------------------------------------------------------------------- /include/CoreMotion/CMAttitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CMAttitude.h -------------------------------------------------------------------------------- /include/CoreMotion/CMGyroData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CMGyroData.h -------------------------------------------------------------------------------- /include/CoreMotion/CMLogItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CMLogItem.h -------------------------------------------------------------------------------- /include/CoreMotion/CMPedometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CMPedometer.h -------------------------------------------------------------------------------- /include/CoreMotion/CoreMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreMotion/CoreMotion.h -------------------------------------------------------------------------------- /include/CoreTelephony/CTCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreTelephony/CTCall.h -------------------------------------------------------------------------------- /include/CoreText/CTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTFont.h -------------------------------------------------------------------------------- /include/CoreText/CTFontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTFontManager.h -------------------------------------------------------------------------------- /include/CoreText/CTFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTFrame.h -------------------------------------------------------------------------------- /include/CoreText/CTFramesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTFramesetter.h -------------------------------------------------------------------------------- /include/CoreText/CTGlyphInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTGlyphInfo.h -------------------------------------------------------------------------------- /include/CoreText/CTLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTLine.h -------------------------------------------------------------------------------- /include/CoreText/CTRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTRun.h -------------------------------------------------------------------------------- /include/CoreText/CTRunDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTRunDelegate.h -------------------------------------------------------------------------------- /include/CoreText/CTTextTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTTextTab.h -------------------------------------------------------------------------------- /include/CoreText/CTTypesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTTypesetter.h -------------------------------------------------------------------------------- /include/CoreText/CTUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CTUtilities.h -------------------------------------------------------------------------------- /include/CoreText/CoreText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreText/CoreText.h -------------------------------------------------------------------------------- /include/CoreVideo/CVBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreVideo/CVBuffer.h -------------------------------------------------------------------------------- /include/CoreVideo/CVTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreVideo/CVTime.h -------------------------------------------------------------------------------- /include/CoreVideo/CoreVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/CoreVideo/CoreVideo.h -------------------------------------------------------------------------------- /include/EventKit/EKAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKAlarm.h -------------------------------------------------------------------------------- /include/EventKit/EKCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKCalendar.h -------------------------------------------------------------------------------- /include/EventKit/EKEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKEvent.h -------------------------------------------------------------------------------- /include/EventKit/EKEventStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKEventStore.h -------------------------------------------------------------------------------- /include/EventKit/EKObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKObject.h -------------------------------------------------------------------------------- /include/EventKit/EKParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKParticipant.h -------------------------------------------------------------------------------- /include/EventKit/EKReminder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKReminder.h -------------------------------------------------------------------------------- /include/EventKit/EKSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EKSource.h -------------------------------------------------------------------------------- /include/EventKit/EventKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKit/EventKit.h -------------------------------------------------------------------------------- /include/EventKitUI/EventKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/EventKitUI/EventKitUI.h -------------------------------------------------------------------------------- /include/Foundation/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/Foundation.h -------------------------------------------------------------------------------- /include/Foundation/NSArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSArchiver.h -------------------------------------------------------------------------------- /include/Foundation/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSArray.h -------------------------------------------------------------------------------- /include/Foundation/NSBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSBundle.h -------------------------------------------------------------------------------- /include/Foundation/NSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSByteOrder.h -------------------------------------------------------------------------------- /include/Foundation/NSCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSCache.h -------------------------------------------------------------------------------- /include/Foundation/NSCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSCalendar.h -------------------------------------------------------------------------------- /include/Foundation/NSCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSCoder.h -------------------------------------------------------------------------------- /include/Foundation/NSCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSCondition.h -------------------------------------------------------------------------------- /include/Foundation/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSData.h -------------------------------------------------------------------------------- /include/Foundation/NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSDate.h -------------------------------------------------------------------------------- /include/Foundation/NSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSDebug.h -------------------------------------------------------------------------------- /include/Foundation/NSDecimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSDecimal.h -------------------------------------------------------------------------------- /include/Foundation/NSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSError.h -------------------------------------------------------------------------------- /include/Foundation/NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSException.h -------------------------------------------------------------------------------- /include/Foundation/NSFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSFormatter.h -------------------------------------------------------------------------------- /include/Foundation/NSHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSHashTable.h -------------------------------------------------------------------------------- /include/Foundation/NSHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSHost.h -------------------------------------------------------------------------------- /include/Foundation/NSIndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSIndexPath.h -------------------------------------------------------------------------------- /include/Foundation/NSIndexSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSIndexSet.h -------------------------------------------------------------------------------- /include/Foundation/NSLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSLocale.h -------------------------------------------------------------------------------- /include/Foundation/NSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSLock.h -------------------------------------------------------------------------------- /include/Foundation/NSLocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSLocking.h -------------------------------------------------------------------------------- /include/Foundation/NSMachPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSMachPort.h -------------------------------------------------------------------------------- /include/Foundation/NSMapTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSMapTable.h -------------------------------------------------------------------------------- /include/Foundation/NSNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSNull.h -------------------------------------------------------------------------------- /include/Foundation/NSNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSNumber.h -------------------------------------------------------------------------------- /include/Foundation/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSObject.h -------------------------------------------------------------------------------- /include/Foundation/NSOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSOperation.h -------------------------------------------------------------------------------- /include/Foundation/NSPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSPipe.h -------------------------------------------------------------------------------- /include/Foundation/NSPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSPort.h -------------------------------------------------------------------------------- /include/Foundation/NSPortCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSPortCoder.h -------------------------------------------------------------------------------- /include/Foundation/NSPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSPredicate.h -------------------------------------------------------------------------------- /include/Foundation/NSProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSProgress.h -------------------------------------------------------------------------------- /include/Foundation/NSProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSProxy.h -------------------------------------------------------------------------------- /include/Foundation/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSRange.h -------------------------------------------------------------------------------- /include/Foundation/NSRunLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSRunLoop.h -------------------------------------------------------------------------------- /include/Foundation/NSScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSScanner.h -------------------------------------------------------------------------------- /include/Foundation/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSSet.h -------------------------------------------------------------------------------- /include/Foundation/NSStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSStream.h -------------------------------------------------------------------------------- /include/Foundation/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSString.h -------------------------------------------------------------------------------- /include/Foundation/NSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSThread.h -------------------------------------------------------------------------------- /include/Foundation/NSTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSTimeZone.h -------------------------------------------------------------------------------- /include/Foundation/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSTimer.h -------------------------------------------------------------------------------- /include/Foundation/NSURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSURL.h -------------------------------------------------------------------------------- /include/Foundation/NSURLCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSURLCache.h -------------------------------------------------------------------------------- /include/Foundation/NSURLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSURLError.h -------------------------------------------------------------------------------- /include/Foundation/NSUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSUUID.h -------------------------------------------------------------------------------- /include/Foundation/NSValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSValue.h -------------------------------------------------------------------------------- /include/Foundation/NSXMLDTD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSXMLDTD.h -------------------------------------------------------------------------------- /include/Foundation/NSXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSXMLNode.h -------------------------------------------------------------------------------- /include/Foundation/NSXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSXMLParser.h -------------------------------------------------------------------------------- /include/Foundation/NSZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Foundation/NSZone.h -------------------------------------------------------------------------------- /include/GLKit/GLKEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKEffect.h -------------------------------------------------------------------------------- /include/GLKit/GLKEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKEnums.h -------------------------------------------------------------------------------- /include/GLKit/GLKMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKMath.h -------------------------------------------------------------------------------- /include/GLKit/GLKMatrixStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKMatrixStack.h -------------------------------------------------------------------------------- /include/GLKit/GLKShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKShader.h -------------------------------------------------------------------------------- /include/GLKit/GLKShaderDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKShaderDefs.h -------------------------------------------------------------------------------- /include/GLKit/GLKSkyboxEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKSkyboxEffect.h -------------------------------------------------------------------------------- /include/GLKit/GLKTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKTexture.h -------------------------------------------------------------------------------- /include/GLKit/GLKView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKView.h -------------------------------------------------------------------------------- /include/GLKit/GLKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKit.h -------------------------------------------------------------------------------- /include/GLKit/GLKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/GLKitExport.h -------------------------------------------------------------------------------- /include/GLKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GLKit/module.modulemap -------------------------------------------------------------------------------- /include/GameKit/GKAchievement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKAchievement.h -------------------------------------------------------------------------------- /include/GameKit/GKChallenge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKChallenge.h -------------------------------------------------------------------------------- /include/GameKit/GKConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKConstants.h -------------------------------------------------------------------------------- /include/GameKit/GKInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKInvite.h -------------------------------------------------------------------------------- /include/GameKit/GKLeaderboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKLeaderboard.h -------------------------------------------------------------------------------- /include/GameKit/GKLocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKLocalPlayer.h -------------------------------------------------------------------------------- /include/GameKit/GKMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKMatch.h -------------------------------------------------------------------------------- /include/GameKit/GKMatchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKMatchRequest.h -------------------------------------------------------------------------------- /include/GameKit/GKMatchmaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKMatchmaker.h -------------------------------------------------------------------------------- /include/GameKit/GKPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKPlayer.h -------------------------------------------------------------------------------- /include/GameKit/GKSavedGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKSavedGame.h -------------------------------------------------------------------------------- /include/GameKit/GKScore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKScore.h -------------------------------------------------------------------------------- /include/GameKit/GKSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKSession.h -------------------------------------------------------------------------------- /include/GameKit/GKVoiceChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GKVoiceChat.h -------------------------------------------------------------------------------- /include/GameKit/GameKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GameKit.h -------------------------------------------------------------------------------- /include/GameKit/GameKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/GameKitExport.h -------------------------------------------------------------------------------- /include/GameKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GameKit/module.modulemap -------------------------------------------------------------------------------- /include/GamePlayKit/GKAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKAgent.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKAgent2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKAgent2D.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKBehavior.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKEntity.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKGoal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKGoal.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKGraph.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKObstacle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKObstacle.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKPath.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKRandom.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKRule.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKState.h -------------------------------------------------------------------------------- /include/GamePlayKit/GKType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/GamePlayKit/GKType.h -------------------------------------------------------------------------------- /include/HealthKit/HKDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKDevice.h -------------------------------------------------------------------------------- /include/HealthKit/HKObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKObject.h -------------------------------------------------------------------------------- /include/HealthKit/HKObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKObjectType.h -------------------------------------------------------------------------------- /include/HealthKit/HKQuantity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKQuantity.h -------------------------------------------------------------------------------- /include/HealthKit/HKQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKQuery.h -------------------------------------------------------------------------------- /include/HealthKit/HKSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKSample.h -------------------------------------------------------------------------------- /include/HealthKit/HKSampleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKSampleType.h -------------------------------------------------------------------------------- /include/HealthKit/HKSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKSource.h -------------------------------------------------------------------------------- /include/HealthKit/HKStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKStatistics.h -------------------------------------------------------------------------------- /include/HealthKit/HKUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKUnit.h -------------------------------------------------------------------------------- /include/HealthKit/HKWorkout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HKWorkout.h -------------------------------------------------------------------------------- /include/HealthKit/HealthKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HealthKit/HealthKit.h -------------------------------------------------------------------------------- /include/HomeKit/HMAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMAccessory.h -------------------------------------------------------------------------------- /include/HomeKit/HMAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMAction.h -------------------------------------------------------------------------------- /include/HomeKit/HMActionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMActionSet.h -------------------------------------------------------------------------------- /include/HomeKit/HMHome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMHome.h -------------------------------------------------------------------------------- /include/HomeKit/HMHomeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMHomeDelegate.h -------------------------------------------------------------------------------- /include/HomeKit/HMHomeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMHomeManager.h -------------------------------------------------------------------------------- /include/HomeKit/HMRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMRoom.h -------------------------------------------------------------------------------- /include/HomeKit/HMService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMService.h -------------------------------------------------------------------------------- /include/HomeKit/HMServiceGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMServiceGroup.h -------------------------------------------------------------------------------- /include/HomeKit/HMTimerTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMTimerTrigger.h -------------------------------------------------------------------------------- /include/HomeKit/HMTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMTrigger.h -------------------------------------------------------------------------------- /include/HomeKit/HMUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMUser.h -------------------------------------------------------------------------------- /include/HomeKit/HMZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HMZone.h -------------------------------------------------------------------------------- /include/HomeKit/HomeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HomeKit.h -------------------------------------------------------------------------------- /include/HomeKit/HomeKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/HomeKitExport.h -------------------------------------------------------------------------------- /include/HomeKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/HomeKit/module.modulemap -------------------------------------------------------------------------------- /include/ImageIO/CGImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/ImageIO/CGImageSource.h -------------------------------------------------------------------------------- /include/ImageIO/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/ImageIO/ImageIO.h -------------------------------------------------------------------------------- /include/ImageIO/ImageIOExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/ImageIO/ImageIOExport.h -------------------------------------------------------------------------------- /include/ImageIO/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/ImageIO/module.modulemap -------------------------------------------------------------------------------- /include/MapKit/MKAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKAnnotation.h -------------------------------------------------------------------------------- /include/MapKit/MKCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKCircle.h -------------------------------------------------------------------------------- /include/MapKit/MKCircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKCircleView.h -------------------------------------------------------------------------------- /include/MapKit/MKDirections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKDirections.h -------------------------------------------------------------------------------- /include/MapKit/MKETAREsponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKETAREsponse.h -------------------------------------------------------------------------------- /include/MapKit/MKLocalSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKLocalSearch.h -------------------------------------------------------------------------------- /include/MapKit/MKMapCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKMapCamera.h -------------------------------------------------------------------------------- /include/MapKit/MKMapItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKMapItem.h -------------------------------------------------------------------------------- /include/MapKit/MKMapSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKMapSnapshot.h -------------------------------------------------------------------------------- /include/MapKit/MKMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKMapView.h -------------------------------------------------------------------------------- /include/MapKit/MKMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKMultiPoint.h -------------------------------------------------------------------------------- /include/MapKit/MKOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKOverlay.h -------------------------------------------------------------------------------- /include/MapKit/MKOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKOverlayView.h -------------------------------------------------------------------------------- /include/MapKit/MKPlacemark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKPlacemark.h -------------------------------------------------------------------------------- /include/MapKit/MKPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKPolygon.h -------------------------------------------------------------------------------- /include/MapKit/MKPolygonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKPolygonView.h -------------------------------------------------------------------------------- /include/MapKit/MKPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKPolyline.h -------------------------------------------------------------------------------- /include/MapKit/MKPolylineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKPolylineView.h -------------------------------------------------------------------------------- /include/MapKit/MKRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKRoute.h -------------------------------------------------------------------------------- /include/MapKit/MKRouteStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKRouteStep.h -------------------------------------------------------------------------------- /include/MapKit/MKShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKShape.h -------------------------------------------------------------------------------- /include/MapKit/MKTileOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKTileOverlay.h -------------------------------------------------------------------------------- /include/MapKit/MKUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MKUserLocation.h -------------------------------------------------------------------------------- /include/MapKit/MapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MapKit.h -------------------------------------------------------------------------------- /include/MapKit/MapKitConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MapKitConstants.h -------------------------------------------------------------------------------- /include/MapKit/MapKitDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MapKitDataTypes.h -------------------------------------------------------------------------------- /include/MapKit/MapKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MapKitExport.h -------------------------------------------------------------------------------- /include/MapKit/MapKitFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/MapKitFunctions.h -------------------------------------------------------------------------------- /include/MapKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MapKit/module.modulemap -------------------------------------------------------------------------------- /include/MessageUI/MessageUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/MessageUI/MessageUI.h -------------------------------------------------------------------------------- /include/Metal/MTLArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLArgument.h -------------------------------------------------------------------------------- /include/Metal/MTLArrayType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLArrayType.h -------------------------------------------------------------------------------- /include/Metal/MTLBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLBuffer.h -------------------------------------------------------------------------------- /include/Metal/MTLCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLCommandBuffer.h -------------------------------------------------------------------------------- /include/Metal/MTLCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLCommandQueue.h -------------------------------------------------------------------------------- /include/Metal/MTLDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLDevice.h -------------------------------------------------------------------------------- /include/Metal/MTLDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLDrawable.h -------------------------------------------------------------------------------- /include/Metal/MTLFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLFunction.h -------------------------------------------------------------------------------- /include/Metal/MTLLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLLibrary.h -------------------------------------------------------------------------------- /include/Metal/MTLResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLResource.h -------------------------------------------------------------------------------- /include/Metal/MTLSamplerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLSamplerState.h -------------------------------------------------------------------------------- /include/Metal/MTLStructMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLStructMember.h -------------------------------------------------------------------------------- /include/Metal/MTLStructType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLStructType.h -------------------------------------------------------------------------------- /include/Metal/MTLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MTLTexture.h -------------------------------------------------------------------------------- /include/Metal/Metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/Metal.h -------------------------------------------------------------------------------- /include/Metal/MetalConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MetalConstants.h -------------------------------------------------------------------------------- /include/Metal/MetalDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MetalDataTypes.h -------------------------------------------------------------------------------- /include/Metal/MetalExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MetalExport.h -------------------------------------------------------------------------------- /include/Metal/MetalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/MetalFunctions.h -------------------------------------------------------------------------------- /include/Metal/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Metal/module.modulemap -------------------------------------------------------------------------------- /include/OpenGLES/EAGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/EAGL.h -------------------------------------------------------------------------------- /include/OpenGLES/EAGLDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/EAGLDrawable.h -------------------------------------------------------------------------------- /include/OpenGLES/EAGLExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/EAGLExport.h -------------------------------------------------------------------------------- /include/OpenGLES/ES1/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/ES1/gl.h -------------------------------------------------------------------------------- /include/OpenGLES/ES1/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/ES1/glext.h -------------------------------------------------------------------------------- /include/OpenGLES/ES2/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/ES2/gl.h -------------------------------------------------------------------------------- /include/OpenGLES/ES2/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/ES2/glext.h -------------------------------------------------------------------------------- /include/OpenGLES/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/OpenGLES/khrplatform.h -------------------------------------------------------------------------------- /include/QuartzCore/CAAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CAAction.h -------------------------------------------------------------------------------- /include/QuartzCore/CAAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CAAnimation.h -------------------------------------------------------------------------------- /include/QuartzCore/CAEAGLLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CAEAGLLayer.h -------------------------------------------------------------------------------- /include/QuartzCore/CALayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CALayer.h -------------------------------------------------------------------------------- /include/QuartzCore/CARenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CARenderer.h -------------------------------------------------------------------------------- /include/QuartzCore/CATextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/CATextLayer.h -------------------------------------------------------------------------------- /include/QuartzCore/QuartzCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuartzCore/QuartzCore.h -------------------------------------------------------------------------------- /include/QuickLook/QuickLook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/QuickLook/QuickLook.h -------------------------------------------------------------------------------- /include/Security/CipherSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/CipherSuite.h -------------------------------------------------------------------------------- /include/Security/SecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecBase.h -------------------------------------------------------------------------------- /include/Security/SecIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecIdentity.h -------------------------------------------------------------------------------- /include/Security/SecItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecItem.h -------------------------------------------------------------------------------- /include/Security/SecKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecKey.h -------------------------------------------------------------------------------- /include/Security/SecPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecPolicy.h -------------------------------------------------------------------------------- /include/Security/SecRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecRandom.h -------------------------------------------------------------------------------- /include/Security/SecTrust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/SecTrust.h -------------------------------------------------------------------------------- /include/Security/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Security/Security.h -------------------------------------------------------------------------------- /include/Social/SLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Social/SLRequest.h -------------------------------------------------------------------------------- /include/Social/SLServiceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Social/SLServiceTypes.h -------------------------------------------------------------------------------- /include/Social/Social.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Social/Social.h -------------------------------------------------------------------------------- /include/Social/SocialExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Social/SocialExport.h -------------------------------------------------------------------------------- /include/Social/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Social/module.modulemap -------------------------------------------------------------------------------- /include/StarboardExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StarboardExport.h -------------------------------------------------------------------------------- /include/StoreKit/SKDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StoreKit/SKDownload.h -------------------------------------------------------------------------------- /include/StoreKit/SKPayment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StoreKit/SKPayment.h -------------------------------------------------------------------------------- /include/StoreKit/SKProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StoreKit/SKProduct.h -------------------------------------------------------------------------------- /include/StoreKit/SKRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StoreKit/SKRequest.h -------------------------------------------------------------------------------- /include/StoreKit/StoreKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StoreKit/StoreKit.h -------------------------------------------------------------------------------- /include/StubIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/StubIncludes.h -------------------------------------------------------------------------------- /include/TargetConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/TargetConditionals.h -------------------------------------------------------------------------------- /include/Twitter/TWRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Twitter/TWRequest.h -------------------------------------------------------------------------------- /include/Twitter/Twitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Twitter/Twitter.h -------------------------------------------------------------------------------- /include/Twitter/TwitterExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Twitter/TwitterExport.h -------------------------------------------------------------------------------- /include/Twitter/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/Twitter/module.modulemap -------------------------------------------------------------------------------- /include/UIKit/NSDataAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSDataAsset.h -------------------------------------------------------------------------------- /include/UIKit/NSLayoutAnchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSLayoutAnchor.h -------------------------------------------------------------------------------- /include/UIKit/NSLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSLayoutManager.h -------------------------------------------------------------------------------- /include/UIKit/NSParagraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSParagraphStyle.h -------------------------------------------------------------------------------- /include/UIKit/NSShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSShadow.h -------------------------------------------------------------------------------- /include/UIKit/NSTextAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSTextAttachment.h -------------------------------------------------------------------------------- /include/UIKit/NSTextContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSTextContainer.h -------------------------------------------------------------------------------- /include/UIKit/NSTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSTextStorage.h -------------------------------------------------------------------------------- /include/UIKit/NSTextTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/NSTextTab.h -------------------------------------------------------------------------------- /include/UIKit/UIAcceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAcceleration.h -------------------------------------------------------------------------------- /include/UIKit/UIAccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAccelerometer.h -------------------------------------------------------------------------------- /include/UIKit/UIAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAccessibility.h -------------------------------------------------------------------------------- /include/UIKit/UIActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIActionSheet.h -------------------------------------------------------------------------------- /include/UIKit/UIActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIActivity.h -------------------------------------------------------------------------------- /include/UIKit/UIAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAlert.h -------------------------------------------------------------------------------- /include/UIKit/UIAlertAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAlertAction.h -------------------------------------------------------------------------------- /include/UIKit/UIAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAlertView.h -------------------------------------------------------------------------------- /include/UIKit/UIAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIAppearance.h -------------------------------------------------------------------------------- /include/UIKit/UIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIApplication.h -------------------------------------------------------------------------------- /include/UIKit/UIBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIBarButtonItem.h -------------------------------------------------------------------------------- /include/UIKit/UIBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIBarItem.h -------------------------------------------------------------------------------- /include/UIKit/UIBarPositioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIBarPositioning.h -------------------------------------------------------------------------------- /include/UIKit/UIBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIBezierPath.h -------------------------------------------------------------------------------- /include/UIKit/UIBlurEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIBlurEffect.h -------------------------------------------------------------------------------- /include/UIKit/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIButton.h -------------------------------------------------------------------------------- /include/UIKit/UICollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UICollectionView.h -------------------------------------------------------------------------------- /include/UIKit/UIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIColor.h -------------------------------------------------------------------------------- /include/UIKit/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIControl.h -------------------------------------------------------------------------------- /include/UIKit/UIDataDetectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIDataDetectors.h -------------------------------------------------------------------------------- /include/UIKit/UIDatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIDatePicker.h -------------------------------------------------------------------------------- /include/UIKit/UIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIDevice.h -------------------------------------------------------------------------------- /include/UIKit/UIDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIDocument.h -------------------------------------------------------------------------------- /include/UIKit/UIDynamicItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIDynamicItem.h -------------------------------------------------------------------------------- /include/UIKit/UIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIEvent.h -------------------------------------------------------------------------------- /include/UIKit/UIFieldBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIFieldBehavior.h -------------------------------------------------------------------------------- /include/UIKit/UIFocusGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIFocusGuide.h -------------------------------------------------------------------------------- /include/UIKit/UIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIFont.h -------------------------------------------------------------------------------- /include/UIKit/UIFontDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIFontDescriptor.h -------------------------------------------------------------------------------- /include/UIKit/UIGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIGeometry.h -------------------------------------------------------------------------------- /include/UIKit/UIGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIGraphics.h -------------------------------------------------------------------------------- /include/UIKit/UIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIImage.h -------------------------------------------------------------------------------- /include/UIKit/UIImageAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIImageAsset.h -------------------------------------------------------------------------------- /include/UIKit/UIImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIImageView.h -------------------------------------------------------------------------------- /include/UIKit/UIInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIInputView.h -------------------------------------------------------------------------------- /include/UIKit/UIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIInterface.h -------------------------------------------------------------------------------- /include/UIKit/UIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKey.h -------------------------------------------------------------------------------- /include/UIKit/UIKeyCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKeyCommand.h -------------------------------------------------------------------------------- /include/UIKit/UIKeyInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKeyInput.h -------------------------------------------------------------------------------- /include/UIKit/UIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKit.h -------------------------------------------------------------------------------- /include/UIKit/UIKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKitExport.h -------------------------------------------------------------------------------- /include/UIKit/UIKitTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIKitTypes.h -------------------------------------------------------------------------------- /include/UIKit/UILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UILabel.h -------------------------------------------------------------------------------- /include/UIKit/UILayoutGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UILayoutGuide.h -------------------------------------------------------------------------------- /include/UIKit/UILayoutSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UILayoutSupport.h -------------------------------------------------------------------------------- /include/UIKit/UILexicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UILexicon.h -------------------------------------------------------------------------------- /include/UIKit/UILexiconEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UILexiconEntry.h -------------------------------------------------------------------------------- /include/UIKit/UIMenuController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIMenuController.h -------------------------------------------------------------------------------- /include/UIKit/UIMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIMenuItem.h -------------------------------------------------------------------------------- /include/UIKit/UIMotionEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIMotionEffect.h -------------------------------------------------------------------------------- /include/UIKit/UINavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UINavigationBar.h -------------------------------------------------------------------------------- /include/UIKit/UINavigationItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UINavigationItem.h -------------------------------------------------------------------------------- /include/UIKit/UINib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UINib.h -------------------------------------------------------------------------------- /include/UIKit/UIPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPageControl.h -------------------------------------------------------------------------------- /include/UIKit/UIPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPasteboard.h -------------------------------------------------------------------------------- /include/UIKit/UIPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPickerView.h -------------------------------------------------------------------------------- /include/UIKit/UIPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPress.h -------------------------------------------------------------------------------- /include/UIKit/UIPressesEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPressesEvent.h -------------------------------------------------------------------------------- /include/UIKit/UIPreviewAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPreviewAction.h -------------------------------------------------------------------------------- /include/UIKit/UIPrintFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPrintFormatter.h -------------------------------------------------------------------------------- /include/UIKit/UIPrintInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPrintInfo.h -------------------------------------------------------------------------------- /include/UIKit/UIPrintPaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPrintPaper.h -------------------------------------------------------------------------------- /include/UIKit/UIPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPrinter.h -------------------------------------------------------------------------------- /include/UIKit/UIProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIProgressView.h -------------------------------------------------------------------------------- /include/UIKit/UIPushBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIPushBehavior.h -------------------------------------------------------------------------------- /include/UIKit/UIRefreshControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIRefreshControl.h -------------------------------------------------------------------------------- /include/UIKit/UIRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIRegion.h -------------------------------------------------------------------------------- /include/UIKit/UIResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIResponder.h -------------------------------------------------------------------------------- /include/UIKit/UIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIScreen.h -------------------------------------------------------------------------------- /include/UIKit/UIScreenMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIScreenMode.h -------------------------------------------------------------------------------- /include/UIKit/UIScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIScrollView.h -------------------------------------------------------------------------------- /include/UIKit/UISearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UISearchBar.h -------------------------------------------------------------------------------- /include/UIKit/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UISlider.h -------------------------------------------------------------------------------- /include/UIKit/UISnapBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UISnapBehavior.h -------------------------------------------------------------------------------- /include/UIKit/UIStackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIStackView.h -------------------------------------------------------------------------------- /include/UIKit/UIStateRestoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIStateRestoring.h -------------------------------------------------------------------------------- /include/UIKit/UIStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIStepper.h -------------------------------------------------------------------------------- /include/UIKit/UIStoryboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIStoryboard.h -------------------------------------------------------------------------------- /include/UIKit/UISwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UISwitch.h -------------------------------------------------------------------------------- /include/UIKit/UITabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITabBar.h -------------------------------------------------------------------------------- /include/UIKit/UITabBarDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITabBarDelegate.h -------------------------------------------------------------------------------- /include/UIKit/UITabBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITabBarItem.h -------------------------------------------------------------------------------- /include/UIKit/UITableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITableView.h -------------------------------------------------------------------------------- /include/UIKit/UITextChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextChecker.h -------------------------------------------------------------------------------- /include/UIKit/UITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextField.h -------------------------------------------------------------------------------- /include/UIKit/UITextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextInput.h -------------------------------------------------------------------------------- /include/UIKit/UITextPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextPosition.h -------------------------------------------------------------------------------- /include/UIKit/UITextRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextRange.h -------------------------------------------------------------------------------- /include/UIKit/UITextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITextView.h -------------------------------------------------------------------------------- /include/UIKit/UIToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIToolbar.h -------------------------------------------------------------------------------- /include/UIKit/UITouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UITouch.h -------------------------------------------------------------------------------- /include/UIKit/UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIView.h -------------------------------------------------------------------------------- /include/UIKit/UIViewAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIViewAdapter.h -------------------------------------------------------------------------------- /include/UIKit/UIVisualEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIVisualEffect.h -------------------------------------------------------------------------------- /include/UIKit/UIWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIWebView.h -------------------------------------------------------------------------------- /include/UIKit/UIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/UIWindow.h -------------------------------------------------------------------------------- /include/UIKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/UIKit/module.modulemap -------------------------------------------------------------------------------- /include/WebKit/WKFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKFrameInfo.h -------------------------------------------------------------------------------- /include/WebKit/WKNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKNavigation.h -------------------------------------------------------------------------------- /include/WebKit/WKPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKPreferences.h -------------------------------------------------------------------------------- /include/WebKit/WKProcessPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKProcessPool.h -------------------------------------------------------------------------------- /include/WebKit/WKUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKUIDelegate.h -------------------------------------------------------------------------------- /include/WebKit/WKUserScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKUserScript.h -------------------------------------------------------------------------------- /include/WebKit/WKWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WKWebView.h -------------------------------------------------------------------------------- /include/WebKit/WebKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WebKit.h -------------------------------------------------------------------------------- /include/WebKit/WebKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/WebKit/WebKitExport.h -------------------------------------------------------------------------------- /include/dns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/dns_sd.h -------------------------------------------------------------------------------- /include/iAd/ADBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/ADBannerView.h -------------------------------------------------------------------------------- /include/iAd/ADClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/ADClient.h -------------------------------------------------------------------------------- /include/iAd/ADInterstitialAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/ADInterstitialAd.h -------------------------------------------------------------------------------- /include/iAd/UIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/UIViewController.h -------------------------------------------------------------------------------- /include/iAd/iAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/iAd.h -------------------------------------------------------------------------------- /include/iAd/iAdExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/iAdExport.h -------------------------------------------------------------------------------- /include/iAd/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/iAd/module.modulemap -------------------------------------------------------------------------------- /include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/include/pthread.h -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/init.ps1 -------------------------------------------------------------------------------- /msvc/package-build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/package-build.props -------------------------------------------------------------------------------- /msvc/sdk-build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/sdk-build.props -------------------------------------------------------------------------------- /msvc/sdk-build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/sdk-build.targets -------------------------------------------------------------------------------- /msvc/ut-build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/ut-build.props -------------------------------------------------------------------------------- /msvc/ut-build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/ut-build.targets -------------------------------------------------------------------------------- /msvc/zip.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/msvc/zip.tasks -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/nuget.config -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | ipch 3 | Generated Files 4 | -------------------------------------------------------------------------------- /samples/HelloUI/HelloUI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/HelloUI/HelloUI/main.m -------------------------------------------------------------------------------- /samples/HelloUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/HelloUI/Info.plist -------------------------------------------------------------------------------- /samples/KVOPerf/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/KVOPerf/Info.plist -------------------------------------------------------------------------------- /samples/KVOPerf/KVOPerf/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/KVOPerf/KVOPerf/main.m -------------------------------------------------------------------------------- /samples/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/nuget.config -------------------------------------------------------------------------------- /samples/samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/samples/samples.txt -------------------------------------------------------------------------------- /scripts/build/unzip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/build/unzip.ps1 -------------------------------------------------------------------------------- /scripts/build/wack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/build/wack.ps1 -------------------------------------------------------------------------------- /scripts/git/clang-format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/clang-format.ps1 -------------------------------------------------------------------------------- /scripts/git/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/common.ps1 -------------------------------------------------------------------------------- /scripts/git/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/pre-commit -------------------------------------------------------------------------------- /scripts/git/pre-commit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/pre-commit.ps1 -------------------------------------------------------------------------------- /scripts/git/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/pre-push -------------------------------------------------------------------------------- /scripts/git/pre-push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/scripts/git/pre-push.ps1 -------------------------------------------------------------------------------- /scripts/init/.version: -------------------------------------------------------------------------------- 1 | 0.1.3 2 | -------------------------------------------------------------------------------- /tests/Benchmark/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Benchmark/Benchmark.h -------------------------------------------------------------------------------- /tests/Benchmark/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Benchmark/EntryPoint.cpp -------------------------------------------------------------------------------- /tests/Generate-TestImages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Generate-TestImages.ps1 -------------------------------------------------------------------------------- /tests/Run-FunctionalTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Run-FunctionalTests.ps1 -------------------------------------------------------------------------------- /tests/Run-Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Run-Tests.ps1 -------------------------------------------------------------------------------- /tests/Run-UnitTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Run-UnitTests.ps1 -------------------------------------------------------------------------------- /tests/Tests.Shared/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Tests.Shared/Logger.cpp -------------------------------------------------------------------------------- /tests/Tests.Shared/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Tests.Shared/Logger.h -------------------------------------------------------------------------------- /tests/Tests.Shared/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Tests.Shared/pch.h -------------------------------------------------------------------------------- /tests/Tests.Shared/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Tests.Shared/targetver.h -------------------------------------------------------------------------------- /tests/Tests.Shared/test-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/Tests.Shared/test-api.h -------------------------------------------------------------------------------- /tests/apps/AutoAppBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/apps/AutoAppBuild.py -------------------------------------------------------------------------------- /tests/apps/TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/apps/TemporaryKey.pfx -------------------------------------------------------------------------------- /tests/frameworks/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/frameworks/gtest/LICENSE -------------------------------------------------------------------------------- /tests/functionaltests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/functionaltests/pch.h -------------------------------------------------------------------------------- /tests/testapps/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/testapps/nuget.config -------------------------------------------------------------------------------- /tests/unittests/CoreGraphics.Drawing/data/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/unittests/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/unittests/EntryPoint.cpp -------------------------------------------------------------------------------- /tests/unittests/Foundation/ReferenceFoundation/Resources/NSStringTestData.txt: -------------------------------------------------------------------------------- 1 | swift-corelibs-foundation -------------------------------------------------------------------------------- /tests/unittests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/unittests/Makefile -------------------------------------------------------------------------------- /tests/unittests/UT.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tests/unittests/UT.common.mk -------------------------------------------------------------------------------- /tools/AppInsights/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/AppInsights/.gitignore -------------------------------------------------------------------------------- /tools/AppInsights/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/AppInsights/LICENSE -------------------------------------------------------------------------------- /tools/AppInsights/Projects/AppInsights_Win10-UAP/AppInsights_Win10-UAP/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /tools/AppInsights/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/AppInsights/ReadMe.md -------------------------------------------------------------------------------- /tools/BuildMonitor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/BuildMonitor/app.config -------------------------------------------------------------------------------- /tools/ClangCompileTask/.gitignore: -------------------------------------------------------------------------------- 1 | obj -------------------------------------------------------------------------------- /tools/Logging/dll/Logging.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/Logging/dll/Logging.def -------------------------------------------------------------------------------- /tools/Logging/dll/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/Logging/dll/Project.json -------------------------------------------------------------------------------- /tools/Logging/dll/Telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/Logging/dll/Telemetry.h -------------------------------------------------------------------------------- /tools/Logging/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/Logging/dll/dllmain.cpp -------------------------------------------------------------------------------- /tools/OutputPackages/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tools/OutputPackages/Release/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tools/PropSchemaGen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/PropSchemaGen/App.config -------------------------------------------------------------------------------- /tools/PropSchemaGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/PropSchemaGen/Program.cs -------------------------------------------------------------------------------- /tools/PropSchemaGen/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/PropSchemaGen/ReadMe.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/VSIX/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/VSIX/app.config -------------------------------------------------------------------------------- /tools/VSIX/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/VSIX/packages.config -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/OSMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/OSMisc.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/String.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/dlfcn.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/inet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/inet.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/mach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/mach.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/random.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/sched.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/sysctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/sysctl.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/time.cpp -------------------------------------------------------------------------------- /tools/WOCStdLib/lib/unistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WOCStdLib/lib/unistd.cpp -------------------------------------------------------------------------------- /tools/WinObjC.Tools/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/WinObjC.Tools/Readme.txt -------------------------------------------------------------------------------- /tools/bin/depends.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/bin/depends.dll -------------------------------------------------------------------------------- /tools/bin/depends.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/bin/depends.exe -------------------------------------------------------------------------------- /tools/bin/libclang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/bin/libclang.dll -------------------------------------------------------------------------------- /tools/bin/objc2winmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/bin/objc2winmd.exe -------------------------------------------------------------------------------- /tools/common/tools-build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/common/tools-build.props -------------------------------------------------------------------------------- /tools/include/MacTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/MacTypes.h -------------------------------------------------------------------------------- /tools/include/WOCStdLib/arm/arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/include/WOCStdLib/arm/types.h: -------------------------------------------------------------------------------- 1 | // This header file is not yet implemented 2 | -------------------------------------------------------------------------------- /tools/include/objc/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/Object.h -------------------------------------------------------------------------------- /tools/include/objc/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/Protocol.h -------------------------------------------------------------------------------- /tools/include/objc/SOURCE.txt: -------------------------------------------------------------------------------- 1 | Microsoft/libobjc2 5ea75ed55185bdb300a6c51320a4695e3f6ff31e 2 | -------------------------------------------------------------------------------- /tools/include/objc/developer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/developer.h -------------------------------------------------------------------------------- /tools/include/objc/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/encoding.h -------------------------------------------------------------------------------- /tools/include/objc/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/hooks.h -------------------------------------------------------------------------------- /tools/include/objc/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/message.h -------------------------------------------------------------------------------- /tools/include/objc/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/objc-api.h -------------------------------------------------------------------------------- /tools/include/objc/objc-arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/objc-arc.h -------------------------------------------------------------------------------- /tools/include/objc/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/objc-auto.h -------------------------------------------------------------------------------- /tools/include/objc/objc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tools/include/objc/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/runtime.h -------------------------------------------------------------------------------- /tools/include/objc/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/include/objc/slot.h -------------------------------------------------------------------------------- /tools/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/nuget.config -------------------------------------------------------------------------------- /tools/objc2winmd/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/Helpers.cpp -------------------------------------------------------------------------------- /tools/objc2winmd/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/Helpers.h -------------------------------------------------------------------------------- /tools/objc2winmd/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/Readme.txt -------------------------------------------------------------------------------- /tools/objc2winmd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/stdafx.cpp -------------------------------------------------------------------------------- /tools/objc2winmd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/stdafx.h -------------------------------------------------------------------------------- /tools/objc2winmd/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/targetver.h -------------------------------------------------------------------------------- /tools/objc2winmd/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/tokenizer.cpp -------------------------------------------------------------------------------- /tools/objc2winmd/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/objc2winmd/tokenizer.h -------------------------------------------------------------------------------- /tools/tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/tools.sln -------------------------------------------------------------------------------- /tools/vsimporter/src/SBLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/vsimporter/src/SBLog.cpp -------------------------------------------------------------------------------- /tools/vsimporter/src/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/vsimporter/src/query.cpp -------------------------------------------------------------------------------- /tools/winmd2objc/lib/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/winmd2objc/lib/Misc.cpp -------------------------------------------------------------------------------- /tools/winmd2objc/lib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WinObjC/HEAD/tools/winmd2objc/lib/main.cpp --------------------------------------------------------------------------------