├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Documents ├── Developers │ ├── DevGuide.md │ ├── DevNotes.txt │ ├── MenuActionList.txt │ ├── PullRequest.md │ ├── UserDefaultsList.txt │ ├── ViewTreeSample.txt │ ├── ViewTreeSample_BasicMode_7GM.txt │ ├── ViewTreeSample_GeniusMode_7GM.txt │ ├── ViewTreeSample_Playground_7.1.txt │ ├── XCodeClasses.html │ ├── XVim.key │ ├── XVim.pdf │ ├── XVimClassFigure.ods │ ├── XVimClassFigure.pdf │ └── index.html ├── Images │ ├── Keychain1.png │ └── Keychain2.png └── Users │ └── FeatureList.md ├── INSTALL_Xcode8.md ├── Images ├── EPS │ └── xvim.eps ├── PNG │ ├── xvim-rounded-corners.png │ └── xvim-solid.png ├── README.md └── SVG │ ├── xvim-black-on-white.svg │ ├── xvim-colors.svg │ └── xvim-white-on-black.svg ├── LICENSE ├── Makefile ├── README.md ├── README_jp.md ├── Tools ├── unsign │ ├── Makefile │ ├── README.md │ ├── endian.c │ ├── endian.h │ ├── endian.o │ ├── unsign │ ├── unsign.c │ └── unsign.o └── xcodedump.rb ├── XVim.pmdoc ├── 01xvim-contents.xml ├── 01xvim.xml ├── README.md └── index.xml ├── XVim.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── XVim.xcscheme ├── XVim ├── DVTSourceTextScrollView+XVim.h ├── DVTSourceTextScrollView+XVim.m ├── DVTSourceTextView+XVim.h ├── DVTSourceTextView+XVim.m ├── DVTTextSidebarView+XVim.h ├── DVTTextSidebarView+XVim.m ├── DVTTextStorage+XVimTextStoring.h ├── DVTTextStorage+XVimTextStoring.m ├── IDEApplicationController+XVim.h ├── IDEApplicationController+XVim.m ├── IDEEditor+XVim.h ├── IDEEditor+XVim.m ├── IDEEditorArea+XVim.h ├── IDEEditorArea+XVim.m ├── IDEPlaygroundEditor+XVim.h ├── IDEPlaygroundEditor+XVim.m ├── IDESourceCodeEditor+XVim.h ├── IDESourceCodeEditor+XVim.m ├── IDEWorkspaceTabController+XVim.h ├── IDEWorkspaceTabController+XVim.m ├── Info.plist ├── Logger.h ├── Logger.m ├── MemoryManagementMacros.h ├── NSAttributedString+Geometrics.h ├── NSAttributedString+Geometrics.m ├── NSColor+Extra.h ├── NSColor+Extra.m ├── NSEvent+VimHelper.h ├── NSEvent+VimHelper.m ├── NSInsetTextView.h ├── NSInsetTextView.m ├── NSObject+ExtraData.h ├── NSObject+ExtraData.m ├── NSObject+XVimAdditions.h ├── NSObject+XVimAdditions.m ├── NSString+VimHelper.h ├── NSString+VimHelper.m ├── NSTextStorage+VimOperation.h ├── NSTextStorage+VimOperation.m ├── NSTextView+VimOperation.h ├── NSTextView+VimOperation.m ├── NSURL+XVimXcodeModule.h ├── NSURL+XVimXcodeModule.m ├── ProcessRunner.h ├── ProcessRunner.m ├── Test │ ├── XVimTestCase.h │ ├── XVimTestCase.m │ ├── XVimTester+ExCmd.m │ ├── XVimTester+Issues.m │ ├── XVimTester+Jump.m │ ├── XVimTester+Mark.m │ ├── XVimTester+Motion.m │ ├── XVimTester+Operator.m │ ├── XVimTester+Options.m │ ├── XVimTester+Register.m │ ├── XVimTester+Search.m │ ├── XVimTester+TextObject.m │ ├── XVimTester+Visual.m │ └── XVimTester+map.m ├── Utils.h ├── Utils.m ├── XVim-Prefix.pch ├── XVim.h ├── XVim.m ├── XVimAboutDialog.h ├── XVimAboutDialog.m ├── XVimArgumentEvaluator.h ├── XVimArgumentEvaluator.m ├── XVimBuffer.h ├── XVimBuffer.m ├── XVimCommandField.h ├── XVimCommandField.m ├── XVimCommandLine.h ├── XVimCommandLine.m ├── XVimCommandLineEvaluator.h ├── XVimCommandLineEvaluator.m ├── XVimDebug.h ├── XVimDebug.m ├── XVimDefs.h ├── XVimDeleteEvaluator.h ├── XVimDeleteEvaluator.m ├── XVimEqualEvaluator.h ├── XVimEqualEvaluator.m ├── XVimEval.h ├── XVimEval.m ├── XVimEvaluator.h ├── XVimEvaluator.m ├── XVimExCommand.h ├── XVimExCommand.m ├── XVimGActionEvaluator.h ├── XVimGActionEvaluator.m ├── XVimGMotionEvaluator.h ├── XVimGMotionEvaluator.m ├── XVimGVisualEvaluator.h ├── XVimGVisualEvaluator.m ├── XVimHistoryHandler.h ├── XVimHistoryHandler.m ├── XVimHookManager.h ├── XVimHookManager.m ├── XVimInsertEvaluator.h ├── XVimInsertEvaluator.m ├── XVimJoinEvaluator.h ├── XVimJoinEvaluator.m ├── XVimKeyStroke.h ├── XVimKeyStroke.m ├── XVimKeymap.h ├── XVimKeymap.m ├── XVimKeymapProvider.h ├── XVimLowercaseEvaluator.h ├── XVimLowercaseEvaluator.m ├── XVimMacros.h ├── XVimMark.h ├── XVimMark.m ├── XVimMarkSetEvaluator.h ├── XVimMarkSetEvaluator.m ├── XVimMarks.h ├── XVimMarks.m ├── XVimMotion.h ├── XVimMotion.m ├── XVimMotionEvaluator.h ├── XVimMotionEvaluator.m ├── XVimMotionOption.h ├── XVimMotionType.h ├── XVimNormalEvaluator.h ├── XVimNormalEvaluator.m ├── XVimNumericEvaluator.h ├── XVimNumericEvaluator.m ├── XVimOperatorEvaluator.h ├── XVimOperatorEvaluator.m ├── XVimOptions.h ├── XVimOptions.m ├── XVimQuickFixView.h ├── XVimQuickFixView.m ├── XVimRecordingEvaluator.h ├── XVimRecordingEvaluator.m ├── XVimRegister.h ├── XVimRegister.m ├── XVimRegisterEvaluator.h ├── XVimRegisterEvaluator.m ├── XVimReplaceEvaluator.h ├── XVimReplaceEvaluator.m ├── XVimReplacePromptEvaluator.h ├── XVimReplacePromptEvaluator.m ├── XVimSearch.h ├── XVimSearch.m ├── XVimShiftEvaluator.h ├── XVimShiftEvaluator.m ├── XVimStatusLine.h ├── XVimStatusLine.m ├── XVimStringBuffer.h ├── XVimTaskRunner.h ├── XVimTaskRunner.m ├── XVimTester+Recording.m ├── XVimTester.h ├── XVimTester.m ├── XVimTextObjectEvaluator.h ├── XVimTextObjectEvaluator.m ├── XVimTextStoring.h ├── XVimTextViewProtocol.h ├── XVimTildeEvaluator.h ├── XVimTildeEvaluator.m ├── XVimUppercaseEvaluator.h ├── XVimUppercaseEvaluator.m ├── XVimUtil.h ├── XVimUtil.m ├── XVimVisualEvaluator.h ├── XVimVisualEvaluator.m ├── XVimWindow+Xcode.h ├── XVimWindow+Xcode.m ├── XVimWindow.h ├── XVimWindow.m ├── XVimWindowEvaluator.h ├── XVimWindowEvaluator.m ├── XVimYankEvaluator.h ├── XVimYankEvaluator.m ├── XVimZEvaluator.h ├── XVimZEvaluator.m ├── about.xib └── en.lproj │ └── InfoPlist.strings └── XcodeClasses ├── Xcode4 ├── DVTFoundation.h ├── DVTKit.h ├── IDEFoundation.h ├── IDEKit.h └── IDESourceEditor.h ├── Xcode5 ├── DVTFoundation.h ├── DVTKit.h ├── IDEFoundation.h ├── IDEKit.h └── IDESourceEditor.h ├── Xcode6.0 ├── Applications │ ├── Application │ └── Instruments.app │ │ └── Contents │ │ └── Frameworks │ │ ├── DTBinaryAnalysis.h │ │ ├── DTInstrumentsX.h │ │ ├── DVTInstrumentsFoundation.h │ │ ├── InstrumentsAnalysisCore.h │ │ ├── InstrumentsDTrace.h │ │ ├── InstrumentsKit.h │ │ ├── InstrumentsPlugIn.h │ │ └── RemoteInjection.h ├── Developer │ ├── Library │ │ ├── Frameworks │ │ │ ├── DTPerformanceSession.h │ │ │ ├── InterfaceBuilderKit.h │ │ │ └── SenTestingKit.h │ │ └── PrivateFrameworks │ │ │ ├── CoreSimulator.h │ │ │ ├── IDEBundleInjection.h │ │ │ └── SimulatorKit.h │ ├── Platforms │ │ ├── MacOSX.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ ├── Frameworks │ │ │ │ │ ├── XCPlayground.h │ │ │ │ │ └── XCTest.h │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── DVTPlaygroundCommunication.h │ │ │ │ │ ├── IDEBundleInjection.h │ │ │ │ │ └── PlaygroundLogger.h │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── IDEOSXSupportCore.h │ │ │ │ │ └── IDEOSXSupportUI.h │ │ │ │ └── SDKs │ │ │ │ └── MacOSX10.9.sdk │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AGL.h │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AppKit.h │ │ │ │ ├── AppKitScripting.h │ │ │ │ ├── AppleScriptKit.h │ │ │ │ ├── AppleScriptObjC.h │ │ │ │ ├── AppleShareClientCore.h │ │ │ │ ├── ApplicationServices.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── AudioVideoBridging.h │ │ │ │ ├── Automator.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CalendarStore.h │ │ │ │ ├── Carbon.h │ │ │ │ ├── Cocoa.h │ │ │ │ ├── Collaboration.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMIDIServer.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMediaIO.h │ │ │ │ ├── CoreServices.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── CoreWLAN.h │ │ │ │ ├── CoreWiFi.h │ │ │ │ ├── DVComponentGlue.h │ │ │ │ ├── DVDPlayback.h │ │ │ │ ├── DirectoryService.h │ │ │ │ ├── DiscRecording.h │ │ │ │ ├── DiscRecordingUI.h │ │ │ │ ├── DiskArbitration.h │ │ │ │ ├── DrawSprocket.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── ExceptionHandling.h │ │ │ │ ├── FWAUserLib.h │ │ │ │ ├── ForceFeedback.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GLUT.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── ICADevices.h │ │ │ │ ├── IMServicePlugIn.h │ │ │ │ ├── IOBluetooth.h │ │ │ │ ├── IOBluetoothUI.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── IOSurface.h │ │ │ │ ├── ImageCaptureCore.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── InputMethodKit.h │ │ │ │ ├── InstallerPlugins.h │ │ │ │ ├── InstantMessage.h │ │ │ │ ├── JavaFrameEmbedding.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── JavaVM.h │ │ │ │ ├── Kerberos.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── LDAP.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaLibrary.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── NetFS.h │ │ │ │ ├── OSAKit.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenCL.h │ │ │ │ ├── OpenDirectory.h │ │ │ │ ├── OpenGL.h │ │ │ │ ├── PCSC.h │ │ │ │ ├── PreferencePanes.h │ │ │ │ ├── PubSub.h │ │ │ │ ├── QTKit.h │ │ │ │ ├── Quartz.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── QuickTime.h │ │ │ │ ├── Ruby.h │ │ │ │ ├── RubyCocoa.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── ScreenSaver.h │ │ │ │ ├── Scripting.h │ │ │ │ ├── ScriptingBridge.h │ │ │ │ ├── Security.h │ │ │ │ ├── SecurityFoundation.h │ │ │ │ ├── SecurityInterface.h │ │ │ │ ├── ServiceManagement.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── SyncServices.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── TWAIN.h │ │ │ │ ├── Tcl.h │ │ │ │ ├── Tk.h │ │ │ │ ├── VideoDecodeAcceleration.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ └── WebKit.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── AOSAccounts.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSMigrate.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── AOSUI.h │ │ │ │ ├── AVConference.h │ │ │ │ ├── AVCore.h │ │ │ │ ├── AVFoundationCF.h │ │ │ │ ├── AccessibilityBundles.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── Admin.h │ │ │ │ ├── AirTrafficHost.h │ │ │ │ ├── Altitude.h │ │ │ │ ├── AppContainer.h │ │ │ │ ├── AppSandbox.h │ │ │ │ ├── Apple80211.h │ │ │ │ ├── AppleAppSupport.h │ │ │ │ ├── AppleFSCompression.h │ │ │ │ ├── AppleGVA.h │ │ │ │ ├── AppleGVACore.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── AppleProfileFamily.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── AppleSystemInfo.h │ │ │ │ ├── AppleVA.h │ │ │ │ ├── Assistant.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AssistiveControlSupport.h │ │ │ │ ├── Backup.h │ │ │ │ ├── BezelServices.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookKit.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BrowserKit.h │ │ │ │ ├── ByteRangeLocking.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarAgent.h │ │ │ │ ├── CalendarAgentLink.h │ │ │ │ ├── CalendarDraw.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarPersistence.h │ │ │ │ ├── CalendarUI.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── CharacterPicker.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── ClockMenuExtraPreferences.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── CommerceKit.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonCandidateWindow.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── ConfigProfileHelper.h │ │ │ │ ├── ConfigurationProfiles.h │ │ │ │ ├── ContactsAssistantServices.h │ │ │ │ ├── ContactsAutocomplete.h │ │ │ │ ├── ContactsData.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContactsUI.h │ │ │ │ ├── CoreADI.h │ │ │ │ ├── CoreAUC.h │ │ │ │ ├── CoreAVCHD.h │ │ │ │ ├── CoreChineseEngine.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreDaemon.h │ │ │ │ ├── CoreFP.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreKE.h │ │ │ │ ├── CoreLSKD.h │ │ │ │ ├── CoreLSKDMSE.h │ │ │ │ ├── CoreMediaAuthoring.h │ │ │ │ ├── CoreMediaIOServicesPrivate.h │ │ │ │ ├── CoreMediaPrivate.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CoreProfile.h │ │ │ │ ├── CoreRAID.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CoreWLANKit.h │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ ├── DCERPC.h │ │ │ │ ├── DMNotification.h │ │ │ │ ├── DVD.h │ │ │ │ ├── DashboardClient.h │ │ │ │ ├── DataDetectors.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DebugSymbols.h │ │ │ │ ├── DesktopServicesPriv.h │ │ │ │ ├── DeviceLink.h │ │ │ │ ├── DeviceToDeviceKit.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DigiHubPreference.h │ │ │ │ ├── DirectoryEditor.h │ │ │ │ ├── DirectoryServer.h │ │ │ │ ├── DiskImages.h │ │ │ │ ├── DiskManagement.h │ │ │ │ ├── DisplayServices.h │ │ │ │ ├── EAP8021X.h │ │ │ │ ├── EFILogin.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── EmailAddressing.h │ │ │ │ ├── ExchangeWebServices.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FWAVC.h │ │ │ │ ├── FWAVCPrivate.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FaceCoreLight.h │ │ │ │ ├── FamilyControls.h │ │ │ │ ├── FileSync.h │ │ │ │ ├── FindMyMac.h │ │ │ │ ├── FinderKit.h │ │ │ │ ├── GPUSupport.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoKit.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphKit.h │ │ │ │ ├── GraphicsAppSupport.h │ │ │ │ ├── HDAInterface.h │ │ │ │ ├── HeimODAdmin.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HelpData.h │ │ │ │ ├── IASUtilities.h │ │ │ │ ├── ICANotifications.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSCore.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IDSSystemPreferencesSignIn.h │ │ │ │ ├── IMAP.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ ├── IOAccelerator.h │ │ │ │ ├── IOPlatformPluginFamily.h │ │ │ │ ├── ISSupport.h │ │ │ │ ├── IconServices.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── Install.h │ │ │ │ ├── International.h │ │ │ │ ├── InternetAccounts.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── JavaApplicationLauncher.h │ │ │ │ ├── JavaLaunching.h │ │ │ │ ├── KerberosHelper.h │ │ │ │ ├── Librarian.h │ │ │ │ ├── LibraryRepair.h │ │ │ │ ├── LoginUIKit.h │ │ │ │ ├── Lookup.h │ │ │ │ ├── MDSChannel.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MachineSettings.h │ │ │ │ ├── Mail.h │ │ │ │ ├── MailCore.h │ │ │ │ ├── MailService.h │ │ │ │ ├── MailUI.h │ │ │ │ ├── ManagedClient.h │ │ │ │ ├── Mangrove.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaKit.h │ │ │ │ ├── MediaUI.h │ │ │ │ ├── MessageProtection.h │ │ │ │ ├── MessagesHelperKit.h │ │ │ │ ├── MessagesKit.h │ │ │ │ ├── MobileDevice.h │ │ │ │ ├── MonitorPanel.h │ │ │ │ ├── MultitouchSupport.h │ │ │ │ ├── NetAuth.h │ │ │ │ ├── NetFSServer.h │ │ │ │ ├── NetworkDiagnosticsUI.h │ │ │ │ ├── NetworkMenusCommon.h │ │ │ │ ├── NetworkStatistics.h │ │ │ │ ├── Notes.h │ │ │ │ ├── Noticeboard.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── OpenDirectoryConfig.h │ │ │ │ ├── OpenDirectoryConfigUI.h │ │ │ │ ├── PSNormalizer.h │ │ │ │ ├── PackageKit.h │ │ │ │ ├── PacketFilter.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── PasswordServer.h │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ ├── PhoneNumbers.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlatformHardwareManagement.h │ │ │ │ ├── PodcastProducerCore.h │ │ │ │ ├── PodcastProducerKit.h │ │ │ │ ├── PreferencePanesSupport.h │ │ │ │ ├── PrintingPrivate.h │ │ │ │ ├── ProKit.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RemoteViewServices.h │ │ │ │ ├── Restore.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── SCEP.h │ │ │ │ ├── SMBClient.h │ │ │ │ ├── SPSupport.h │ │ │ │ ├── Safari.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── ScreenReader.h │ │ │ │ ├── ScreenSharing.h │ │ │ │ ├── SecCodeWrapper.h │ │ │ │ ├── SecureNetworking.h │ │ │ │ ├── SecurityTokend.h │ │ │ │ ├── SemanticDocumentManagement.h │ │ │ │ ├── ServerFoundation.h │ │ │ │ ├── ServerInformation.h │ │ │ │ ├── SetupAssistantSupport.h │ │ │ │ ├── ShareKit.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── Shortcut.h │ │ │ │ ├── SleepServices.h │ │ │ │ ├── Slideshows.h │ │ │ │ ├── SocialAppsCore.h │ │ │ │ ├── SocialUI.h │ │ │ │ ├── SoftwareUpdate.h │ │ │ │ ├── SpeechDictionary.h │ │ │ │ ├── SpeechObjects.h │ │ │ │ ├── SpeechRecognitionCore.h │ │ │ │ ├── SpotlightIndex.h │ │ │ │ ├── StoreJavaScript.h │ │ │ │ ├── StoreUI.h │ │ │ │ ├── StoreXPCServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Suggestions.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── Symptoms.h │ │ │ │ ├── SyncServicesUI.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── SystemAdministration.h │ │ │ │ ├── SystemMigration.h │ │ │ │ ├── SystemUIPlugin.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TrustEvaluationAgent.h │ │ │ │ ├── UIRecording.h │ │ │ │ ├── Ubiquity.h │ │ │ │ ├── Uninstall.h │ │ │ │ ├── UniversalAccess.h │ │ │ │ ├── VCXMPP.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoConference.h │ │ │ │ ├── VideoProcessing.h │ │ │ │ ├── ViewBridge.h │ │ │ │ ├── WeatherKit.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebFilterDNS.h │ │ │ │ ├── WebInspector.h │ │ │ │ ├── WebInspectorUI.h │ │ │ │ ├── WebKit2.h │ │ │ │ ├── WhitePages.h │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ ├── WirelessDiagnosticsSupport.h │ │ │ │ ├── XMPPCore.h │ │ │ │ ├── XPCObjects.h │ │ │ │ ├── XPCService.h │ │ │ │ ├── XQuery.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iLifeMediaBrowser.h │ │ │ │ ├── iPod.h │ │ │ │ ├── iPodSync.h │ │ │ │ ├── iTunesAccess.h │ │ │ │ ├── kperf.h │ │ │ │ ├── login.h │ │ │ │ ├── nt.h │ │ │ │ ├── oncrpc.h │ │ │ │ └── vmutils.h │ │ ├── iPhoneOS.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ ├── Frameworks │ │ │ │ │ └── XCTest.h │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── GLToolsExpert.h │ │ │ │ │ ├── GLToolsMobileFoundation.h │ │ │ │ │ ├── GPUToolsMobileFoundation.h │ │ │ │ │ ├── GPUToolsMobileKit.h │ │ │ │ │ └── IDEBundleInjection.h │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── GPUDebuggerMTLSupport.h │ │ │ │ │ └── GPUDebuggeriOSSupport.h │ │ │ │ └── SDKs │ │ │ │ ├── iPhoneOS.sdk │ │ │ │ ├── Developer │ │ │ │ │ └── Library │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ └── SenTestingKit.h │ │ │ │ └── System │ │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── AVFoundation.h │ │ │ │ │ ├── AVKit.h │ │ │ │ │ ├── Accelerate.h │ │ │ │ │ ├── Accounts.h │ │ │ │ │ ├── AdSupport.h │ │ │ │ │ ├── AddressBook.h │ │ │ │ │ ├── AddressBookUI.h │ │ │ │ │ ├── AssetsLibrary.h │ │ │ │ │ ├── AudioToolbox.h │ │ │ │ │ ├── AudioUnit.h │ │ │ │ │ ├── CFNetwork.h │ │ │ │ │ ├── CloudKit.h │ │ │ │ │ ├── CoreAudio.h │ │ │ │ │ ├── CoreAudioKit.h │ │ │ │ │ ├── CoreAuthentication.h │ │ │ │ │ ├── CoreBluetooth.h │ │ │ │ │ ├── CoreData.h │ │ │ │ │ ├── CoreFoundation.h │ │ │ │ │ ├── CoreGraphics.h │ │ │ │ │ ├── CoreImage.h │ │ │ │ │ ├── CoreLocation.h │ │ │ │ │ ├── CoreMIDI.h │ │ │ │ │ ├── CoreMedia.h │ │ │ │ │ ├── CoreMotion.h │ │ │ │ │ ├── CoreTelephony.h │ │ │ │ │ ├── CoreText.h │ │ │ │ │ ├── CoreVideo.h │ │ │ │ │ ├── EventKit.h │ │ │ │ │ ├── EventKitUI.h │ │ │ │ │ ├── ExternalAccessory.h │ │ │ │ │ ├── Foundation.h │ │ │ │ │ ├── GLKit.h │ │ │ │ │ ├── GSS.h │ │ │ │ │ ├── GameController.h │ │ │ │ │ ├── GameKit.h │ │ │ │ │ ├── HealthKit.h │ │ │ │ │ ├── HomeKit.h │ │ │ │ │ ├── IOKit.h │ │ │ │ │ ├── ImageIO.h │ │ │ │ │ ├── JavaScriptCore.h │ │ │ │ │ ├── LocalAuthentication.h │ │ │ │ │ ├── MapKit.h │ │ │ │ │ ├── MediaAccessibility.h │ │ │ │ │ ├── MediaPlayer.h │ │ │ │ │ ├── MediaToolbox.h │ │ │ │ │ ├── MessageUI.h │ │ │ │ │ ├── Metal.h │ │ │ │ │ ├── MobileCoreServices.h │ │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ │ ├── NetworkExtension.h │ │ │ │ │ ├── NewsstandKit.h │ │ │ │ │ ├── NotificationCenter.h │ │ │ │ │ ├── OpenAL.h │ │ │ │ │ ├── OpenGLES.h │ │ │ │ │ ├── PassKit.h │ │ │ │ │ ├── Photos.h │ │ │ │ │ ├── PhotosUI.h │ │ │ │ │ ├── PushKit.h │ │ │ │ │ ├── QuartzCore.h │ │ │ │ │ ├── QuickLook.h │ │ │ │ │ ├── SafariServices.h │ │ │ │ │ ├── SceneKit.h │ │ │ │ │ ├── Security.h │ │ │ │ │ ├── Social.h │ │ │ │ │ ├── SpriteKit.h │ │ │ │ │ ├── StoreKit.h │ │ │ │ │ ├── SystemConfiguration.h │ │ │ │ │ ├── Twitter.h │ │ │ │ │ ├── UIKit.h │ │ │ │ │ ├── VideoToolbox.h │ │ │ │ │ ├── WebKit.h │ │ │ │ │ └── iAd.h │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── ABLE.h │ │ │ │ │ ├── ABLEModel.h │ │ │ │ │ ├── ACTFramework.h │ │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ │ ├── AITTarget.h │ │ │ │ │ ├── AOSKit.h │ │ │ │ │ ├── AOSNotification.h │ │ │ │ │ ├── ATFoundation.h │ │ │ │ │ ├── AXHearingAidSupport.h │ │ │ │ │ ├── AXRuntime.h │ │ │ │ │ ├── Accessibility.h │ │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ │ ├── AccountSettings.h │ │ │ │ │ ├── AccountsDaemon.h │ │ │ │ │ ├── AccountsUI.h │ │ │ │ │ ├── AggregateDictionary.h │ │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ │ ├── AirPlayForCarDisplaySim.h │ │ │ │ │ ├── AirPlayReceiver.h │ │ │ │ │ ├── AirPlaySupport.h │ │ │ │ │ ├── AirPortAssistant.h │ │ │ │ │ ├── AirTraffic.h │ │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ │ ├── AppLaunchStats.h │ │ │ │ │ ├── AppStoreUI.h │ │ │ │ │ ├── AppSupport.h │ │ │ │ │ ├── AppleAccount.h │ │ │ │ │ ├── AppleAccountUI.h │ │ │ │ │ ├── AppleBasebandManager.h │ │ │ │ │ ├── AppleBasebandServices.h │ │ │ │ │ ├── AppleFSCompression.h │ │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ │ ├── AppleJPEG.h │ │ │ │ │ ├── AppleLDAP.h │ │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ │ ├── ApplePushService.h │ │ │ │ │ ├── AppleSRP.h │ │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ │ ├── AppleVXD375Framework.h │ │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ │ ├── AskPermission.h │ │ │ │ │ ├── AssertionServices.h │ │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ │ ├── AssistantServices.h │ │ │ │ │ ├── BTLEAudioController.h │ │ │ │ │ ├── BackBoardServices.h │ │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ │ ├── BaseBoard.h │ │ │ │ │ ├── BiometricKit.h │ │ │ │ │ ├── BiometricKitUI.h │ │ │ │ │ ├── BluetoothManager.h │ │ │ │ │ ├── Bom.h │ │ │ │ │ ├── BookmarkDAV.h │ │ │ │ │ ├── BulletinBoard.h │ │ │ │ │ ├── CPMLBestShim.h │ │ │ │ │ ├── CacheDelete.h │ │ │ │ │ ├── CalDAV.h │ │ │ │ │ ├── Calculate.h │ │ │ │ │ ├── CalendarFoundation.h │ │ │ │ │ ├── CalendarUIKit.h │ │ │ │ │ ├── CallHistory.h │ │ │ │ │ ├── CameraKit.h │ │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ │ ├── Celestial.h │ │ │ │ │ ├── CellularPlanManager.h │ │ │ │ │ ├── CertInfo.h │ │ │ │ │ ├── CertUI.h │ │ │ │ │ ├── ChatKit.h │ │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ │ ├── CloudDocs.h │ │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ │ ├── CloudServices.h │ │ │ │ │ ├── ColorSync.h │ │ │ │ │ ├── CommonAuth.h │ │ │ │ │ ├── CommonUtilities.h │ │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ │ ├── CompassUI.h │ │ │ │ │ ├── Conference.h │ │ │ │ │ ├── ConstantClasses.h │ │ │ │ │ ├── ContentIndex.h │ │ │ │ │ ├── CoreAUC.h │ │ │ │ │ ├── CoreBrightness.h │ │ │ │ │ ├── CoreCapture.h │ │ │ │ │ ├── CoreCaptureClient.h │ │ │ │ │ ├── CoreControl.h │ │ │ │ │ ├── CoreDAV.h │ │ │ │ │ ├── CoreDuet.h │ │ │ │ │ ├── CoreDuetAdmissionControlLog.h │ │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ │ ├── CoreDuetDataParity.h │ │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ │ ├── CoreHAP.h │ │ │ │ │ ├── CoreHandwriting.h │ │ │ │ │ ├── CoreMediaStream.h │ │ │ │ │ ├── CoreMotionCommon.h │ │ │ │ │ ├── CorePDF.h │ │ │ │ │ ├── CorePrediction.h │ │ │ │ │ ├── CoreRC.h │ │ │ │ │ ├── CoreRecents.h │ │ │ │ │ ├── CoreRecognition.h │ │ │ │ │ ├── CoreRoutine.h │ │ │ │ │ ├── CoreSDB.h │ │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ │ ├── CoreSuggestions.h │ │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ │ ├── CoreSurface.h │ │ │ │ │ ├── CoreSurfaceAccelerator.h │ │ │ │ │ ├── CoreSymbolication.h │ │ │ │ │ ├── CoreTelephonyBypass.h │ │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ │ ├── CoreTime.h │ │ │ │ │ ├── CoreUI.h │ │ │ │ │ ├── CoreUtils.h │ │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ │ ├── Crucible.h │ │ │ │ │ ├── DAAPKit.h │ │ │ │ │ ├── DCIMServices.h │ │ │ │ │ ├── DataAccess.h │ │ │ │ │ ├── DataAccessExpress.h │ │ │ │ │ ├── DataAccessUI.h │ │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ │ ├── DataMigration.h │ │ │ │ │ ├── DeviceOMatic.h │ │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ │ ├── DictionaryServices.h │ │ │ │ │ ├── Duet.h │ │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ │ ├── EAFirmwareUpdater.h │ │ │ │ │ ├── EAP8021X.h │ │ │ │ │ ├── EasyConfig.h │ │ │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ │ │ ├── FMF.h │ │ │ │ │ ├── FMFUI.h │ │ │ │ │ ├── FTAWD.h │ │ │ │ │ ├── FTClientServices.h │ │ │ │ │ ├── FTServices.h │ │ │ │ │ ├── FaceCore.h │ │ │ │ │ ├── FactoryTestMac.h │ │ │ │ │ ├── FamilyCircle.h │ │ │ │ │ ├── FamilyNotification.h │ │ │ │ │ ├── FileProvider.h │ │ │ │ │ ├── FindMyDevice.h │ │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ │ ├── FontServices.h │ │ │ │ │ ├── FrontBoard.h │ │ │ │ │ ├── FrontBoardServices.h │ │ │ │ │ ├── GPUCompiler.h │ │ │ │ │ ├── GPUSupport.h │ │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ │ ├── GameCenterUI.h │ │ │ │ │ ├── GameKitServices.h │ │ │ │ │ ├── GenerationalStorage.h │ │ │ │ │ ├── GeoServices.h │ │ │ │ │ ├── GraphicsServices.h │ │ │ │ │ ├── H3ISPServices.h │ │ │ │ │ ├── H4ISPServices.h │ │ │ │ │ ├── H6ISPServices.h │ │ │ │ │ ├── HSAAuthentication.h │ │ │ │ │ ├── HealthDaemon.h │ │ │ │ │ ├── HealthKitUI.h │ │ │ │ │ ├── Heimdal.h │ │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ │ ├── HomeSharing.h │ │ │ │ │ ├── IAP.h │ │ │ │ │ ├── IAPAuthentication.h │ │ │ │ │ ├── IDS.h │ │ │ │ │ ├── IDSFoundation.h │ │ │ │ │ ├── IMAVCore.h │ │ │ │ │ ├── IMCore.h │ │ │ │ │ ├── IMDMessageServices.h │ │ │ │ │ ├── IMDPersistence.h │ │ │ │ │ ├── IMDaemonCore.h │ │ │ │ │ ├── IMFoundation.h │ │ │ │ │ ├── IMTranscoding.h │ │ │ │ │ ├── IMTransferServices.h │ │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ │ ├── IOAccelerator.h │ │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ │ ├── IOSurface.h │ │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ │ ├── ITMLKit.h │ │ │ │ │ ├── ImageCapture.h │ │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ │ ├── InternalPreferences.h │ │ │ │ │ ├── IntlPreferences.h │ │ │ │ │ ├── LanguageModeling.h │ │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ │ ├── LatteRTC.h │ │ │ │ │ ├── LegacyGameKit.h │ │ │ │ │ ├── Librarian.h │ │ │ │ │ ├── MIME.h │ │ │ │ │ ├── MMCS.h │ │ │ │ │ ├── MMCSServices.h │ │ │ │ │ ├── MPUFoundation.h │ │ │ │ │ ├── MTLCompiler.h │ │ │ │ │ ├── MailServices.h │ │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ │ ├── MapsSupport.h │ │ │ │ │ ├── Marco.h │ │ │ │ │ ├── MediaControlSender.h │ │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ │ ├── MediaRemote.h │ │ │ │ │ ├── MediaServices.h │ │ │ │ │ ├── MediaStream.h │ │ │ │ │ ├── Message.h │ │ │ │ │ ├── MessageProtection.h │ │ │ │ │ ├── MessageSupport.h │ │ │ │ │ ├── MobileAccessoryUpdater.h │ │ │ │ │ ├── MobileActivation.h │ │ │ │ │ ├── MobileAsset.h │ │ │ │ │ ├── MobileAssetUpdater.h │ │ │ │ │ ├── MobileBackup.h │ │ │ │ │ ├── MobileBluetooth.h │ │ │ │ │ ├── MobileContainerManager.h │ │ │ │ │ ├── MobileDelete.h │ │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ │ ├── MobileIcons.h │ │ │ │ │ ├── MobileInstallation.h │ │ │ │ │ ├── MobileKeyBag.h │ │ │ │ │ ├── MobileObliteration.h │ │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ │ ├── MobileStorage.h │ │ │ │ │ ├── MobileSync.h │ │ │ │ │ ├── MobileSystemServices.h │ │ │ │ │ ├── MobileTimer.h │ │ │ │ │ ├── MobileWiFi.h │ │ │ │ │ ├── MultitouchSupport.h │ │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ │ ├── MusicLibrary.h │ │ │ │ │ ├── MusicStoreUI.h │ │ │ │ │ ├── MusicUI.h │ │ │ │ │ ├── NCLaunchStats.h │ │ │ │ │ ├── Netrb.h │ │ │ │ │ ├── NetworkStatistics.h │ │ │ │ │ ├── Notes.h │ │ │ │ │ ├── NotificationsUI.h │ │ │ │ │ ├── OAuth.h │ │ │ │ │ ├── OfficeImport.h │ │ │ │ │ ├── OpenCL.h │ │ │ │ │ ├── PacketFilter.h │ │ │ │ │ ├── Parsec.h │ │ │ │ │ ├── PassKitCore.h │ │ │ │ │ ├── PersistentConnection.h │ │ │ │ │ ├── PhotoBoothEffects.h │ │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ │ ├── PhotoLibrary.h │ │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ │ ├── PhotosFormats.h │ │ │ │ │ ├── PhysicsKit.h │ │ │ │ │ ├── PlugInKit.h │ │ │ │ │ ├── PowerLog.h │ │ │ │ │ ├── PowerlogControl.h │ │ │ │ │ ├── PowerlogCore.h │ │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ │ ├── Preferences.h │ │ │ │ │ ├── PrintKit.h │ │ │ │ │ ├── ProgressUI.h │ │ │ │ │ ├── ProofReader.h │ │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ │ ├── Quagga.h │ │ │ │ │ ├── RTCReporting.h │ │ │ │ │ ├── RadioUI.h │ │ │ │ │ ├── RemoteUI.h │ │ │ │ │ ├── ResponseKit.h │ │ │ │ │ ├── SAObjects.h │ │ │ │ │ ├── ScreenReaderBrailleDriver.h │ │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ │ ├── ScreenReaderOutput.h │ │ │ │ │ ├── ScreenReaderOutputServer.h │ │ │ │ │ ├── Search.h │ │ │ │ │ ├── SecureNetworking.h │ │ │ │ │ ├── ServiceManagement.h │ │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ │ ├── Sharing.h │ │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ │ ├── SplashBoard.h │ │ │ │ │ ├── SportsTrainer.h │ │ │ │ │ ├── SportsVoices.h │ │ │ │ │ ├── SportsWorkout.h │ │ │ │ │ ├── Spotlight.h │ │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ │ ├── SpringBoardServices.h │ │ │ │ │ ├── SpringBoardUI.h │ │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ │ ├── Stocks.h │ │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ │ ├── StoreKitUI.h │ │ │ │ │ ├── StoreServices.h │ │ │ │ │ ├── StreamingZip.h │ │ │ │ │ ├── Symbolication.h │ │ │ │ │ ├── Symptoms.h │ │ │ │ │ ├── SyncedDefaults.h │ │ │ │ │ ├── TCC.h │ │ │ │ │ ├── TelephonyUI.h │ │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ │ ├── TextInput.h │ │ │ │ │ ├── TextToSpeech.h │ │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ │ ├── Tips.h │ │ │ │ │ ├── ToneKit.h │ │ │ │ │ ├── ToneLibrary.h │ │ │ │ │ ├── TouchRemote.h │ │ │ │ │ ├── UIAccessibility.h │ │ │ │ │ ├── UIFoundation.h │ │ │ │ │ ├── Ubiquity.h │ │ │ │ │ ├── UserFS.h │ │ │ │ │ ├── VPNUtilities.h │ │ │ │ │ ├── VUSocialUpload.h │ │ │ │ │ ├── VectorKit.h │ │ │ │ │ ├── VideoProcessing.h │ │ │ │ │ ├── VideoUpload.h │ │ │ │ │ ├── VisualAlert.h │ │ │ │ │ ├── VisualVoicemail.h │ │ │ │ │ ├── VoiceMemos.h │ │ │ │ │ ├── VoiceServices.h │ │ │ │ │ ├── VoiceTrigger.h │ │ │ │ │ ├── VoicemailStore.h │ │ │ │ │ ├── Weather.h │ │ │ │ │ ├── WebApp.h │ │ │ │ │ ├── WebBookmarks.h │ │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ │ ├── WebCore.h │ │ │ │ │ ├── WebKitLegacy.h │ │ │ │ │ ├── WebUI.h │ │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ │ ├── WirelessProximity.h │ │ │ │ │ ├── XPCKit.h │ │ │ │ │ ├── XPCObjects.h │ │ │ │ │ ├── XPCService.h │ │ │ │ │ ├── YouTube.h │ │ │ │ │ ├── iAdCore.h │ │ │ │ │ ├── iAdDeveloper.h │ │ │ │ │ ├── iAdServices.h │ │ │ │ │ ├── iCalendar.h │ │ │ │ │ ├── iCloudNotification.h │ │ │ │ │ ├── iLifeSlideshow.h │ │ │ │ │ ├── iOSDiagnosticsSupport.h │ │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ │ ├── iTunesStore.h │ │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ │ ├── iWorkImport.h │ │ │ │ │ ├── kperf.h │ │ │ │ │ ├── kperfdata.h │ │ │ │ │ └── oncrpc.h │ │ │ │ └── iPhoneOS8.0.sdk │ │ │ │ ├── Developer │ │ │ │ └── Library │ │ │ │ │ └── Frameworks │ │ │ │ │ └── SenTestingKit.h │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AdSupport.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AddressBookUI.h │ │ │ │ ├── AssetsLibrary.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── CoreAuthentication.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventKitUI.h │ │ │ │ ├── ExternalAccessory.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaPlayer.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── MessageUI.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NewsstandKit.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenGLES.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PhotosUI.h │ │ │ │ ├── PushKit.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── Twitter.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WebKit.h │ │ │ │ └── iAd.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── ABLE.h │ │ │ │ ├── ABLEModel.h │ │ │ │ ├── ACTFramework.h │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ ├── AITTarget.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── ATFoundation.h │ │ │ │ ├── AXHearingAidSupport.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountSettings.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirPlayForCarDisplaySim.h │ │ │ │ ├── AirPlayReceiver.h │ │ │ │ ├── AirPlaySupport.h │ │ │ │ ├── AirPortAssistant.h │ │ │ │ ├── AirTraffic.h │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ ├── AppLaunchStats.h │ │ │ │ ├── AppStoreUI.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleAccountUI.h │ │ │ │ ├── AppleBasebandManager.h │ │ │ │ ├── AppleBasebandServices.h │ │ │ │ ├── AppleFSCompression.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ ├── AppleVXD375Framework.h │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ ├── AskPermission.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BiometricKit.h │ │ │ │ ├── BiometricKitUI.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── Celestial.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ ├── CompassUI.h │ │ │ │ ├── Conference.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreAUC.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreCapture.h │ │ │ │ ├── CoreCaptureClient.h │ │ │ │ ├── CoreControl.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreDuet.h │ │ │ │ ├── CoreDuetAdmissionControlLog.h │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ ├── CoreDuetDataParity.h │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreMotionCommon.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRC.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSuggestions.h │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ ├── CoreSurface.h │ │ │ │ ├── CoreSurfaceAccelerator.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreTelephonyBypass.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ ├── Crucible.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataAccessUI.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DeviceOMatic.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── Duet.h │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ ├── EAFirmwareUpdater.h │ │ │ │ ├── EAP8021X.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FMFUI.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FactoryTestMac.h │ │ │ │ ├── FamilyCircle.h │ │ │ │ ├── FamilyNotification.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── GPUCompiler.h │ │ │ │ ├── GPUSupport.h │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ ├── GameCenterUI.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── H3ISPServices.h │ │ │ │ ├── H4ISPServices.h │ │ │ │ ├── H6ISPServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitUI.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IAPAuthentication.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ ├── IOAccelerator.h │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ ├── IOSurface.h │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ ├── ITMLKit.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── InternalPreferences.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── LatteRTC.h │ │ │ │ ├── LegacyGameKit.h │ │ │ │ ├── Librarian.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MTLCompiler.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageProtection.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MobileAccessoryUpdater.h │ │ │ │ ├── MobileActivation.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileAssetUpdater.h │ │ │ │ ├── MobileBackup.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDelete.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileKeyBag.h │ │ │ │ ├── MobileObliteration.h │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ ├── MobileStorage.h │ │ │ │ ├── MobileSync.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MobileWiFi.h │ │ │ │ ├── MultitouchSupport.h │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── MusicStoreUI.h │ │ │ │ ├── MusicUI.h │ │ │ │ ├── NCLaunchStats.h │ │ │ │ ├── Netrb.h │ │ │ │ ├── NetworkStatistics.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── OpenCL.h │ │ │ │ ├── PacketFilter.h │ │ │ │ ├── Parsec.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoBoothEffects.h │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ ├── PhotoLibrary.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── PowerLog.h │ │ │ │ ├── PowerlogControl.h │ │ │ │ ├── PowerlogCore.h │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProgressUI.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RadioUI.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── ScreenReaderBrailleDriver.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── ScreenReaderOutput.h │ │ │ │ ├── ScreenReaderOutputServer.h │ │ │ │ ├── Search.h │ │ │ │ ├── SecureNetworking.h │ │ │ │ ├── ServiceManagement.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── SportsTrainer.h │ │ │ │ ├── SportsVoices.h │ │ │ │ ├── SportsWorkout.h │ │ │ │ ├── Spotlight.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── Stocks.h │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ ├── StoreKitUI.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── Symptoms.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ ├── Tips.h │ │ │ │ ├── ToneKit.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── TouchRemote.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── Ubiquity.h │ │ │ │ ├── UserFS.h │ │ │ │ ├── VPNUtilities.h │ │ │ │ ├── VUSocialUpload.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoProcessing.h │ │ │ │ ├── VideoUpload.h │ │ │ │ ├── VisualAlert.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceMemos.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoiceTrigger.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── Weather.h │ │ │ │ ├── WebApp.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WebUI.h │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── WirelessProximity.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── XPCObjects.h │ │ │ │ ├── XPCService.h │ │ │ │ ├── YouTube.h │ │ │ │ ├── iAdCore.h │ │ │ │ ├── iAdDeveloper.h │ │ │ │ ├── iAdServices.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iCloudNotification.h │ │ │ │ ├── iLifeSlideshow.h │ │ │ │ ├── iOSDiagnosticsSupport.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ ├── iWorkImport.h │ │ │ │ ├── kperf.h │ │ │ │ ├── kperfdata.h │ │ │ │ └── oncrpc.h │ │ └── iPhoneSimulator.platform │ │ │ └── Developer │ │ │ ├── Library │ │ │ ├── Frameworks │ │ │ │ └── XCTest.h │ │ │ ├── PrivateFrameworks │ │ │ │ ├── DVTPlaygroundCommunication.h │ │ │ │ ├── IBAutolayoutFoundation.h │ │ │ │ ├── IBFoundation.h │ │ │ │ ├── IDEBundleInjection.h │ │ │ │ ├── PlaygroundLogger.h │ │ │ │ └── XCPlayground.h │ │ │ └── Xcode │ │ │ │ └── PrivatePlugIns │ │ │ │ ├── IDEInterfaceBuilderCocoaTouchIntegration.h │ │ │ │ └── iCloudSupportTouch.h │ │ │ └── SDKs │ │ │ ├── iPhoneSimulator.sdk │ │ │ ├── Developer │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ └── SenTestingKit.h │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── DTDDISupport.h │ │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ │ ├── RemoteInjection.h │ │ │ │ │ ├── ScriptProcessor.h │ │ │ │ │ └── UIAutomation.h │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AdSupport.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AddressBookUI.h │ │ │ │ ├── ApplicationServices.h │ │ │ │ ├── AssetsLibrary.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAuthentication.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventKitUI.h │ │ │ │ ├── ExternalAccessory.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaPlayer.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── MessageUI.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NewsstandKit.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenGLES.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PhotosUI.h │ │ │ │ ├── PushKit.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── Twitter.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WebKit.h │ │ │ │ └── iAd.h │ │ │ │ ├── LocationBundles │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── Parsec.h │ │ │ │ └── iAdCore.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── AITTarget.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── AXHearingAidSupport.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountSettings.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirPlaySupport.h │ │ │ │ ├── AppStoreUI.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleAccountUI.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── Celestial.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ ├── Conference.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSuggestions.h │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataAccessUI.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FMFUI.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ ├── GameCenterUI.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitUI.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── ITMLKit.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── InternalPreferences.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── LegacyGameKit.h │ │ │ │ ├── Librarian.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaControlReceiver.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDevice.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileStorage.h │ │ │ │ ├── MobileSync.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── MusicStoreUI.h │ │ │ │ ├── MusicUI.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── Parsec.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ ├── PhotoLibrary.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── Radio.h │ │ │ │ ├── RadioUI.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── Search.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SimulatorClient.h │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── Spotlight.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ ├── StoreKitUI.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ToneKit.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── TouchRemote.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── Ubiquity.h │ │ │ │ ├── VUSocialUpload.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoUpload.h │ │ │ │ ├── VisualAlert.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceMemos.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── WebApp.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebKit.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WebUI.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── XPCObjects.h │ │ │ │ ├── iAdCore.h │ │ │ │ ├── iAdDeveloper.h │ │ │ │ ├── iAdServices.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ └── iWorkImport.h │ │ │ └── iPhoneSimulator8.0.sdk │ │ │ ├── Developer │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ └── SenTestingKit.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── DTDDISupport.h │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ ├── RemoteInjection.h │ │ │ │ ├── ScriptProcessor.h │ │ │ │ └── UIAutomation.h │ │ │ └── System │ │ │ └── Library │ │ │ ├── Frameworks │ │ │ ├── AVFoundation.h │ │ │ ├── AVKit.h │ │ │ ├── Accelerate.h │ │ │ ├── Accounts.h │ │ │ ├── AdSupport.h │ │ │ ├── AddressBook.h │ │ │ ├── AddressBookUI.h │ │ │ ├── ApplicationServices.h │ │ │ ├── AssetsLibrary.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── CFNetwork.h │ │ │ ├── CloudKit.h │ │ │ ├── CoreAudio.h │ │ │ ├── CoreAuthentication.h │ │ │ ├── CoreBluetooth.h │ │ │ ├── CoreData.h │ │ │ ├── CoreFoundation.h │ │ │ ├── CoreGraphics.h │ │ │ ├── CoreImage.h │ │ │ ├── CoreLocation.h │ │ │ ├── CoreMIDI.h │ │ │ ├── CoreMedia.h │ │ │ ├── CoreMotion.h │ │ │ ├── CoreTelephony.h │ │ │ ├── CoreText.h │ │ │ ├── CoreVideo.h │ │ │ ├── EventKit.h │ │ │ ├── EventKitUI.h │ │ │ ├── ExternalAccessory.h │ │ │ ├── Foundation.h │ │ │ ├── GLKit.h │ │ │ ├── GSS.h │ │ │ ├── GameController.h │ │ │ ├── GameKit.h │ │ │ ├── HealthKit.h │ │ │ ├── HomeKit.h │ │ │ ├── IOKit.h │ │ │ ├── ImageIO.h │ │ │ ├── JavaScriptCore.h │ │ │ ├── LocalAuthentication.h │ │ │ ├── MapKit.h │ │ │ ├── MediaAccessibility.h │ │ │ ├── MediaPlayer.h │ │ │ ├── MediaToolbox.h │ │ │ ├── MessageUI.h │ │ │ ├── Metal.h │ │ │ ├── MobileCoreServices.h │ │ │ ├── MultipeerConnectivity.h │ │ │ ├── NetworkExtension.h │ │ │ ├── NewsstandKit.h │ │ │ ├── NotificationCenter.h │ │ │ ├── NotificationsUI.h │ │ │ ├── OpenAL.h │ │ │ ├── OpenGLES.h │ │ │ ├── PassKit.h │ │ │ ├── Photos.h │ │ │ ├── PhotosUI.h │ │ │ ├── PushKit.h │ │ │ ├── QuartzCore.h │ │ │ ├── QuickLook.h │ │ │ ├── SafariServices.h │ │ │ ├── SceneKit.h │ │ │ ├── Security.h │ │ │ ├── Social.h │ │ │ ├── SpriteKit.h │ │ │ ├── StoreKit.h │ │ │ ├── System.h │ │ │ ├── SystemConfiguration.h │ │ │ ├── Twitter.h │ │ │ ├── UIKit.h │ │ │ ├── VideoToolbox.h │ │ │ ├── WebKit.h │ │ │ └── iAd.h │ │ │ ├── LocationBundles │ │ │ ├── BulletinBoard.h │ │ │ ├── FMF.h │ │ │ ├── FindMyDevice.h │ │ │ ├── Parsec.h │ │ │ └── iAdCore.h │ │ │ └── PrivateFrameworks │ │ │ ├── AITTarget.h │ │ │ ├── AOSKit.h │ │ │ ├── AOSNotification.h │ │ │ ├── AXHearingAidSupport.h │ │ │ ├── AXRuntime.h │ │ │ ├── Accessibility.h │ │ │ ├── AccessibilityUtilities.h │ │ │ ├── AccountSettings.h │ │ │ ├── AccountsDaemon.h │ │ │ ├── AccountsUI.h │ │ │ ├── AggregateDictionary.h │ │ │ ├── AggregateDictionaryHistory.h │ │ │ ├── AirPlaySupport.h │ │ │ ├── AppStoreUI.h │ │ │ ├── AppSupport.h │ │ │ ├── AppleAccount.h │ │ │ ├── AppleAccountUI.h │ │ │ ├── AppleIDAuthSupport.h │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ ├── AppleJPEG.h │ │ │ ├── AppleLDAP.h │ │ │ ├── ApplePushService.h │ │ │ ├── AppleSRP.h │ │ │ ├── AssertionServices.h │ │ │ ├── AssetsLibraryServices.h │ │ │ ├── AssistantServices.h │ │ │ ├── BTLEAudioController.h │ │ │ ├── BackBoardServices.h │ │ │ ├── BaseBoard.h │ │ │ ├── BluetoothManager.h │ │ │ ├── Bom.h │ │ │ ├── BookmarkDAV.h │ │ │ ├── BulletinBoard.h │ │ │ ├── CPMLBestShim.h │ │ │ ├── CalDAV.h │ │ │ ├── Calculate.h │ │ │ ├── CalendarFoundation.h │ │ │ ├── CalendarUIKit.h │ │ │ ├── CallHistory.h │ │ │ ├── CameraKit.h │ │ │ ├── CaptiveNetwork.h │ │ │ ├── Celestial.h │ │ │ ├── CellularPlanManager.h │ │ │ ├── CertInfo.h │ │ │ ├── CertUI.h │ │ │ ├── ChatKit.h │ │ │ ├── ChunkingLibrary.h │ │ │ ├── CloudDocs.h │ │ │ ├── CloudDocsDaemon.h │ │ │ ├── CloudKitDaemon.h │ │ │ ├── CloudPhotoLibrary.h │ │ │ ├── CloudServices.h │ │ │ ├── ColorSync.h │ │ │ ├── CommonAuth.h │ │ │ ├── CommonUtilities.h │ │ │ ├── CommunicationsFilter.h │ │ │ ├── CommunicationsSetupUI.h │ │ │ ├── Conference.h │ │ │ ├── ConstantClasses.h │ │ │ ├── ContentIndex.h │ │ │ ├── CoreBrightness.h │ │ │ ├── CoreDAV.h │ │ │ ├── CoreHAP.h │ │ │ ├── CoreHandwriting.h │ │ │ ├── CoreMediaStream.h │ │ │ ├── CorePDF.h │ │ │ ├── CorePrediction.h │ │ │ ├── CoreRecents.h │ │ │ ├── CoreRoutine.h │ │ │ ├── CoreSDB.h │ │ │ ├── CoreServicesInternal.h │ │ │ ├── CoreSuggestions.h │ │ │ ├── CoreSuggestionsInternals.h │ │ │ ├── CoreSymbolication.h │ │ │ ├── CoreThemeDefinition.h │ │ │ ├── CoreTime.h │ │ │ ├── CoreUI.h │ │ │ ├── CoreUtils.h │ │ │ ├── DAAPKit.h │ │ │ ├── DCIMServices.h │ │ │ ├── DataAccess.h │ │ │ ├── DataAccessExpress.h │ │ │ ├── DataAccessUI.h │ │ │ ├── DataDetectorsCore.h │ │ │ ├── DataDetectorsUI.h │ │ │ ├── DataMigration.h │ │ │ ├── DiagnosticLogCollection.h │ │ │ ├── DictionaryServices.h │ │ │ ├── EasyConfig.h │ │ │ ├── FMF.h │ │ │ ├── FMFUI.h │ │ │ ├── FTAWD.h │ │ │ ├── FTClientServices.h │ │ │ ├── FTServices.h │ │ │ ├── FaceCore.h │ │ │ ├── FileProvider.h │ │ │ ├── FindMyDevice.h │ │ │ ├── FindMyDeviceUI.h │ │ │ ├── FontServices.h │ │ │ ├── FrontBoard.h │ │ │ ├── FrontBoardServices.h │ │ │ ├── GameCenterFoundation.h │ │ │ ├── GameCenterPrivateUI.h │ │ │ ├── GameCenterUI.h │ │ │ ├── GameKitServices.h │ │ │ ├── GenerationalStorage.h │ │ │ ├── GeoServices.h │ │ │ ├── GraphicsServices.h │ │ │ ├── HSAAuthentication.h │ │ │ ├── HealthDaemon.h │ │ │ ├── HealthKitUI.h │ │ │ ├── Heimdal.h │ │ │ ├── HomeKitDaemon.h │ │ │ ├── HomeSharing.h │ │ │ ├── IAP.h │ │ │ ├── IDS.h │ │ │ ├── IDSFoundation.h │ │ │ ├── IMAVCore.h │ │ │ ├── IMCore.h │ │ │ ├── IMDMessageServices.h │ │ │ ├── IMDPersistence.h │ │ │ ├── IMDaemonCore.h │ │ │ ├── IMFoundation.h │ │ │ ├── IMTranscoding.h │ │ │ ├── IMTransferServices.h │ │ │ ├── ITMLKit.h │ │ │ ├── ImageCapture.h │ │ │ ├── IncomingCallFilter.h │ │ │ ├── InternalPreferences.h │ │ │ ├── IntlPreferences.h │ │ │ ├── LanguageModeling.h │ │ │ ├── LatentSemanticMapping.h │ │ │ ├── LegacyGameKit.h │ │ │ ├── Librarian.h │ │ │ ├── MIME.h │ │ │ ├── MMCS.h │ │ │ ├── MMCSServices.h │ │ │ ├── MPUFoundation.h │ │ │ ├── MailServices.h │ │ │ ├── ManagedConfiguration.h │ │ │ ├── MapsSupport.h │ │ │ ├── Marco.h │ │ │ ├── MediaControlReceiver.h │ │ │ ├── MediaControlSender.h │ │ │ ├── MediaPlayerUI.h │ │ │ ├── MediaRemote.h │ │ │ ├── MediaServices.h │ │ │ ├── MediaStream.h │ │ │ ├── Message.h │ │ │ ├── MessageSupport.h │ │ │ ├── MobileAsset.h │ │ │ ├── MobileBluetooth.h │ │ │ ├── MobileContainerManager.h │ │ │ ├── MobileDevice.h │ │ │ ├── MobileDeviceLink.h │ │ │ ├── MobileIcons.h │ │ │ ├── MobileInstallation.h │ │ │ ├── MobileStorage.h │ │ │ ├── MobileSync.h │ │ │ ├── MobileSystemServices.h │ │ │ ├── MobileTimer.h │ │ │ ├── MusicCarDisplayUI.h │ │ │ ├── MusicLibrary.h │ │ │ ├── MusicStoreUI.h │ │ │ ├── MusicUI.h │ │ │ ├── Notes.h │ │ │ ├── NotificationsUI.h │ │ │ ├── OAuth.h │ │ │ ├── OfficeImport.h │ │ │ ├── Parsec.h │ │ │ ├── PassKitCore.h │ │ │ ├── PersistentConnection.h │ │ │ ├── PhotoEditSupport.h │ │ │ ├── PhotoLibrary.h │ │ │ ├── PhotoLibraryServices.h │ │ │ ├── PhotosFormats.h │ │ │ ├── PhysicsKit.h │ │ │ ├── PlugInKit.h │ │ │ ├── Preferences.h │ │ │ ├── PrintKit.h │ │ │ ├── ProofReader.h │ │ │ ├── ProtectedCloudStorage.h │ │ │ ├── ProtocolBuffer.h │ │ │ ├── RTCReporting.h │ │ │ ├── Radio.h │ │ │ ├── RadioUI.h │ │ │ ├── RemoteUI.h │ │ │ ├── ResponseKit.h │ │ │ ├── SAObjects.h │ │ │ ├── ScreenReaderCore.h │ │ │ ├── Search.h │ │ │ ├── SharedWebCredentials.h │ │ │ ├── Sharing.h │ │ │ ├── SimulatorClient.h │ │ │ ├── SoftwareUpdateServices.h │ │ │ ├── SplashBoard.h │ │ │ ├── Spotlight.h │ │ │ ├── SpringBoardFoundation.h │ │ │ ├── SpringBoardServices.h │ │ │ ├── SpringBoardUI.h │ │ │ ├── SpringBoardUIServices.h │ │ │ ├── StoreBookkeeper.h │ │ │ ├── StoreBookkeeperClient.h │ │ │ ├── StoreKitUI.h │ │ │ ├── StoreServices.h │ │ │ ├── StreamingZip.h │ │ │ ├── Symbolication.h │ │ │ ├── SyncedDefaults.h │ │ │ ├── TCC.h │ │ │ ├── TelephonyUI.h │ │ │ ├── TelephonyUtilities.h │ │ │ ├── TextInput.h │ │ │ ├── TextToSpeech.h │ │ │ ├── ToneKit.h │ │ │ ├── ToneLibrary.h │ │ │ ├── TouchRemote.h │ │ │ ├── UIAccessibility.h │ │ │ ├── UIFoundation.h │ │ │ ├── Ubiquity.h │ │ │ ├── VUSocialUpload.h │ │ │ ├── VectorKit.h │ │ │ ├── VideoUpload.h │ │ │ ├── VisualAlert.h │ │ │ ├── VisualVoicemail.h │ │ │ ├── VoiceMemos.h │ │ │ ├── VoiceServices.h │ │ │ ├── VoicemailStore.h │ │ │ ├── WebApp.h │ │ │ ├── WebBookmarks.h │ │ │ ├── WebContentAnalysis.h │ │ │ ├── WebCore.h │ │ │ ├── WebKit.h │ │ │ ├── WebKitLegacy.h │ │ │ ├── WebUI.h │ │ │ ├── WirelessDiagnostics.h │ │ │ ├── XPCKit.h │ │ │ ├── XPCObjects.h │ │ │ ├── iAdCore.h │ │ │ ├── iAdDeveloper.h │ │ │ ├── iAdServices.h │ │ │ ├── iCalendar.h │ │ │ ├── iPhotoMigrationSupport.h │ │ │ ├── iTunesStore.h │ │ │ ├── iTunesStoreUI.h │ │ │ └── iWorkImport.h │ └── Toolchains │ │ └── XcodeDefault.xctoolchain │ │ └── usr │ │ └── lib │ │ └── sourcekitd.h ├── Frameworks │ ├── IBAutolayoutFoundation.h │ ├── IBFoundation.h │ ├── IDEFoundation.h │ └── IDEKit.h ├── OtherFrameworks │ ├── DevToolsCParsing.h │ ├── DevToolsCore.h │ ├── DevToolsFoundation.h │ ├── DevToolsInterface.h │ ├── DevToolsKit.h │ ├── DevToolsRemoteClient.h │ ├── DevToolsSupport.h │ ├── DocSetAccess.h │ ├── DocSetManagement.h │ ├── DocSetViewing.h │ ├── JavaKit.h │ ├── XDBase.h │ ├── XDInterface.h │ └── XcodeEdit.h ├── PlugIns │ ├── DebuggerFoundation.h │ ├── DebuggerKit.h │ ├── DebuggerLLDB.h │ ├── DebuggerLLDBService.h │ ├── DebuggerUI.h │ ├── GPUDebuggerFoundation.h │ ├── GPUDebuggerKit.h │ ├── GPURenderTargetEditor.h │ ├── GPUTraceDebugger.h │ ├── GPUTraceDebuggerUI.h │ ├── HexEditor.h │ ├── IBLanguageSupport.h │ ├── IDEAppleScriptCore.h │ ├── IDEAppleScriptEditor.h │ ├── IDEContinuousIntegration.h │ ├── IDEDevkitRefactoring.h │ ├── IDEDocViewer.h │ ├── IDEGit.h │ ├── IDEIODebugGaugesCore.h │ ├── IDEIODebugGaugesUI.h │ ├── IDEInstrumentsService.h │ ├── IDEInterfaceBuilderCocoaIntegration.h │ ├── IDEInterfaceBuilderKit.h │ ├── IDELanguageSupportCore.h │ ├── IDELanguageSupportUI.h │ ├── IDEModelEditor.h │ ├── IDEModelFoundation.h │ ├── IDEPDFViewer.h │ ├── IDEQuickHelp.h │ ├── IDEQuickLookEditor.h │ ├── IDERTFEditor.h │ ├── IDESceneKitEditor.h │ ├── IDESourceEditor.h │ ├── IDESpriteKitParticleEditor.h │ ├── IDEStandardExecutionActionsCore.h │ ├── IDEStandardExecutionActionsUI.h │ ├── IDESubversion.h │ ├── IDEiOSDebugger.h │ ├── IDEiOSProjectEditor.h │ ├── IDEiOSSupportCore.h │ ├── IDEiPhoneSupport.h │ ├── PlistEditor.h │ ├── ScriptingDefinitionEditor.h │ ├── Xcode3Core.h │ ├── Xcode3UI.h │ └── iCloudSupport.h └── SharedFrameworks │ ├── CoreProfileDT.h │ ├── CoreSymbolicationDT.h │ ├── DADocSetAccess.h │ ├── DADocSetManagement.h │ ├── DTDeviceKit.h │ ├── DTDeviceKitBase.h │ ├── DTGraphKit.h │ ├── DTXConnectionServices.h │ ├── DVTDeveloperModeHelper.h │ ├── DVTFoundation.h │ ├── DVTKit.h │ ├── DVTServiceKit.h │ ├── DVTSourceControl.h │ ├── DVTiPhoneSimulatorRemoteClient.h │ ├── DebugSymbolsDT.h │ ├── GLTools.h │ ├── GLToolsAnalysisEngine.h │ ├── GLToolsCore.h │ ├── GLToolsInterface.h │ ├── GLToolsServices.h │ ├── GLToolsShaderProfiler.h │ ├── GPUTools.h │ ├── GPUToolsCore.h │ ├── GPUToolsInterface.h │ ├── GPUToolsServices.h │ ├── GPUToolsShaderProfiler.h │ ├── HexFiend.h │ ├── LLDB.h │ ├── MTLTools.h │ ├── MTLToolsAnalysisEngine.h │ ├── MTLToolsCore.h │ ├── MTLToolsServices.h │ ├── MTLToolsShaderProfiler.h │ ├── PhysicsKit.h │ ├── SceneKit.h │ ├── SpriteKit.h │ ├── SymbolicationDT.h │ ├── XCSCore.h │ ├── XCSUI.h │ └── kperfdataDT.h ├── Xcode7.0 ├── Applications │ ├── Application │ └── Instruments.app │ │ └── Contents │ │ └── Frameworks │ │ ├── DTBinaryAnalysis.h │ │ ├── DTInstrumentsX.h │ │ ├── InstrumentsAnalysisCore.h │ │ ├── InstrumentsDTrace.h │ │ ├── InstrumentsKit.h │ │ └── InstrumentsPlugIn.h ├── Developer │ ├── Library │ │ ├── Frameworks │ │ │ ├── DTPerformanceSession.h │ │ │ └── InterfaceBuilderKit.h │ │ ├── MigrationFrameworks │ │ │ └── SenTestingKit.h │ │ └── PrivateFrameworks │ │ │ ├── CoreSimulator.h │ │ │ └── SimulatorKit.h │ ├── Platforms │ │ ├── MacOSX.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ ├── Frameworks │ │ │ │ │ ├── XCPlayground.h │ │ │ │ │ └── XCTest.h │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── DVTPlaygroundCommunication.h │ │ │ │ │ ├── GPUToolsDesktopFoundation.h │ │ │ │ │ ├── IDEBundleInjection.h │ │ │ │ │ └── PlaygroundLogger.h │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── GPUDebuggerOSXSupport.h │ │ │ │ │ ├── IDEOSXSupportCore.h │ │ │ │ │ └── IDEOSXSupportUI.h │ │ │ │ └── SDKs │ │ │ │ └── MacOSX10.11.sdk │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AGL.h │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AppKit.h │ │ │ │ ├── AppKitScripting.h │ │ │ │ ├── AppleScriptKit.h │ │ │ │ ├── AppleScriptObjC.h │ │ │ │ ├── ApplicationServices.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── AudioVideoBridging.h │ │ │ │ ├── Automator.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CalendarStore.h │ │ │ │ ├── Carbon.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── Cocoa.h │ │ │ │ ├── Collaboration.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── ContactsUI.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMIDIServer.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMediaIO.h │ │ │ │ ├── CoreServices.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── CoreWLAN.h │ │ │ │ ├── CryptoTokenKit.h │ │ │ │ ├── DVComponentGlue.h │ │ │ │ ├── DVDPlayback.h │ │ │ │ ├── DirectoryService.h │ │ │ │ ├── DiscRecording.h │ │ │ │ ├── DiscRecordingUI.h │ │ │ │ ├── DiskArbitration.h │ │ │ │ ├── DrawSprocket.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── ExceptionHandling.h │ │ │ │ ├── FWAUserLib.h │ │ │ │ ├── FinderSync.h │ │ │ │ ├── ForceFeedback.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GLUT.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── GameplayKit.h │ │ │ │ ├── Hypervisor.h │ │ │ │ ├── ICADevices.h │ │ │ │ ├── IMServicePlugIn.h │ │ │ │ ├── IOBluetooth.h │ │ │ │ ├── IOBluetoothUI.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── IOSurface.h │ │ │ │ ├── ImageCaptureCore.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── InputMethodKit.h │ │ │ │ ├── InstallerPlugins.h │ │ │ │ ├── InstantMessage.h │ │ │ │ ├── JavaFrameEmbedding.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── JavaVM.h │ │ │ │ ├── Kerberos.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── LDAP.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaLibrary.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── Message.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MetalKit.h │ │ │ │ ├── ModelIO.h │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ ├── NetFS.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── OSAKit.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenCL.h │ │ │ │ ├── OpenDirectory.h │ │ │ │ ├── OpenGL.h │ │ │ │ ├── PCSC.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PhotosUI.h │ │ │ │ ├── PreferencePanes.h │ │ │ │ ├── PubSub.h │ │ │ │ ├── Python.h │ │ │ │ ├── QTKit.h │ │ │ │ ├── Quartz.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── QuickTime.h │ │ │ │ ├── Ruby.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── ScreenSaver.h │ │ │ │ ├── Scripting.h │ │ │ │ ├── ScriptingBridge.h │ │ │ │ ├── Security.h │ │ │ │ ├── SecurityFoundation.h │ │ │ │ ├── SecurityInterface.h │ │ │ │ ├── ServiceManagement.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── SyncServices.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── TWAIN.h │ │ │ │ ├── Tcl.h │ │ │ │ ├── Tk.h │ │ │ │ ├── VideoDecodeAcceleration.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WebKit.h │ │ │ │ ├── vecLib.h │ │ │ │ └── vmnet.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── ACDEClient.h │ │ │ │ ├── AOSAccounts.h │ │ │ │ ├── AOSAccountsLite.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSMigrate.h │ │ │ │ ├── AOSUI.h │ │ │ │ ├── AOSUILite.h │ │ │ │ ├── APTransport.h │ │ │ │ ├── AVConference.h │ │ │ │ ├── AVFoundationCF.h │ │ │ │ ├── AccessibilityBundles.h │ │ │ │ ├── AccessibilitySupport.h │ │ │ │ ├── AccountPolicy.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AddressBookAutocomplete.h │ │ │ │ ├── Admin.h │ │ │ │ ├── AirPlaySender.h │ │ │ │ ├── AirPlaySupport.h │ │ │ │ ├── AirTrafficHost.h │ │ │ │ ├── AmbientDisplay.h │ │ │ │ ├── AnnotationKit.h │ │ │ │ ├── AppContainer.h │ │ │ │ ├── AppSandbox.h │ │ │ │ ├── Apple80211.h │ │ │ │ ├── AppleAppSupport.h │ │ │ │ ├── AppleFSCompression.h │ │ │ │ ├── AppleGVA.h │ │ │ │ ├── AppleGVACore.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleSauce.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── AppleShareClientCore.h │ │ │ │ ├── AppleSystemInfo.h │ │ │ │ ├── AppleVA.h │ │ │ │ ├── AppleVPA.h │ │ │ │ ├── AskPermission.h │ │ │ │ ├── AssetCacheServices.h │ │ │ │ ├── Assistant.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AssistiveControlSupport.h │ │ │ │ ├── AudioServerDriver.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── AuthKitUI.h │ │ │ │ ├── Backup.h │ │ │ │ ├── BatteryUIKit.h │ │ │ │ ├── BezelServices.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookKit.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BrowserKit.h │ │ │ │ ├── ByteRangeLocking.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarAgent.h │ │ │ │ ├── CalendarAgentLink.h │ │ │ │ ├── CalendarDraw.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarPersistence.h │ │ │ │ ├── CalendarUI.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── CharacterPicker.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── ClockMenuExtraPreferences.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ ├── CloudFamilyRestrictions.h │ │ │ │ ├── CloudFamilyRestrictionsDaemon.h │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudPhotoServices.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── CommerceKit.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonCandidateWindow.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── ConfigProfileHelper.h │ │ │ │ ├── ConfigurationProfiles.h │ │ │ │ ├── ContactsAssistantServices.h │ │ │ │ ├── ContactsAutocomplete.h │ │ │ │ ├── ContactsAutocompleteUI.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContactsPersistence.h │ │ │ │ ├── CoreADI.h │ │ │ │ ├── CoreAUC.h │ │ │ │ ├── CoreAVCHD.h │ │ │ │ ├── CoreCDP.h │ │ │ │ ├── CoreCapture.h │ │ │ │ ├── CoreCaptureControl.h │ │ │ │ ├── CoreCaptureDaemon.h │ │ │ │ ├── CoreChineseEngine.h │ │ │ │ ├── CoreChineseEngineReduced.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreDaemon.h │ │ │ │ ├── CoreDuet.h │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ ├── CoreFP.h │ │ │ │ ├── CoreFollowUp.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreKE.h │ │ │ │ ├── CoreLSKD.h │ │ │ │ ├── CoreLSKDMSE.h │ │ │ │ ├── CoreMediaAuthoring.h │ │ │ │ ├── CoreMediaIOServicesPrivate.h │ │ │ │ ├── CoreMediaPrivate.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreNLP.h │ │ │ │ ├── CoreOptimization.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRAID.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSpectrum.h │ │ │ │ ├── CoreSpotlight.h │ │ │ │ ├── CoreSuggestions.h │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CoreWLANKit.h │ │ │ │ ├── CoreWiFi.h │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ ├── DCERPC.h │ │ │ │ ├── DMNotification.h │ │ │ │ ├── DVD.h │ │ │ │ ├── DashboardClient.h │ │ │ │ ├── DataDetectors.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ │ ├── DataSourceManagement.h │ │ │ │ ├── DebugSymbols.h │ │ │ │ ├── DesktopServicesPriv.h │ │ │ │ ├── DeviceLink.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DigiHubPreference.h │ │ │ │ ├── DirectoryEditor.h │ │ │ │ ├── DirectoryServer.h │ │ │ │ ├── DiskImages.h │ │ │ │ ├── DiskManagement.h │ │ │ │ ├── DisplayServices.h │ │ │ │ ├── DuetRecommendation.h │ │ │ │ ├── EAP8021X.h │ │ │ │ ├── EFILogin.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── EmailAddressing.h │ │ │ │ ├── ExchangeWebServices.h │ │ │ │ ├── FMCore.h │ │ │ │ ├── FMCoreLite.h │ │ │ │ ├── FMCoreUI.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FMFUI.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FWAVC.h │ │ │ │ ├── FWAVCPrivate.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FaceCoreLight.h │ │ │ │ ├── FamilyCircle.h │ │ │ │ ├── FamilyControls.h │ │ │ │ ├── FamilyNotification.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FileSync.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FindMyMac.h │ │ │ │ ├── FinderKit.h │ │ │ │ ├── FlightUtilities.h │ │ │ │ ├── FolderActionsKit.h │ │ │ │ ├── Futhark.h │ │ │ │ ├── GPUCompiler.h │ │ │ │ ├── GPUSupport.h │ │ │ │ ├── GameCenter.h │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ ├── GameCenterPrivateUIMac.h │ │ │ │ ├── GameCenterUI.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoKit.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphKit.h │ │ │ │ ├── GraphicsAppSupport.h │ │ │ │ ├── HDAInterface.h │ │ │ │ ├── HeimODAdmin.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HelpData.h │ │ │ │ ├── IASUtilities.h │ │ │ │ ├── ICANotifications.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IDSSystemPreferencesSignIn.h │ │ │ │ ├── IMAP.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ ├── IOAccelerator.h │ │ │ │ ├── IOPlatformPluginFamily.h │ │ │ │ ├── IPTelephony.h │ │ │ │ ├── ISSupport.h │ │ │ │ ├── IconCompiler.h │ │ │ │ ├── IconServices.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── Install.h │ │ │ │ ├── International.h │ │ │ │ ├── InternationalTextSearch.h │ │ │ │ ├── InternetAccounts.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── JavaApplicationLauncher.h │ │ │ │ ├── JavaLaunching.h │ │ │ │ ├── JavaScriptAppleEvents.h │ │ │ │ ├── JavaScriptOSA.h │ │ │ │ ├── Jet.h │ │ │ │ ├── KerberosHelper.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LibraryRepair.h │ │ │ │ ├── LoginUIKit.h │ │ │ │ ├── Lookup.h │ │ │ │ ├── MDSChannel.h │ │ │ │ ├── MFiAuthentication.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MTLCompiler.h │ │ │ │ ├── MachineSettings.h │ │ │ │ ├── Mail.h │ │ │ │ ├── MailCore.h │ │ │ │ ├── MailService.h │ │ │ │ ├── MailUI.h │ │ │ │ ├── ManagedClient.h │ │ │ │ ├── Mangrove.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaKit.h │ │ │ │ ├── MediaUI.h │ │ │ │ ├── MessageProtection.h │ │ │ │ ├── MessagesHelperKit.h │ │ │ │ ├── MessagesKit.h │ │ │ │ ├── MetalTools.h │ │ │ │ ├── MobileDevice.h │ │ │ │ ├── MonitorPanel.h │ │ │ │ ├── MultitouchSupport.h │ │ │ │ ├── NetAuth.h │ │ │ │ ├── NetFSServer.h │ │ │ │ ├── Netrb.h │ │ │ │ ├── Network.h │ │ │ │ ├── NetworkDiagnosticsUI.h │ │ │ │ ├── NetworkMenusCommon.h │ │ │ │ ├── NetworkStatistics.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotesShared.h │ │ │ │ ├── Noticeboard.h │ │ │ │ ├── NotificationCenterUI.h │ │ │ │ ├── NyxAudioAnalysis.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OSInstaller.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── OpenDirectoryConfig.h │ │ │ │ ├── OpenDirectoryConfigUI.h │ │ │ │ ├── PSNormalizer.h │ │ │ │ ├── PackageKit.h │ │ │ │ ├── PacketFilter.h │ │ │ │ ├── Parsec.h │ │ │ │ ├── ParsecSubscriptionServiceSupport.h │ │ │ │ ├── ParsecUI.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── PasswordServer.h │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhoneNumbers.h │ │ │ │ ├── PhotoLibrary.h │ │ │ │ ├── PhotoLibraryPrivate.h │ │ │ │ ├── PhotosPlayer.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlatformHardwareManagement.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── PodcastProducerCore.h │ │ │ │ ├── PodcastProducerKit.h │ │ │ │ ├── PreferencePanesSupport.h │ │ │ │ ├── PrintingPrivate.h │ │ │ │ ├── ProKit.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RemoteViewServices.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── Restore.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── SCEP.h │ │ │ │ ├── SIUFoundation.h │ │ │ │ ├── SMBClient.h │ │ │ │ ├── SPSupport.h │ │ │ │ ├── Safari.h │ │ │ │ ├── SafariSafeBrowsing.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── SafariShared.h │ │ │ │ ├── ScreenReader.h │ │ │ │ ├── ScreenSharing.h │ │ │ │ ├── SecCodeWrapper.h │ │ │ │ ├── SecurityTokend.h │ │ │ │ ├── Seeding.h │ │ │ │ ├── SemanticDocumentManagement.h │ │ │ │ ├── ServerAccounts.h │ │ │ │ ├── ServerCompatibility.h │ │ │ │ ├── ServerFoundation.h │ │ │ │ ├── ServerInformation.h │ │ │ │ ├── SetupAssistantSupport.h │ │ │ │ ├── ShareKit.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── Shortcut.h │ │ │ │ ├── Slideshows.h │ │ │ │ ├── SocialAppsCore.h │ │ │ │ ├── SocialUI.h │ │ │ │ ├── SoftwareUpdate.h │ │ │ │ ├── SpeechDictionary.h │ │ │ │ ├── SpeechObjects.h │ │ │ │ ├── SpeechRecognitionCore.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightIndex.h │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ ├── StorageKit.h │ │ │ │ ├── StoreFoundation.h │ │ │ │ ├── StoreJavaScript.h │ │ │ │ ├── StoreUI.h │ │ │ │ ├── StoreXPCServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Suggestions.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── Symptoms.h │ │ │ │ ├── SyncServicesUI.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── SystemAdministration.h │ │ │ │ ├── SystemAdministrationInterface.h │ │ │ │ ├── SystemMigration.h │ │ │ │ ├── SystemMigrationNetworking.h │ │ │ │ ├── SystemUIPlugin.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TimeMachine.h │ │ │ │ ├── TimeSync.h │ │ │ │ ├── ToneKit.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── TracesOSKit.h │ │ │ │ ├── TrustEvaluationAgent.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UIRecording.h │ │ │ │ ├── Ubiquity.h │ │ │ │ ├── Uninstall.h │ │ │ │ ├── UniversalAccess.h │ │ │ │ ├── UserActivity.h │ │ │ │ ├── VCXMPP.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoConference.h │ │ │ │ ├── VideoProcessing.h │ │ │ │ ├── ViewBridge.h │ │ │ │ ├── WatchdogService.h │ │ │ │ ├── WeatherKit.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebFilterDNS.h │ │ │ │ ├── WebInspector.h │ │ │ │ ├── WebInspectorUI.h │ │ │ │ ├── WhitePages.h │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── WirelessDiagnosticsSupport.h │ │ │ │ ├── WirelessProximity.h │ │ │ │ ├── XMPPCore.h │ │ │ │ ├── XPCObjects.h │ │ │ │ ├── XPCService.h │ │ │ │ ├── XQuery.h │ │ │ │ ├── XprotectFramework.h │ │ │ │ ├── acfs.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iLifeMediaBrowser.h │ │ │ │ ├── iPod.h │ │ │ │ ├── iPodSync.h │ │ │ │ ├── iTunesAccess.h │ │ │ │ ├── kperf.h │ │ │ │ ├── kperfdata.h │ │ │ │ ├── login.h │ │ │ │ ├── nt.h │ │ │ │ ├── oncrpc.h │ │ │ │ ├── vCard.h │ │ │ │ └── vmutils.h │ │ ├── WatchOS.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── IDEWatchSupportCore.h │ │ │ │ │ └── IDEWatchSupportUI.h │ │ │ │ └── SDKs │ │ │ │ ├── WatchOS.sdk │ │ │ │ └── System │ │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── CFNetwork.h │ │ │ │ │ ├── ClockKit.h │ │ │ │ │ ├── Contacts.h │ │ │ │ │ ├── CoreData.h │ │ │ │ │ ├── CoreFoundation.h │ │ │ │ │ ├── CoreGraphics.h │ │ │ │ │ ├── CoreLocation.h │ │ │ │ │ ├── CoreMotion.h │ │ │ │ │ ├── CoreText.h │ │ │ │ │ ├── EventKit.h │ │ │ │ │ ├── Foundation.h │ │ │ │ │ ├── HealthKit.h │ │ │ │ │ ├── HomeKit.h │ │ │ │ │ ├── ImageIO.h │ │ │ │ │ ├── MapKit.h │ │ │ │ │ ├── MobileCoreServices.h │ │ │ │ │ ├── PassKit.h │ │ │ │ │ ├── Security.h │ │ │ │ │ ├── UIKit.h │ │ │ │ │ ├── WatchConnectivity.h │ │ │ │ │ └── WatchKit.h │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── ABLE.h │ │ │ │ │ ├── ABLEModel.h │ │ │ │ │ ├── ACTFramework.h │ │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ │ ├── AOSKit.h │ │ │ │ │ ├── AOSNotification.h │ │ │ │ │ ├── ATFoundation.h │ │ │ │ │ ├── AVKit.h │ │ │ │ │ ├── AXRuntime.h │ │ │ │ │ ├── Accessibility.h │ │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ │ ├── AccountsDaemon.h │ │ │ │ │ ├── AccountsUI.h │ │ │ │ │ ├── AggregateDictionary.h │ │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ │ ├── AirTraffic.h │ │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ │ ├── AppConduit.h │ │ │ │ │ ├── AppLaunchStats.h │ │ │ │ │ ├── AppSupport.h │ │ │ │ │ ├── AppleAccount.h │ │ │ │ │ ├── AppleElementsSupport.h │ │ │ │ │ ├── AppleFSCompression.h │ │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ │ ├── AppleJPEG.h │ │ │ │ │ ├── AppleLDAP.h │ │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ │ ├── ApplePushService.h │ │ │ │ │ ├── AppleSRP.h │ │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ │ ├── AskPermission.h │ │ │ │ │ ├── AssertionServices.h │ │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ │ ├── AssistantServices.h │ │ │ │ │ ├── AuthKit.h │ │ │ │ │ ├── BTLEAudioController.h │ │ │ │ │ ├── BackBoardServices.h │ │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ │ ├── BaseBoard.h │ │ │ │ │ ├── BaseBoardUI.h │ │ │ │ │ ├── BatteryCenter.h │ │ │ │ │ ├── BiometricKit.h │ │ │ │ │ ├── BluetoothManager.h │ │ │ │ │ ├── Bom.h │ │ │ │ │ ├── BookmarkDAV.h │ │ │ │ │ ├── BulletinBoard.h │ │ │ │ │ ├── BulletinDistributorGizmo.h │ │ │ │ │ ├── CPMLBestShim.h │ │ │ │ │ ├── CacheDelete.h │ │ │ │ │ ├── CalDAV.h │ │ │ │ │ ├── CalendarDaemon.h │ │ │ │ │ ├── CalendarDatabase.h │ │ │ │ │ ├── CalendarFoundation.h │ │ │ │ │ ├── CalendarUIKit.h │ │ │ │ │ ├── CallHistory.h │ │ │ │ │ ├── CameraKit.h │ │ │ │ │ ├── CarouselPlugins.h │ │ │ │ │ ├── CarouselServices.h │ │ │ │ │ ├── CarouselUIServices.h │ │ │ │ │ ├── CellularPlanManager.h │ │ │ │ │ ├── CertInfo.h │ │ │ │ │ ├── CertUI.h │ │ │ │ │ ├── CharlieKit.h │ │ │ │ │ ├── ChatKit.h │ │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ │ ├── CloudDocs.h │ │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ │ ├── CloudServices.h │ │ │ │ │ ├── ColorSync.h │ │ │ │ │ ├── CommonAuth.h │ │ │ │ │ ├── CommonUtilities.h │ │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ │ ├── CompanionSync.h │ │ │ │ │ ├── ConstantClasses.h │ │ │ │ │ ├── ContactsFoundation.h │ │ │ │ │ ├── ContentIndex.h │ │ │ │ │ ├── CoreAUC.h │ │ │ │ │ ├── CoreActivity.h │ │ │ │ │ ├── CoreBrightness.h │ │ │ │ │ ├── CoreCDP.h │ │ │ │ │ ├── CoreCapture.h │ │ │ │ │ ├── CoreCaptureControl.h │ │ │ │ │ ├── CoreCaptureDaemon.h │ │ │ │ │ ├── CoreDAV.h │ │ │ │ │ ├── CoreDuet.h │ │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ │ ├── CoreHAP.h │ │ │ │ │ ├── CoreMediaStream.h │ │ │ │ │ ├── CoreOptimization.h │ │ │ │ │ ├── CorePDF.h │ │ │ │ │ ├── CorePrediction.h │ │ │ │ │ ├── CoreRecents.h │ │ │ │ │ ├── CoreRecognition.h │ │ │ │ │ ├── CoreRoutine.h │ │ │ │ │ ├── CoreSDB.h │ │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ │ ├── CoreSymbolication.h │ │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ │ ├── CoreTime.h │ │ │ │ │ ├── CoreUI.h │ │ │ │ │ ├── CoreUtils.h │ │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ │ ├── DAAPKit.h │ │ │ │ │ ├── DCIMServices.h │ │ │ │ │ ├── DaliClockFace.h │ │ │ │ │ ├── DataAccess.h │ │ │ │ │ ├── DataAccessExpress.h │ │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ │ ├── DataMigration.h │ │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ │ ├── DictionaryServices.h │ │ │ │ │ ├── DiskSpaceDiagnostics.h │ │ │ │ │ ├── Duet.h │ │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ │ ├── DuetRecommendation.h │ │ │ │ │ ├── EAP8021X.h │ │ │ │ │ ├── ETPeople.h │ │ │ │ │ ├── EasyConfig.h │ │ │ │ │ ├── ElectricTouch.h │ │ │ │ │ ├── FMCore.h │ │ │ │ │ ├── FMCoreLite.h │ │ │ │ │ ├── FTAWD.h │ │ │ │ │ ├── FTClientServices.h │ │ │ │ │ ├── FTServices.h │ │ │ │ │ ├── FaceCore.h │ │ │ │ │ ├── FileProvider.h │ │ │ │ │ ├── FindMyDevice.h │ │ │ │ │ ├── FitnessUI.h │ │ │ │ │ ├── FlightRecorder.h │ │ │ │ │ ├── FontServices.h │ │ │ │ │ ├── FrontBoard.h │ │ │ │ │ ├── FrontBoardServices.h │ │ │ │ │ ├── GPUSupport.h │ │ │ │ │ ├── GameKitServices.h │ │ │ │ │ ├── GenerationalStorage.h │ │ │ │ │ ├── GeoServices.h │ │ │ │ │ ├── GraphicsServices.h │ │ │ │ │ ├── HSAAuthentication.h │ │ │ │ │ ├── HangTracer.h │ │ │ │ │ ├── HealthDaemon.h │ │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ │ ├── HealthLite.h │ │ │ │ │ ├── Heimdal.h │ │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ │ ├── HomeSharing.h │ │ │ │ │ ├── IAP.h │ │ │ │ │ ├── IAPAuthentication.h │ │ │ │ │ ├── IDS.h │ │ │ │ │ ├── IDSFoundation.h │ │ │ │ │ ├── IMAVCore.h │ │ │ │ │ ├── IMCore.h │ │ │ │ │ ├── IMDMessageServices.h │ │ │ │ │ ├── IMDPersistence.h │ │ │ │ │ ├── IMDaemonCore.h │ │ │ │ │ ├── IMFoundation.h │ │ │ │ │ ├── IMTranscoding.h │ │ │ │ │ ├── IMTransferServices.h │ │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ │ ├── IOAccelerator.h │ │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ │ ├── IOSurface.h │ │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ │ ├── IPTelephony.h │ │ │ │ │ ├── ImageCapture.h │ │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ │ ├── IntlPreferences.h │ │ │ │ │ ├── Jet.h │ │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ │ ├── LanguageModeling.h │ │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ │ ├── MIME.h │ │ │ │ │ ├── MMCS.h │ │ │ │ │ ├── MMCSServices.h │ │ │ │ │ ├── MPUFoundation.h │ │ │ │ │ ├── MTLCompiler.h │ │ │ │ │ ├── MailServices.h │ │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ │ ├── MapsSupport.h │ │ │ │ │ ├── Marco.h │ │ │ │ │ ├── MediaRemote.h │ │ │ │ │ ├── MediaServices.h │ │ │ │ │ ├── MediaStream.h │ │ │ │ │ ├── Message.h │ │ │ │ │ ├── MessageProtection.h │ │ │ │ │ ├── MessageSupport.h │ │ │ │ │ ├── MetalTools.h │ │ │ │ │ ├── MobileActivation.h │ │ │ │ │ ├── MobileAsset.h │ │ │ │ │ ├── MobileBackup.h │ │ │ │ │ ├── MobileBluetooth.h │ │ │ │ │ ├── MobileContainerManager.h │ │ │ │ │ ├── MobileDelete.h │ │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ │ ├── MobileIcons.h │ │ │ │ │ ├── MobileInstallation.h │ │ │ │ │ ├── MobileKeyBag.h │ │ │ │ │ ├── MobileObliteration.h │ │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ │ ├── MobileStorage.h │ │ │ │ │ ├── MobileSystemServices.h │ │ │ │ │ ├── MobileTimer.h │ │ │ │ │ ├── MobileWiFi.h │ │ │ │ │ ├── MultitouchSupport.h │ │ │ │ │ ├── MusicLibrary.h │ │ │ │ │ ├── NanoAudioControl.h │ │ │ │ │ ├── NanoCalendarServices.h │ │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ │ ├── NanoContactsUI.h │ │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ │ ├── NanoHealthServices.h │ │ │ │ │ ├── NanoLeash.h │ │ │ │ │ ├── NanoMailKitClient.h │ │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ │ ├── NanoMediaUI.h │ │ │ │ │ ├── NanoMusicCore.h │ │ │ │ │ ├── NanoMusicSync.h │ │ │ │ │ ├── NanoPairedSync.h │ │ │ │ │ ├── NanoPassKit.h │ │ │ │ │ ├── NanoPassKitUI.h │ │ │ │ │ ├── NanoPhonePerfTesting.h │ │ │ │ │ ├── NanoPhoneUI.h │ │ │ │ │ ├── NanoPhotosUI.h │ │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ │ ├── NanoRegistry.h │ │ │ │ │ ├── NanoRemoteMediaServicesUI.h │ │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ │ ├── NanoSetupSupport.h │ │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ │ ├── NanoTimeKit.h │ │ │ │ │ ├── NanoWeatherKit.h │ │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ │ ├── Netrb.h │ │ │ │ │ ├── Network.h │ │ │ │ │ ├── NetworkStatistics.h │ │ │ │ │ ├── Notes.h │ │ │ │ │ ├── NotificationsUI.h │ │ │ │ │ ├── OAuth.h │ │ │ │ │ ├── OpenCL.h │ │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ │ ├── PacketFilter.h │ │ │ │ │ ├── PairedUnlock.h │ │ │ │ │ ├── PassKitCore.h │ │ │ │ │ ├── PepperCore.h │ │ │ │ │ ├── PepperUICore.h │ │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ │ ├── PersistentConnection.h │ │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ │ ├── PhotosFormats.h │ │ │ │ │ ├── PhysicsKit.h │ │ │ │ │ ├── PlugInKit.h │ │ │ │ │ ├── PowerLog.h │ │ │ │ │ ├── PowerlogControl.h │ │ │ │ │ ├── PowerlogCore.h │ │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ │ ├── Preferences.h │ │ │ │ │ ├── PrintKit.h │ │ │ │ │ ├── ProgressUI.h │ │ │ │ │ ├── ProofReader.h │ │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ │ ├── Quagga.h │ │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ │ ├── RTCReporting.h │ │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ │ ├── RemoteUI.h │ │ │ │ │ ├── ResponseKit.h │ │ │ │ │ ├── SAObjects.h │ │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ │ ├── ServiceManagement.h │ │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ │ ├── Sharing.h │ │ │ │ │ ├── SiriTasks.h │ │ │ │ │ ├── SiriUICore.h │ │ │ │ │ ├── SlideshowKit.h │ │ │ │ │ ├── SockPuppetGizmo.h │ │ │ │ │ ├── SockPuppetSiriSupport.h │ │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ │ ├── SplashBoard.h │ │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ │ ├── SpringBoardServices.h │ │ │ │ │ ├── SpringBoardUI.h │ │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ │ ├── Stocks.h │ │ │ │ │ ├── StoreServices.h │ │ │ │ │ ├── StreamingZip.h │ │ │ │ │ ├── Symbolication.h │ │ │ │ │ ├── Symptoms.h │ │ │ │ │ ├── SystemConfiguration.h │ │ │ │ │ ├── TCC.h │ │ │ │ │ ├── TelephonyRPC.h │ │ │ │ │ ├── TelephonyUI.h │ │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ │ ├── TextInput.h │ │ │ │ │ ├── TextToSpeech.h │ │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ │ ├── ToneLibrary.h │ │ │ │ │ ├── UIAccessibility.h │ │ │ │ │ ├── UIFoundation.h │ │ │ │ │ ├── UserActivity.h │ │ │ │ │ ├── UserFS.h │ │ │ │ │ ├── UserNotification.h │ │ │ │ │ ├── UserNotificationServices.h │ │ │ │ │ ├── VPNUtilities.h │ │ │ │ │ ├── VectorKit.h │ │ │ │ │ ├── VideoProcessing.h │ │ │ │ │ ├── VisualVoicemail.h │ │ │ │ │ ├── VoiceServices.h │ │ │ │ │ ├── VoiceTrigger.h │ │ │ │ │ ├── VoicemailStore.h │ │ │ │ │ ├── WatchReplies.h │ │ │ │ │ ├── WebBookmarks.h │ │ │ │ │ ├── WebCore.h │ │ │ │ │ ├── WebKitLegacy.h │ │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ │ ├── WiFiLogCapture.h │ │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ │ ├── WirelessProximity.h │ │ │ │ │ ├── XPCKit.h │ │ │ │ │ ├── XPCService.h │ │ │ │ │ ├── iCalendar.h │ │ │ │ │ ├── iCloudNotification.h │ │ │ │ │ ├── iOSDiagnostics.h │ │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ │ ├── iTunesStore.h │ │ │ │ │ ├── kperf.h │ │ │ │ │ ├── kperfdata.h │ │ │ │ │ ├── oncrpc.h │ │ │ │ │ └── vCard.h │ │ │ │ └── WatchOS2.0.sdk │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── ClockKit.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── WatchConnectivity.h │ │ │ │ └── WatchKit.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── ABLE.h │ │ │ │ ├── ABLEModel.h │ │ │ │ ├── ACTFramework.h │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── ATFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirTraffic.h │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ ├── AppConduit.h │ │ │ │ ├── AppLaunchStats.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleElementsSupport.h │ │ │ │ ├── AppleFSCompression.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ ├── AskPermission.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BaseBoardUI.h │ │ │ │ ├── BatteryCenter.h │ │ │ │ ├── BiometricKit.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── BulletinDistributorGizmo.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── CalendarDaemon.h │ │ │ │ ├── CalendarDatabase.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CarouselPlugins.h │ │ │ │ ├── CarouselServices.h │ │ │ │ ├── CarouselUIServices.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── CharlieKit.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CompanionSync.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreAUC.h │ │ │ │ ├── CoreActivity.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreCDP.h │ │ │ │ ├── CoreCapture.h │ │ │ │ ├── CoreCaptureControl.h │ │ │ │ ├── CoreCaptureDaemon.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreDuet.h │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreOptimization.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DaliClockFace.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── DiskSpaceDiagnostics.h │ │ │ │ ├── Duet.h │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ ├── DuetRecommendation.h │ │ │ │ ├── EAP8021X.h │ │ │ │ ├── ETPeople.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── ElectricTouch.h │ │ │ │ ├── FMCore.h │ │ │ │ ├── FMCoreLite.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FitnessUI.h │ │ │ │ ├── FlightRecorder.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── GPUSupport.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HangTracer.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ ├── HealthLite.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IAPAuthentication.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ ├── IOAccelerator.h │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ ├── IOSurface.h │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ ├── IPTelephony.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── Jet.h │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MTLCompiler.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageProtection.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MetalTools.h │ │ │ │ ├── MobileActivation.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileBackup.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDelete.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileKeyBag.h │ │ │ │ ├── MobileObliteration.h │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ ├── MobileStorage.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MobileWiFi.h │ │ │ │ ├── MultitouchSupport.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── NanoAudioControl.h │ │ │ │ ├── NanoCalendarServices.h │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ ├── NanoContactsUI.h │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ ├── NanoHealthServices.h │ │ │ │ ├── NanoLeash.h │ │ │ │ ├── NanoMailKitClient.h │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ ├── NanoMediaUI.h │ │ │ │ ├── NanoMusicCore.h │ │ │ │ ├── NanoMusicSync.h │ │ │ │ ├── NanoPairedSync.h │ │ │ │ ├── NanoPassKit.h │ │ │ │ ├── NanoPassKitUI.h │ │ │ │ ├── NanoPhonePerfTesting.h │ │ │ │ ├── NanoPhoneUI.h │ │ │ │ ├── NanoPhotosUI.h │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ ├── NanoRegistry.h │ │ │ │ ├── NanoRemoteMediaServicesUI.h │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ ├── NanoSetupSupport.h │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ ├── NanoTimeKit.h │ │ │ │ ├── NanoWeatherKit.h │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ ├── Netrb.h │ │ │ │ ├── Network.h │ │ │ │ ├── NetworkStatistics.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OpenCL.h │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ ├── PacketFilter.h │ │ │ │ ├── PairedUnlock.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── PepperCore.h │ │ │ │ ├── PepperUICore.h │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── PowerLog.h │ │ │ │ ├── PowerlogControl.h │ │ │ │ ├── PowerlogCore.h │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProgressUI.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── ServiceManagement.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SiriTasks.h │ │ │ │ ├── SiriUICore.h │ │ │ │ ├── SlideshowKit.h │ │ │ │ ├── SockPuppetGizmo.h │ │ │ │ ├── SockPuppetSiriSupport.h │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── Stocks.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── Symptoms.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TelephonyRPC.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UserActivity.h │ │ │ │ ├── UserFS.h │ │ │ │ ├── UserNotification.h │ │ │ │ ├── UserNotificationServices.h │ │ │ │ ├── VPNUtilities.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoProcessing.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoiceTrigger.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── WatchReplies.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ ├── WiFiLogCapture.h │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── WirelessProximity.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── XPCService.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iCloudNotification.h │ │ │ │ ├── iOSDiagnostics.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ ├── kperf.h │ │ │ │ ├── kperfdata.h │ │ │ │ ├── oncrpc.h │ │ │ │ └── vCard.h │ │ ├── WatchSimulator.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── IBAutolayoutFoundation.h │ │ │ │ │ ├── IBCocoaTouchToolFoundation.h │ │ │ │ │ ├── IBFoundation.h │ │ │ │ │ ├── IBWatchKitImageCatalogToolExtensions.h │ │ │ │ │ └── IBWatchKitImageCatalogToolExtensionsForIOS.h │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── IDEInterfaceBuilderWatchKitBuildSupport.h │ │ │ │ │ └── IDEInterfaceBuilderWatchKitIntegration.h │ │ │ │ └── SDKs │ │ │ │ ├── WatchSimulator.sdk │ │ │ │ ├── Applications │ │ │ │ │ └── NanoPhone.app │ │ │ │ │ │ └── Frameworks │ │ │ │ │ │ └── NanoPhoneUI.h │ │ │ │ ├── Developer │ │ │ │ │ └── Library │ │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ │ ├── DTDDISupport.h │ │ │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ │ │ ├── DVTInstrumentsUtilities.h │ │ │ │ │ │ ├── ScriptProcessor.h │ │ │ │ │ │ └── UIAutomation.h │ │ │ │ └── System │ │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── AVFoundation.h │ │ │ │ │ ├── Accelerate.h │ │ │ │ │ ├── Accounts.h │ │ │ │ │ ├── AdSupport.h │ │ │ │ │ ├── AddressBook.h │ │ │ │ │ ├── AssetsLibrary.h │ │ │ │ │ ├── AudioToolbox.h │ │ │ │ │ ├── AudioUnit.h │ │ │ │ │ ├── CFNetwork.h │ │ │ │ │ ├── ClockKit.h │ │ │ │ │ ├── CloudKit.h │ │ │ │ │ ├── Contacts.h │ │ │ │ │ ├── CoreAudio.h │ │ │ │ │ ├── CoreBluetooth.h │ │ │ │ │ ├── CoreData.h │ │ │ │ │ ├── CoreFoundation.h │ │ │ │ │ ├── CoreGraphics.h │ │ │ │ │ ├── CoreImage.h │ │ │ │ │ ├── CoreLocation.h │ │ │ │ │ ├── CoreMIDI.h │ │ │ │ │ ├── CoreMedia.h │ │ │ │ │ ├── CoreMotion.h │ │ │ │ │ ├── CoreSpotlight.h │ │ │ │ │ ├── CoreTelephony.h │ │ │ │ │ ├── CoreText.h │ │ │ │ │ ├── CoreVideo.h │ │ │ │ │ ├── EventKit.h │ │ │ │ │ ├── EventKitUI.h │ │ │ │ │ ├── ExternalAccessory.h │ │ │ │ │ ├── Foundation.h │ │ │ │ │ ├── GLKit.h │ │ │ │ │ ├── GSS.h │ │ │ │ │ ├── HealthKit.h │ │ │ │ │ ├── HomeKit.h │ │ │ │ │ ├── IOKit.h │ │ │ │ │ ├── ImageIO.h │ │ │ │ │ ├── JavaScriptCore.h │ │ │ │ │ ├── LocalAuthentication.h │ │ │ │ │ ├── MapKit.h │ │ │ │ │ ├── MediaAccessibility.h │ │ │ │ │ ├── MediaPlayer.h │ │ │ │ │ ├── MediaToolbox.h │ │ │ │ │ ├── Metal.h │ │ │ │ │ ├── MobileCoreServices.h │ │ │ │ │ ├── ModelIO.h │ │ │ │ │ ├── NetworkExtension.h │ │ │ │ │ ├── NotificationCenter.h │ │ │ │ │ ├── OpenAL.h │ │ │ │ │ ├── OpenGLES.h │ │ │ │ │ ├── PassKit.h │ │ │ │ │ ├── Photos.h │ │ │ │ │ ├── PushKit.h │ │ │ │ │ ├── QuartzCore.h │ │ │ │ │ ├── QuickLook.h │ │ │ │ │ ├── SceneKit.h │ │ │ │ │ ├── Security.h │ │ │ │ │ ├── Social.h │ │ │ │ │ ├── SpriteKit.h │ │ │ │ │ ├── StoreKit.h │ │ │ │ │ ├── System.h │ │ │ │ │ ├── SystemConfiguration.h │ │ │ │ │ ├── UIKit.h │ │ │ │ │ ├── VideoToolbox.h │ │ │ │ │ ├── WatchConnectivity.h │ │ │ │ │ ├── WatchKit.h │ │ │ │ │ └── WebKit.h │ │ │ │ │ ├── LocationBundles │ │ │ │ │ ├── BulletinBoard.h │ │ │ │ │ ├── FindMyDevice.h │ │ │ │ │ └── HomeKitDaemon.h │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── AOSKit.h │ │ │ │ │ ├── AOSNotification.h │ │ │ │ │ ├── ATFoundation.h │ │ │ │ │ ├── AVKit.h │ │ │ │ │ ├── AXRuntime.h │ │ │ │ │ ├── Accessibility.h │ │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ │ ├── AccountsDaemon.h │ │ │ │ │ ├── AccountsUI.h │ │ │ │ │ ├── AggregateDictionary.h │ │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ │ ├── AirTraffic.h │ │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ │ ├── AppConduit.h │ │ │ │ │ ├── AppSupport.h │ │ │ │ │ ├── AppleAccount.h │ │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ │ ├── AppleJPEG.h │ │ │ │ │ ├── AppleLDAP.h │ │ │ │ │ ├── ApplePushService.h │ │ │ │ │ ├── AppleSRP.h │ │ │ │ │ ├── AskPermission.h │ │ │ │ │ ├── AssertionServices.h │ │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ │ ├── AssistantServices.h │ │ │ │ │ ├── AuthKit.h │ │ │ │ │ ├── AuthKitUI.h │ │ │ │ │ ├── BTLEAudioController.h │ │ │ │ │ ├── BackBoardServices.h │ │ │ │ │ ├── BaseBoard.h │ │ │ │ │ ├── BaseBoardUI.h │ │ │ │ │ ├── BatteryCenter.h │ │ │ │ │ ├── BiometricKit.h │ │ │ │ │ ├── BluetoothManager.h │ │ │ │ │ ├── Bom.h │ │ │ │ │ ├── BookmarkDAV.h │ │ │ │ │ ├── BulletinBoard.h │ │ │ │ │ ├── BulletinDistributorGizmo.h │ │ │ │ │ ├── CPMLBestShim.h │ │ │ │ │ ├── CacheDelete.h │ │ │ │ │ ├── CalDAV.h │ │ │ │ │ ├── CalendarDaemon.h │ │ │ │ │ ├── CalendarDatabase.h │ │ │ │ │ ├── CalendarFoundation.h │ │ │ │ │ ├── CalendarUIKit.h │ │ │ │ │ ├── CallHistory.h │ │ │ │ │ ├── CameraKit.h │ │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ │ ├── CarouselPlugins.h │ │ │ │ │ ├── CarouselServices.h │ │ │ │ │ ├── CarouselUIServices.h │ │ │ │ │ ├── Celestial.h │ │ │ │ │ ├── CellularPlanManager.h │ │ │ │ │ ├── CertInfo.h │ │ │ │ │ ├── CertUI.h │ │ │ │ │ ├── ChatKit.h │ │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ │ ├── CloudDocs.h │ │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ │ ├── CloudServices.h │ │ │ │ │ ├── ColorSync.h │ │ │ │ │ ├── CommonAuth.h │ │ │ │ │ ├── CommonUtilities.h │ │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ │ ├── CompanionSync.h │ │ │ │ │ ├── ConstantClasses.h │ │ │ │ │ ├── ContactsFoundation.h │ │ │ │ │ ├── ContentIndex.h │ │ │ │ │ ├── CoreBrightness.h │ │ │ │ │ ├── CoreCDP.h │ │ │ │ │ ├── CoreDAV.h │ │ │ │ │ ├── CoreHAP.h │ │ │ │ │ ├── CoreMediaStream.h │ │ │ │ │ ├── CoreOptimization.h │ │ │ │ │ ├── CorePDF.h │ │ │ │ │ ├── CorePrediction.h │ │ │ │ │ ├── CoreRecents.h │ │ │ │ │ ├── CoreRecognition.h │ │ │ │ │ ├── CoreRoutine.h │ │ │ │ │ ├── CoreSDB.h │ │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ │ ├── CoreSymbolication.h │ │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ │ ├── CoreTime.h │ │ │ │ │ ├── CoreUI.h │ │ │ │ │ ├── CoreUtils.h │ │ │ │ │ ├── DAAPKit.h │ │ │ │ │ ├── DCIMServices.h │ │ │ │ │ ├── DaliClockFace.h │ │ │ │ │ ├── DataAccess.h │ │ │ │ │ ├── DataAccessExpress.h │ │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ │ ├── DataMigration.h │ │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ │ ├── DictionaryServices.h │ │ │ │ │ ├── ETPeople.h │ │ │ │ │ ├── EasyConfig.h │ │ │ │ │ ├── ElectricTouch.h │ │ │ │ │ ├── FMCore.h │ │ │ │ │ ├── FMCoreLite.h │ │ │ │ │ ├── FTAWD.h │ │ │ │ │ ├── FTClientServices.h │ │ │ │ │ ├── FTServices.h │ │ │ │ │ ├── FaceCore.h │ │ │ │ │ ├── FileProvider.h │ │ │ │ │ ├── FindMyDevice.h │ │ │ │ │ ├── FitnessUI.h │ │ │ │ │ ├── FontServices.h │ │ │ │ │ ├── FrontBoard.h │ │ │ │ │ ├── FrontBoardServices.h │ │ │ │ │ ├── GameKitServices.h │ │ │ │ │ ├── GenerationalStorage.h │ │ │ │ │ ├── GeoServices.h │ │ │ │ │ ├── GraphicsServices.h │ │ │ │ │ ├── HSAAuthentication.h │ │ │ │ │ ├── HealthDaemon.h │ │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ │ ├── Heimdal.h │ │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ │ ├── HomeSharing.h │ │ │ │ │ ├── IAP.h │ │ │ │ │ ├── IDS.h │ │ │ │ │ ├── IDSFoundation.h │ │ │ │ │ ├── IDSSimulatorSupport.h │ │ │ │ │ ├── IMAVCore.h │ │ │ │ │ ├── IMCore.h │ │ │ │ │ ├── IMDMessageServices.h │ │ │ │ │ ├── IMDPersistence.h │ │ │ │ │ ├── IMDaemonCore.h │ │ │ │ │ ├── IMFoundation.h │ │ │ │ │ ├── IMTranscoding.h │ │ │ │ │ ├── IMTransferServices.h │ │ │ │ │ ├── ImageCapture.h │ │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ │ ├── IntlPreferences.h │ │ │ │ │ ├── Jet.h │ │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ │ ├── LanguageModeling.h │ │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ │ ├── MIME.h │ │ │ │ │ ├── MMCS.h │ │ │ │ │ ├── MMCSServices.h │ │ │ │ │ ├── MPUFoundation.h │ │ │ │ │ ├── MailServices.h │ │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ │ ├── MapsSupport.h │ │ │ │ │ ├── Marco.h │ │ │ │ │ ├── MediaRemote.h │ │ │ │ │ ├── MediaServices.h │ │ │ │ │ ├── MediaStream.h │ │ │ │ │ ├── Message.h │ │ │ │ │ ├── MessageSupport.h │ │ │ │ │ ├── MobileAsset.h │ │ │ │ │ ├── MobileBackup.h │ │ │ │ │ ├── MobileBluetooth.h │ │ │ │ │ ├── MobileContainerManager.h │ │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ │ ├── MobileIcons.h │ │ │ │ │ ├── MobileInstallation.h │ │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ │ ├── MobileSync.h │ │ │ │ │ ├── MobileSystemServices.h │ │ │ │ │ ├── MobileTimer.h │ │ │ │ │ ├── MobileWiFi.h │ │ │ │ │ ├── MusicLibrary.h │ │ │ │ │ ├── NanoAudioControl.h │ │ │ │ │ ├── NanoCalendarServices.h │ │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ │ ├── NanoContactsUI.h │ │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ │ ├── NanoHealthServices.h │ │ │ │ │ ├── NanoLeash.h │ │ │ │ │ ├── NanoMailKitClient.h │ │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ │ ├── NanoMediaUI.h │ │ │ │ │ ├── NanoMusicCore.h │ │ │ │ │ ├── NanoMusicSync.h │ │ │ │ │ ├── NanoPairedSync.h │ │ │ │ │ ├── NanoPassKit.h │ │ │ │ │ ├── NanoPassKitUI.h │ │ │ │ │ ├── NanoPhoneUI.h │ │ │ │ │ ├── NanoPhotosUI.h │ │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ │ ├── NanoRegistry.h │ │ │ │ │ ├── NanoRemoteMediaServicesUI.h │ │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ │ ├── NanoTimeKit.h │ │ │ │ │ ├── NanoWeatherKit.h │ │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ │ ├── Network.h │ │ │ │ │ ├── Notes.h │ │ │ │ │ ├── NotificationsUI.h │ │ │ │ │ ├── OAuth.h │ │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ │ ├── PairedUnlock.h │ │ │ │ │ ├── PassKitCore.h │ │ │ │ │ ├── PepperCore.h │ │ │ │ │ ├── PepperUICore.h │ │ │ │ │ ├── PersistentConnection.h │ │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ │ ├── PhotosFormats.h │ │ │ │ │ ├── PhotosPlayer.h │ │ │ │ │ ├── PhysicsKit.h │ │ │ │ │ ├── PlugInKit.h │ │ │ │ │ ├── Preferences.h │ │ │ │ │ ├── PrintKit.h │ │ │ │ │ ├── ProgressUI.h │ │ │ │ │ ├── ProofReader.h │ │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ │ ├── Quagga.h │ │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ │ ├── RTCReporting.h │ │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ │ ├── RemoteUI.h │ │ │ │ │ ├── ResponseKit.h │ │ │ │ │ ├── SAObjects.h │ │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ │ ├── Sharing.h │ │ │ │ │ ├── SimulatorClient.h │ │ │ │ │ ├── SiriTasks.h │ │ │ │ │ ├── SiriUICore.h │ │ │ │ │ ├── SlideshowKit.h │ │ │ │ │ ├── SockPuppetGizmo.h │ │ │ │ │ ├── SockPuppetSiriSupport.h │ │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ │ ├── SplashBoard.h │ │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ │ ├── SpringBoardServices.h │ │ │ │ │ ├── SpringBoardUI.h │ │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ │ ├── Stocks.h │ │ │ │ │ ├── StoreServices.h │ │ │ │ │ ├── StreamingZip.h │ │ │ │ │ ├── Symbolication.h │ │ │ │ │ ├── SyncedDefaults.h │ │ │ │ │ ├── SystemConfiguration.h │ │ │ │ │ ├── TCC.h │ │ │ │ │ ├── TelephonyRPC.h │ │ │ │ │ ├── TelephonyUI.h │ │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ │ ├── TextInput.h │ │ │ │ │ ├── TextToSpeech.h │ │ │ │ │ ├── ToneLibrary.h │ │ │ │ │ ├── UIAccessibility.h │ │ │ │ │ ├── UIFoundation.h │ │ │ │ │ ├── UserActivity.h │ │ │ │ │ ├── UserNotification.h │ │ │ │ │ ├── UserNotificationServices.h │ │ │ │ │ ├── VPNUtilities.h │ │ │ │ │ ├── VectorKit.h │ │ │ │ │ ├── VisualVoicemail.h │ │ │ │ │ ├── VoiceServices.h │ │ │ │ │ ├── VoicemailStore.h │ │ │ │ │ ├── WatchReplies.h │ │ │ │ │ ├── WebBookmarks.h │ │ │ │ │ ├── WebCore.h │ │ │ │ │ ├── WebKitLegacy.h │ │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ │ ├── XPCKit.h │ │ │ │ │ ├── iCalendar.h │ │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ │ ├── iTunesStore.h │ │ │ │ │ └── vCard.h │ │ │ │ └── WatchSimulator2.0.sdk │ │ │ │ ├── Applications │ │ │ │ └── NanoPhone.app │ │ │ │ │ └── Frameworks │ │ │ │ │ └── NanoPhoneUI.h │ │ │ │ ├── Developer │ │ │ │ └── Library │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── DTDDISupport.h │ │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ │ ├── DVTInstrumentsUtilities.h │ │ │ │ │ ├── ScriptProcessor.h │ │ │ │ │ └── UIAutomation.h │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AdSupport.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AssetsLibrary.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── ClockKit.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreSpotlight.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventKitUI.h │ │ │ │ ├── ExternalAccessory.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GSS.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaPlayer.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── ModelIO.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenGLES.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PushKit.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WatchConnectivity.h │ │ │ │ ├── WatchKit.h │ │ │ │ └── WebKit.h │ │ │ │ ├── LocationBundles │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ └── HomeKitDaemon.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── ATFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirTraffic.h │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ ├── AppConduit.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AskPermission.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── AuthKitUI.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BaseBoardUI.h │ │ │ │ ├── BatteryCenter.h │ │ │ │ ├── BiometricKit.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── BulletinDistributorGizmo.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── CalendarDaemon.h │ │ │ │ ├── CalendarDatabase.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── CarouselPlugins.h │ │ │ │ ├── CarouselServices.h │ │ │ │ ├── CarouselUIServices.h │ │ │ │ ├── Celestial.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CompanionSync.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreCDP.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreOptimization.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DaliClockFace.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── ETPeople.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── ElectricTouch.h │ │ │ │ ├── FMCore.h │ │ │ │ ├── FMCoreLite.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FitnessUI.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IDSSimulatorSupport.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── Jet.h │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileBackup.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ ├── MobileSync.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MobileWiFi.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── NanoAudioControl.h │ │ │ │ ├── NanoCalendarServices.h │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ ├── NanoContactsUI.h │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ ├── NanoHealthServices.h │ │ │ │ ├── NanoLeash.h │ │ │ │ ├── NanoMailKitClient.h │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ ├── NanoMediaUI.h │ │ │ │ ├── NanoMusicCore.h │ │ │ │ ├── NanoMusicSync.h │ │ │ │ ├── NanoPairedSync.h │ │ │ │ ├── NanoPassKit.h │ │ │ │ ├── NanoPassKitUI.h │ │ │ │ ├── NanoPhoneUI.h │ │ │ │ ├── NanoPhotosUI.h │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ ├── NanoRegistry.h │ │ │ │ ├── NanoRemoteMediaServicesUI.h │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ ├── NanoTimeKit.h │ │ │ │ ├── NanoWeatherKit.h │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ ├── Network.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ ├── PairedUnlock.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── PepperCore.h │ │ │ │ ├── PepperUICore.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhotosPlayer.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProgressUI.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SimulatorClient.h │ │ │ │ ├── SiriTasks.h │ │ │ │ ├── SiriUICore.h │ │ │ │ ├── SlideshowKit.h │ │ │ │ ├── SockPuppetGizmo.h │ │ │ │ ├── SockPuppetSiriSupport.h │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── Stocks.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TelephonyRPC.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UserActivity.h │ │ │ │ ├── UserNotification.h │ │ │ │ ├── UserNotificationServices.h │ │ │ │ ├── VPNUtilities.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── WatchReplies.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ └── vCard.h │ │ ├── iPhoneOS.platform │ │ │ └── Developer │ │ │ │ ├── Library │ │ │ │ ├── Frameworks │ │ │ │ │ └── XCTest.h │ │ │ │ ├── PrivateFrameworks │ │ │ │ │ ├── GLToolsExpert.h │ │ │ │ │ ├── GLToolsMobileFoundation.h │ │ │ │ │ ├── GPUToolsMobileFoundation.h │ │ │ │ │ ├── GPUToolsMobileKit.h │ │ │ │ │ └── IDEBundleInjection.h │ │ │ │ └── Xcode │ │ │ │ │ └── PrivatePlugIns │ │ │ │ │ ├── GPUDebuggeriOSSupport.h │ │ │ │ │ └── IDEiOSPlatformSupportCore.h │ │ │ │ └── SDKs │ │ │ │ ├── iPhoneOS.sdk │ │ │ │ └── System │ │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── AVFoundation.h │ │ │ │ │ ├── AVKit.h │ │ │ │ │ ├── Accelerate.h │ │ │ │ │ ├── Accounts.h │ │ │ │ │ ├── AdSupport.h │ │ │ │ │ ├── AddressBook.h │ │ │ │ │ ├── AddressBookUI.h │ │ │ │ │ ├── AssetsLibrary.h │ │ │ │ │ ├── AudioToolbox.h │ │ │ │ │ ├── AudioUnit.h │ │ │ │ │ ├── CFNetwork.h │ │ │ │ │ ├── CloudKit.h │ │ │ │ │ ├── Contacts.h │ │ │ │ │ ├── ContactsUI.h │ │ │ │ │ ├── CoreAudio.h │ │ │ │ │ ├── CoreAudioKit.h │ │ │ │ │ ├── CoreBluetooth.h │ │ │ │ │ ├── CoreData.h │ │ │ │ │ ├── CoreFoundation.h │ │ │ │ │ ├── CoreGraphics.h │ │ │ │ │ ├── CoreImage.h │ │ │ │ │ ├── CoreLocation.h │ │ │ │ │ ├── CoreMIDI.h │ │ │ │ │ ├── CoreMedia.h │ │ │ │ │ ├── CoreMotion.h │ │ │ │ │ ├── CoreSpotlight.h │ │ │ │ │ ├── CoreTelephony.h │ │ │ │ │ ├── CoreText.h │ │ │ │ │ ├── CoreVideo.h │ │ │ │ │ ├── EventKit.h │ │ │ │ │ ├── EventKitUI.h │ │ │ │ │ ├── ExternalAccessory.h │ │ │ │ │ ├── Foundation.h │ │ │ │ │ ├── GLKit.h │ │ │ │ │ ├── GSS.h │ │ │ │ │ ├── GameController.h │ │ │ │ │ ├── GameKit.h │ │ │ │ │ ├── GameplayKit.h │ │ │ │ │ ├── HealthKit.h │ │ │ │ │ ├── HomeKit.h │ │ │ │ │ ├── IOKit.h │ │ │ │ │ ├── ImageIO.h │ │ │ │ │ ├── JavaScriptCore.h │ │ │ │ │ ├── LocalAuthentication.h │ │ │ │ │ ├── MapKit.h │ │ │ │ │ ├── MediaAccessibility.h │ │ │ │ │ ├── MediaPlayer.h │ │ │ │ │ ├── MediaToolbox.h │ │ │ │ │ ├── MessageUI.h │ │ │ │ │ ├── Metal.h │ │ │ │ │ ├── MetalKit.h │ │ │ │ │ ├── MetalPerformanceShaders.h │ │ │ │ │ ├── MobileCoreServices.h │ │ │ │ │ ├── ModelIO.h │ │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ │ ├── NetworkExtension.h │ │ │ │ │ ├── NewsstandKit.h │ │ │ │ │ ├── NotificationCenter.h │ │ │ │ │ ├── OpenAL.h │ │ │ │ │ ├── OpenGLES.h │ │ │ │ │ ├── PassKit.h │ │ │ │ │ ├── Photos.h │ │ │ │ │ ├── PhotosUI.h │ │ │ │ │ ├── PushKit.h │ │ │ │ │ ├── QuartzCore.h │ │ │ │ │ ├── QuickLook.h │ │ │ │ │ ├── ReplayKit.h │ │ │ │ │ ├── SafariServices.h │ │ │ │ │ ├── SceneKit.h │ │ │ │ │ ├── Security.h │ │ │ │ │ ├── Social.h │ │ │ │ │ ├── SpriteKit.h │ │ │ │ │ ├── StoreKit.h │ │ │ │ │ ├── SystemConfiguration.h │ │ │ │ │ ├── Twitter.h │ │ │ │ │ ├── UIKit.h │ │ │ │ │ ├── VideoToolbox.h │ │ │ │ │ ├── WatchConnectivity.h │ │ │ │ │ ├── WatchKit.h │ │ │ │ │ ├── WebKit.h │ │ │ │ │ └── iAd.h │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── ABLE.h │ │ │ │ │ ├── ABLEModel.h │ │ │ │ │ ├── ACTFramework.h │ │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ │ ├── AITTarget.h │ │ │ │ │ ├── AOSKit.h │ │ │ │ │ ├── AOSNotification.h │ │ │ │ │ ├── APTransport.h │ │ │ │ │ ├── ATFoundation.h │ │ │ │ │ ├── AXRuntime.h │ │ │ │ │ ├── Accessibility.h │ │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ │ ├── AccountNotification.h │ │ │ │ │ ├── AccountSettings.h │ │ │ │ │ ├── AccountsDaemon.h │ │ │ │ │ ├── AccountsUI.h │ │ │ │ │ ├── AggregateDictionary.h │ │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ │ ├── AirPlayForCarDisplaySim.h │ │ │ │ │ ├── AirPlayReceiver.h │ │ │ │ │ ├── AirPlaySender.h │ │ │ │ │ ├── AirPlaySupport.h │ │ │ │ │ ├── AirPortAssistant.h │ │ │ │ │ ├── AirTraffic.h │ │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ │ ├── AnnotationKit.h │ │ │ │ │ ├── AppConduit.h │ │ │ │ │ ├── AppLaunchStats.h │ │ │ │ │ ├── AppStoreUI.h │ │ │ │ │ ├── AppSupport.h │ │ │ │ │ ├── AppleAccount.h │ │ │ │ │ ├── AppleAccountUI.h │ │ │ │ │ ├── AppleBasebandManager.h │ │ │ │ │ ├── AppleBasebandServices.h │ │ │ │ │ ├── AppleFSCompression.h │ │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ │ ├── AppleJPEG.h │ │ │ │ │ ├── AppleLDAP.h │ │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ │ ├── ApplePushService.h │ │ │ │ │ ├── AppleSRP.h │ │ │ │ │ ├── AppleSauce.h │ │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ │ ├── AppleVXD375Framework.h │ │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ │ ├── AskPermission.h │ │ │ │ │ ├── AssertionServices.h │ │ │ │ │ ├── AssetCacheServices.h │ │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ │ ├── AssistantServices.h │ │ │ │ │ ├── AuthKit.h │ │ │ │ │ ├── AuthKitUI.h │ │ │ │ │ ├── BTLEAudioController.h │ │ │ │ │ ├── BackBoardServices.h │ │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ │ ├── BaseBoard.h │ │ │ │ │ ├── BaseBoardUI.h │ │ │ │ │ ├── BatteryCenter.h │ │ │ │ │ ├── BiometricKit.h │ │ │ │ │ ├── BiometricKitUI.h │ │ │ │ │ ├── BluetoothManager.h │ │ │ │ │ ├── Bom.h │ │ │ │ │ ├── BookmarkDAV.h │ │ │ │ │ ├── BridgePreferences.h │ │ │ │ │ ├── BulletinBoard.h │ │ │ │ │ ├── BulletinDistributorCompanion.h │ │ │ │ │ ├── CPMLBestShim.h │ │ │ │ │ ├── CacheDelete.h │ │ │ │ │ ├── CalDAV.h │ │ │ │ │ ├── Calculate.h │ │ │ │ │ ├── CalendarDaemon.h │ │ │ │ │ ├── CalendarDatabase.h │ │ │ │ │ ├── CalendarFoundation.h │ │ │ │ │ ├── CalendarUIKit.h │ │ │ │ │ ├── CallHistory.h │ │ │ │ │ ├── CameraKit.h │ │ │ │ │ ├── CameraUI.h │ │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ │ ├── CarKit.h │ │ │ │ │ ├── Celestial.h │ │ │ │ │ ├── CellularPlanManager.h │ │ │ │ │ ├── CertInfo.h │ │ │ │ │ ├── CertUI.h │ │ │ │ │ ├── CharlieKit.h │ │ │ │ │ ├── ChatKit.h │ │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ │ ├── CloudDocs.h │ │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ │ ├── CloudServices.h │ │ │ │ │ ├── ColorSync.h │ │ │ │ │ ├── CommonAuth.h │ │ │ │ │ ├── CommonUtilities.h │ │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ │ ├── CompanionCamera.h │ │ │ │ │ ├── CompanionFindMy.h │ │ │ │ │ ├── CompanionSync.h │ │ │ │ │ ├── CompassUI.h │ │ │ │ │ ├── Conference.h │ │ │ │ │ ├── ConstantClasses.h │ │ │ │ │ ├── ContactsAutocomplete.h │ │ │ │ │ ├── ContactsFoundation.h │ │ │ │ │ ├── ContentIndex.h │ │ │ │ │ ├── CoreAUC.h │ │ │ │ │ ├── CoreActivity.h │ │ │ │ │ ├── CoreBrightness.h │ │ │ │ │ ├── CoreCDP.h │ │ │ │ │ ├── CoreCDPUI.h │ │ │ │ │ ├── CoreCapture.h │ │ │ │ │ ├── CoreCaptureControl.h │ │ │ │ │ ├── CoreCaptureDaemon.h │ │ │ │ │ ├── CoreDAV.h │ │ │ │ │ ├── CoreDuet.h │ │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ │ ├── CoreFollowUp.h │ │ │ │ │ ├── CoreFollowUpUI.h │ │ │ │ │ ├── CoreHAP.h │ │ │ │ │ ├── CoreHandwriting.h │ │ │ │ │ ├── CoreMediaStream.h │ │ │ │ │ ├── CoreMotionCommon.h │ │ │ │ │ ├── CoreNLP.h │ │ │ │ │ ├── CoreOptimization.h │ │ │ │ │ ├── CorePDF.h │ │ │ │ │ ├── CorePrediction.h │ │ │ │ │ ├── CoreRC.h │ │ │ │ │ ├── CoreRecents.h │ │ │ │ │ ├── CoreRecognition.h │ │ │ │ │ ├── CoreRoutine.h │ │ │ │ │ ├── CoreSDB.h │ │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ │ ├── CoreSuggestions.h │ │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ │ ├── CoreSymbolication.h │ │ │ │ │ ├── CoreTelephonyBypass.h │ │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ │ ├── CoreTime.h │ │ │ │ │ ├── CoreUI.h │ │ │ │ │ ├── CoreUtils.h │ │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ │ ├── Crucible.h │ │ │ │ │ ├── CryptoTokenKit.h │ │ │ │ │ ├── DAAPKit.h │ │ │ │ │ ├── DCIMServices.h │ │ │ │ │ ├── DataAccess.h │ │ │ │ │ ├── DataAccessExpress.h │ │ │ │ │ ├── DataAccessUI.h │ │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ │ ├── DataMigration.h │ │ │ │ │ ├── DeviceOMatic.h │ │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ │ ├── DiagnosticExtensions.h │ │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ │ ├── DictionaryServices.h │ │ │ │ │ ├── DiskSpaceDiagnostics.h │ │ │ │ │ ├── Duet.h │ │ │ │ │ ├── DuetExpertCenter.h │ │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ │ ├── DuetRecommendation.h │ │ │ │ │ ├── EAFirmwareUpdater.h │ │ │ │ │ ├── EAP8021X.h │ │ │ │ │ ├── ETPeople.h │ │ │ │ │ ├── EasyConfig.h │ │ │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ │ │ ├── FMCore.h │ │ │ │ │ ├── FMCoreLite.h │ │ │ │ │ ├── FMCoreUI.h │ │ │ │ │ ├── FMF.h │ │ │ │ │ ├── FMFUI.h │ │ │ │ │ ├── FTAWD.h │ │ │ │ │ ├── FTClientServices.h │ │ │ │ │ ├── FTServices.h │ │ │ │ │ ├── FaceCore.h │ │ │ │ │ ├── FamilyCircle.h │ │ │ │ │ ├── FamilyNotification.h │ │ │ │ │ ├── FileProvider.h │ │ │ │ │ ├── FindMyDevice.h │ │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ │ ├── FitnessUI.h │ │ │ │ │ ├── FlightRecorder.h │ │ │ │ │ ├── FlightUtilities.h │ │ │ │ │ ├── FontServices.h │ │ │ │ │ ├── FoundationODR.h │ │ │ │ │ ├── FrontBoard.h │ │ │ │ │ ├── FrontBoardServices.h │ │ │ │ │ ├── FuseUI.h │ │ │ │ │ ├── Futhark.h │ │ │ │ │ ├── GPUCompiler.h │ │ │ │ │ ├── GPUSupport.h │ │ │ │ │ ├── GameCenter.h │ │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ │ ├── GameCenterUI.h │ │ │ │ │ ├── GameKitServices.h │ │ │ │ │ ├── GenerationalStorage.h │ │ │ │ │ ├── GeoServices.h │ │ │ │ │ ├── GraphicsServices.h │ │ │ │ │ ├── H6ISPServices.h │ │ │ │ │ ├── HSAAuthentication.h │ │ │ │ │ ├── HangTracer.h │ │ │ │ │ ├── HealthDaemon.h │ │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ │ ├── HealthKitUI.h │ │ │ │ │ ├── Heimdal.h │ │ │ │ │ ├── HelpKit.h │ │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ │ ├── HomeSharing.h │ │ │ │ │ ├── IAP.h │ │ │ │ │ ├── IAPAuthentication.h │ │ │ │ │ ├── IDS.h │ │ │ │ │ ├── IDSFoundation.h │ │ │ │ │ ├── IMAVCore.h │ │ │ │ │ ├── IMCore.h │ │ │ │ │ ├── IMDMessageServices.h │ │ │ │ │ ├── IMDPersistence.h │ │ │ │ │ ├── IMDaemonCore.h │ │ │ │ │ ├── IMFoundation.h │ │ │ │ │ ├── IMTranscoding.h │ │ │ │ │ ├── IMTransferServices.h │ │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ │ ├── IOAccelerator.h │ │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ │ ├── IOSurface.h │ │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ │ ├── IPTelephony.h │ │ │ │ │ ├── ITMLKit.h │ │ │ │ │ ├── ImageCapture.h │ │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ │ ├── InternalPreferences.h │ │ │ │ │ ├── InternationalTextSearch.h │ │ │ │ │ ├── IntlPreferences.h │ │ │ │ │ ├── Jet.h │ │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ │ ├── LanguageModeling.h │ │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ │ ├── LegacyGameKit.h │ │ │ │ │ ├── MIME.h │ │ │ │ │ ├── MMCS.h │ │ │ │ │ ├── MMCSServices.h │ │ │ │ │ ├── MPUFoundation.h │ │ │ │ │ ├── MTLCompiler.h │ │ │ │ │ ├── MailServices.h │ │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ │ ├── MapsSupport.h │ │ │ │ │ ├── Marco.h │ │ │ │ │ ├── MarkupUI.h │ │ │ │ │ ├── MediaControlSender.h │ │ │ │ │ ├── MediaLibrary.h │ │ │ │ │ ├── MediaLibraryCore.h │ │ │ │ │ ├── MediaPlatform.h │ │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ │ ├── MediaRemote.h │ │ │ │ │ ├── MediaServices.h │ │ │ │ │ ├── MediaSocial.h │ │ │ │ │ ├── MediaStream.h │ │ │ │ │ ├── Message.h │ │ │ │ │ ├── MessageProtection.h │ │ │ │ │ ├── MessageSupport.h │ │ │ │ │ ├── MetalTools.h │ │ │ │ │ ├── MobileAccessoryUpdater.h │ │ │ │ │ ├── MobileActivation.h │ │ │ │ │ ├── MobileAsset.h │ │ │ │ │ ├── MobileAssetUpdater.h │ │ │ │ │ ├── MobileBackup.h │ │ │ │ │ ├── MobileBluetooth.h │ │ │ │ │ ├── MobileContainerManager.h │ │ │ │ │ ├── MobileDelete.h │ │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ │ ├── MobileIcons.h │ │ │ │ │ ├── MobileInstallation.h │ │ │ │ │ ├── MobileKeyBag.h │ │ │ │ │ ├── MobileLookup.h │ │ │ │ │ ├── MobileObliteration.h │ │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ │ ├── MobileStorage.h │ │ │ │ │ ├── MobileSync.h │ │ │ │ │ ├── MobileSystemServices.h │ │ │ │ │ ├── MobileTimer.h │ │ │ │ │ ├── MobileWiFi.h │ │ │ │ │ ├── MultitouchSupport.h │ │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ │ ├── MusicLibrary.h │ │ │ │ │ ├── MusicStoreUI.h │ │ │ │ │ ├── NCLaunchStats.h │ │ │ │ │ ├── NanoAppRegistry.h │ │ │ │ │ ├── NanoAudioControl.h │ │ │ │ │ ├── NanoBackup.h │ │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ │ ├── NanoLeash.h │ │ │ │ │ ├── NanoMailKitServer.h │ │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ │ ├── NanoMusicSync.h │ │ │ │ │ ├── NanoPassKit.h │ │ │ │ │ ├── NanoPhonePerfTesting.h │ │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ │ ├── NanoRegistry.h │ │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ │ ├── NanoTimeKitCompanion.h │ │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ │ ├── Netrb.h │ │ │ │ │ ├── Network.h │ │ │ │ │ ├── NetworkStatistics.h │ │ │ │ │ ├── Notes.h │ │ │ │ │ ├── NotesShared.h │ │ │ │ │ ├── NotificationsUI.h │ │ │ │ │ ├── OAuth.h │ │ │ │ │ ├── OfficeImport.h │ │ │ │ │ ├── OpenCL.h │ │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ │ ├── PacketFilter.h │ │ │ │ │ ├── PairedSync.h │ │ │ │ │ ├── PairedUnlock.h │ │ │ │ │ ├── Parsec.h │ │ │ │ │ ├── ParsecSubscriptionServiceSupport.h │ │ │ │ │ ├── PassKitCore.h │ │ │ │ │ ├── Pegasus.h │ │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ │ ├── PersistentConnection.h │ │ │ │ │ ├── PhotoBoothEffects.h │ │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ │ ├── PhotoLibrary.h │ │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ │ ├── PhotosFormats.h │ │ │ │ │ ├── PhotosPlayer.h │ │ │ │ │ ├── PhysicsKit.h │ │ │ │ │ ├── PlugInKit.h │ │ │ │ │ ├── PowerLog.h │ │ │ │ │ ├── PowerlogAccounting.h │ │ │ │ │ ├── PowerlogControl.h │ │ │ │ │ ├── PowerlogCore.h │ │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ │ ├── PowerlogHelperdOperators.h │ │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ │ ├── Preferences.h │ │ │ │ │ ├── PreferencesUI.h │ │ │ │ │ ├── PrintKit.h │ │ │ │ │ ├── ProgressUI.h │ │ │ │ │ ├── ProofReader.h │ │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ │ ├── ProxiedCrashCopierClient.h │ │ │ │ │ ├── Quagga.h │ │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ │ ├── RTCReporting.h │ │ │ │ │ ├── RadioUI.h │ │ │ │ │ ├── RemindersUI.h │ │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ │ ├── RemoteUI.h │ │ │ │ │ ├── ResponseKit.h │ │ │ │ │ ├── SAObjects.h │ │ │ │ │ ├── SDAPI.h │ │ │ │ │ ├── SafariSafeBrowsing.h │ │ │ │ │ ├── SafariShared.h │ │ │ │ │ ├── ScreenReaderBrailleDriver.h │ │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ │ ├── ScreenReaderOutput.h │ │ │ │ │ ├── ScreenReaderOutputServer.h │ │ │ │ │ ├── Search.h │ │ │ │ │ ├── SearchUI.h │ │ │ │ │ ├── ServerAccounts.h │ │ │ │ │ ├── ServerDocsProtocol.h │ │ │ │ │ ├── ServiceManagement.h │ │ │ │ │ ├── SetupAssistant.h │ │ │ │ │ ├── SetupAssistantUI.h │ │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ │ ├── Sharing.h │ │ │ │ │ ├── SiriTasks.h │ │ │ │ │ ├── SiriUICore.h │ │ │ │ │ ├── SlideshowKit.h │ │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ │ ├── Speech.h │ │ │ │ │ ├── SplashBoard.h │ │ │ │ │ ├── Spotlight.h │ │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ │ ├── SpotlightUI.h │ │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ │ ├── SpringBoardServices.h │ │ │ │ │ ├── SpringBoardUI.h │ │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ │ ├── Stocks.h │ │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ │ ├── StoreKitUI.h │ │ │ │ │ ├── StoreServices.h │ │ │ │ │ ├── StoreServicesCore.h │ │ │ │ │ ├── StreamingZip.h │ │ │ │ │ ├── Symbolication.h │ │ │ │ │ ├── Symptoms.h │ │ │ │ │ ├── SyncedDefaults.h │ │ │ │ │ ├── TCC.h │ │ │ │ │ ├── TSReading.h │ │ │ │ │ ├── TSUtility.h │ │ │ │ │ ├── TelephonyRPC.h │ │ │ │ │ ├── TelephonyUI.h │ │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ │ ├── TextInput.h │ │ │ │ │ ├── TextToSpeech.h │ │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ │ ├── Tips.h │ │ │ │ │ ├── ToneKit.h │ │ │ │ │ ├── ToneLibrary.h │ │ │ │ │ ├── TouchRemote.h │ │ │ │ │ ├── UIAccessibility.h │ │ │ │ │ ├── UIFoundation.h │ │ │ │ │ ├── UITriggerVC.h │ │ │ │ │ ├── UserActivity.h │ │ │ │ │ ├── UserFS.h │ │ │ │ │ ├── UserNotification.h │ │ │ │ │ ├── UserNotificationServices.h │ │ │ │ │ ├── VPNUtilities.h │ │ │ │ │ ├── VUSocialUpload.h │ │ │ │ │ ├── VectorKit.h │ │ │ │ │ ├── VideoProcessing.h │ │ │ │ │ ├── VideoUpload.h │ │ │ │ │ ├── VisualAlert.h │ │ │ │ │ ├── VisualVoicemail.h │ │ │ │ │ ├── VoiceMemos.h │ │ │ │ │ ├── VoiceServices.h │ │ │ │ │ ├── VoiceTrigger.h │ │ │ │ │ ├── VoiceTriggerUI.h │ │ │ │ │ ├── VoicemailStore.h │ │ │ │ │ ├── Weather.h │ │ │ │ │ ├── WeatherUI.h │ │ │ │ │ ├── WebApp.h │ │ │ │ │ ├── WebBookmarks.h │ │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ │ ├── WebCore.h │ │ │ │ │ ├── WebInspector.h │ │ │ │ │ ├── WebKitLegacy.h │ │ │ │ │ ├── WebUI.h │ │ │ │ │ ├── WelcomeKit.h │ │ │ │ │ ├── WelcomeKitCore.h │ │ │ │ │ ├── WelcomeKitUI.h │ │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ │ ├── WiFiLogCapture.h │ │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ │ ├── WirelessProximity.h │ │ │ │ │ ├── XPCKit.h │ │ │ │ │ ├── XPCService.h │ │ │ │ │ ├── YouTube.h │ │ │ │ │ ├── iAdCore.h │ │ │ │ │ ├── iAdDeveloper.h │ │ │ │ │ ├── iAdServices.h │ │ │ │ │ ├── iCalendar.h │ │ │ │ │ ├── iCloudNotification.h │ │ │ │ │ ├── iOSDiagnostics.h │ │ │ │ │ ├── iOSDiagnosticsSupport.h │ │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ │ ├── iTunesStore.h │ │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ │ ├── iWorkImport.h │ │ │ │ │ ├── kperf.h │ │ │ │ │ ├── kperfdata.h │ │ │ │ │ ├── oncrpc.h │ │ │ │ │ └── vCard.h │ │ │ │ └── iPhoneOS9.0.sdk │ │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AdSupport.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AddressBookUI.h │ │ │ │ ├── AssetsLibrary.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── ContactsUI.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreSpotlight.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventKitUI.h │ │ │ │ ├── ExternalAccessory.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── GameplayKit.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaPlayer.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── MessageUI.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MetalKit.h │ │ │ │ ├── MetalPerformanceShaders.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── ModelIO.h │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NewsstandKit.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenGLES.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PhotosUI.h │ │ │ │ ├── PushKit.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── ReplayKit.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── Twitter.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WatchConnectivity.h │ │ │ │ ├── WatchKit.h │ │ │ │ ├── WebKit.h │ │ │ │ └── iAd.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── ABLE.h │ │ │ │ ├── ABLEModel.h │ │ │ │ ├── ACTFramework.h │ │ │ │ ├── AGXCompilerConnection.h │ │ │ │ ├── AGXCompilerCore.h │ │ │ │ ├── AITTarget.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── APTransport.h │ │ │ │ ├── ATFoundation.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountNotification.h │ │ │ │ ├── AccountSettings.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirPlayForCarDisplaySim.h │ │ │ │ ├── AirPlayReceiver.h │ │ │ │ ├── AirPlaySender.h │ │ │ │ ├── AirPlaySupport.h │ │ │ │ ├── AirPortAssistant.h │ │ │ │ ├── AirTraffic.h │ │ │ │ ├── AirTrafficDevice.h │ │ │ │ ├── AnnotationKit.h │ │ │ │ ├── AppConduit.h │ │ │ │ ├── AppLaunchStats.h │ │ │ │ ├── AppStoreUI.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleAccountUI.h │ │ │ │ ├── AppleBasebandManager.h │ │ │ │ ├── AppleBasebandServices.h │ │ │ │ ├── AppleFSCompression.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePDPHelper.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleSauce.h │ │ │ │ ├── AppleSerialMultiplexer.h │ │ │ │ ├── AppleVXD375Framework.h │ │ │ │ ├── AppleVXD390Framework.h │ │ │ │ ├── AskPermission.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetCacheServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── AuthKitUI.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BackgroundTaskAgent.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BaseBoardUI.h │ │ │ │ ├── BatteryCenter.h │ │ │ │ ├── BiometricKit.h │ │ │ │ ├── BiometricKitUI.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BridgePreferences.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── BulletinDistributorCompanion.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarDaemon.h │ │ │ │ ├── CalendarDatabase.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CameraUI.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── CarKit.h │ │ │ │ ├── Celestial.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── CharlieKit.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ ├── CompanionCamera.h │ │ │ │ ├── CompanionFindMy.h │ │ │ │ ├── CompanionSync.h │ │ │ │ ├── CompassUI.h │ │ │ │ ├── Conference.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContactsAutocomplete.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreAUC.h │ │ │ │ ├── CoreActivity.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreCDP.h │ │ │ │ ├── CoreCDPUI.h │ │ │ │ ├── CoreCapture.h │ │ │ │ ├── CoreCaptureControl.h │ │ │ │ ├── CoreCaptureDaemon.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreDuet.h │ │ │ │ ├── CoreDuetDaemonProtocol.h │ │ │ │ ├── CoreDuetDataModel.h │ │ │ │ ├── CoreDuetDebugLogging.h │ │ │ │ ├── CoreDuetStatistics.h │ │ │ │ ├── CoreFollowUp.h │ │ │ │ ├── CoreFollowUpUI.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreMotionCommon.h │ │ │ │ ├── CoreNLP.h │ │ │ │ ├── CoreOptimization.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRC.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRecognition.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSuggestions.h │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreTelephonyBypass.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ ├── Crucible.h │ │ │ │ ├── CryptoTokenKit.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataAccessUI.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DeviceOMatic.h │ │ │ │ ├── DeviceToDeviceManager.h │ │ │ │ ├── DiagnosticExtensions.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── DiskSpaceDiagnostics.h │ │ │ │ ├── Duet.h │ │ │ │ ├── DuetExpertCenter.h │ │ │ │ ├── DuetNetworkClient.h │ │ │ │ ├── DuetPLLConfigLogger.h │ │ │ │ ├── DuetRecommendation.h │ │ │ │ ├── EAFirmwareUpdater.h │ │ │ │ ├── EAP8021X.h │ │ │ │ ├── ETPeople.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ │ ├── FMCore.h │ │ │ │ ├── FMCoreLite.h │ │ │ │ ├── FMCoreUI.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FMFUI.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FamilyCircle.h │ │ │ │ ├── FamilyNotification.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ ├── FitnessUI.h │ │ │ │ ├── FlightRecorder.h │ │ │ │ ├── FlightUtilities.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FoundationODR.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── FuseUI.h │ │ │ │ ├── Futhark.h │ │ │ │ ├── GPUCompiler.h │ │ │ │ ├── GPUSupport.h │ │ │ │ ├── GameCenter.h │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ ├── GameCenterUI.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── H6ISPServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HangTracer.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ ├── HealthKitUI.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HelpKit.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IAPAuthentication.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── IOAccelMemoryInfo.h │ │ │ │ ├── IOAccelerator.h │ │ │ │ ├── IOMobileFramebuffer.h │ │ │ │ ├── IOSurface.h │ │ │ │ ├── IOSurfaceAccelerator.h │ │ │ │ ├── IPTelephony.h │ │ │ │ ├── ITMLKit.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── InternalPreferences.h │ │ │ │ ├── InternationalTextSearch.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── Jet.h │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── LegacyGameKit.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MTLCompiler.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MarkupUI.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaLibrary.h │ │ │ │ ├── MediaLibraryCore.h │ │ │ │ ├── MediaPlatform.h │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaSocial.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageProtection.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MetalTools.h │ │ │ │ ├── MobileAccessoryUpdater.h │ │ │ │ ├── MobileActivation.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileAssetUpdater.h │ │ │ │ ├── MobileBackup.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDelete.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileKeyBag.h │ │ │ │ ├── MobileLookup.h │ │ │ │ ├── MobileObliteration.h │ │ │ │ ├── MobileSoftwareUpdate.h │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ ├── MobileStorage.h │ │ │ │ ├── MobileSync.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MobileWiFi.h │ │ │ │ ├── MultitouchSupport.h │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── MusicStoreUI.h │ │ │ │ ├── NCLaunchStats.h │ │ │ │ ├── NanoAppRegistry.h │ │ │ │ ├── NanoAudioControl.h │ │ │ │ ├── NanoBackup.h │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ ├── NanoLeash.h │ │ │ │ ├── NanoMailKitServer.h │ │ │ │ ├── NanoMediaRemote.h │ │ │ │ ├── NanoMusicSync.h │ │ │ │ ├── NanoPassKit.h │ │ │ │ ├── NanoPhonePerfTesting.h │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ ├── NanoRegistry.h │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ ├── NanoTimeKitCompanion.h │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ ├── Netrb.h │ │ │ │ ├── Network.h │ │ │ │ ├── NetworkStatistics.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotesShared.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── OpenCL.h │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ ├── PacketFilter.h │ │ │ │ ├── PairedSync.h │ │ │ │ ├── PairedUnlock.h │ │ │ │ ├── Parsec.h │ │ │ │ ├── ParsecSubscriptionServiceSupport.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── Pegasus.h │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoBoothEffects.h │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ ├── PhotoLibrary.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhotosPlayer.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── PowerLog.h │ │ │ │ ├── PowerlogAccounting.h │ │ │ │ ├── PowerlogControl.h │ │ │ │ ├── PowerlogCore.h │ │ │ │ ├── PowerlogDatabaseReader.h │ │ │ │ ├── PowerlogFullOperators.h │ │ │ │ ├── PowerlogHelperdOperators.h │ │ │ │ ├── PowerlogLiteOperators.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PreferencesUI.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProgressUI.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── ProxiedCrashCopierClient.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── RadioUI.h │ │ │ │ ├── RemindersUI.h │ │ │ │ ├── RemoteMediaServices.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── SDAPI.h │ │ │ │ ├── SafariSafeBrowsing.h │ │ │ │ ├── SafariShared.h │ │ │ │ ├── ScreenReaderBrailleDriver.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── ScreenReaderOutput.h │ │ │ │ ├── ScreenReaderOutputServer.h │ │ │ │ ├── Search.h │ │ │ │ ├── SearchUI.h │ │ │ │ ├── ServerAccounts.h │ │ │ │ ├── ServerDocsProtocol.h │ │ │ │ ├── ServiceManagement.h │ │ │ │ ├── SetupAssistant.h │ │ │ │ ├── SetupAssistantUI.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SiriTasks.h │ │ │ │ ├── SiriUICore.h │ │ │ │ ├── SlideshowKit.h │ │ │ │ ├── SoftwareBehaviorServices.h │ │ │ │ ├── SoftwareUpdateBridge.h │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ ├── Speech.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── Spotlight.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ ├── SpotlightUI.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── Stocks.h │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ ├── StoreKitUI.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StoreServicesCore.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── Symptoms.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TSReading.h │ │ │ │ ├── TSUtility.h │ │ │ │ ├── TelephonyRPC.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TelephonyXPCClient.h │ │ │ │ ├── TelephonyXPCServer.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ThermalMonitorExporter.h │ │ │ │ ├── Tips.h │ │ │ │ ├── ToneKit.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── TouchRemote.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UITriggerVC.h │ │ │ │ ├── UserActivity.h │ │ │ │ ├── UserFS.h │ │ │ │ ├── UserNotification.h │ │ │ │ ├── UserNotificationServices.h │ │ │ │ ├── VPNUtilities.h │ │ │ │ ├── VUSocialUpload.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoProcessing.h │ │ │ │ ├── VideoUpload.h │ │ │ │ ├── VisualAlert.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceMemos.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoiceTrigger.h │ │ │ │ ├── VoiceTriggerUI.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── Weather.h │ │ │ │ ├── WeatherUI.h │ │ │ │ ├── WebApp.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebInspector.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WebUI.h │ │ │ │ ├── WelcomeKit.h │ │ │ │ ├── WelcomeKitCore.h │ │ │ │ ├── WelcomeKitUI.h │ │ │ │ ├── WiFiCloudSyncEngine.h │ │ │ │ ├── WiFiLogCapture.h │ │ │ │ ├── WirelessCoexManager.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── WirelessProximity.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── XPCService.h │ │ │ │ ├── YouTube.h │ │ │ │ ├── iAdCore.h │ │ │ │ ├── iAdDeveloper.h │ │ │ │ ├── iAdServices.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iCloudNotification.h │ │ │ │ ├── iOSDiagnostics.h │ │ │ │ ├── iOSDiagnosticsSupport.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ ├── iWorkImport.h │ │ │ │ ├── kperf.h │ │ │ │ ├── kperfdata.h │ │ │ │ ├── oncrpc.h │ │ │ │ └── vCard.h │ │ └── iPhoneSimulator.platform │ │ │ └── Developer │ │ │ ├── Library │ │ │ ├── Frameworks │ │ │ │ └── XCTest.h │ │ │ ├── PrivateFrameworks │ │ │ │ ├── DVTPlaygroundCommunication.h │ │ │ │ ├── IBAutolayoutFoundation.h │ │ │ │ ├── IBCocoaTouchToolFoundation.h │ │ │ │ ├── IBFoundation.h │ │ │ │ ├── IDEBundleInjection.h │ │ │ │ ├── PlaygroundLogger.h │ │ │ │ └── XCPlayground.h │ │ │ └── Xcode │ │ │ │ └── PrivatePlugIns │ │ │ │ ├── IBCocoaTouchBuildSupport.h │ │ │ │ ├── IDEInterfaceBuilderiOSIntegration.h │ │ │ │ └── iCloudSupportTouch.h │ │ │ └── SDKs │ │ │ ├── iPhoneSimulator.sdk │ │ │ ├── Applications │ │ │ │ ├── News.app │ │ │ │ │ └── Frameworks │ │ │ │ │ │ ├── NewsCore.h │ │ │ │ │ │ ├── NewsTransport.h │ │ │ │ │ │ └── Silex.h │ │ │ │ └── ServerDocuments.app │ │ │ │ │ └── Frameworks │ │ │ │ │ └── ServerDocsClient.h │ │ │ ├── Developer │ │ │ │ └── Library │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── DTDDISupport.h │ │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ │ ├── DVTInstrumentsUtilities.h │ │ │ │ │ ├── ScriptProcessor.h │ │ │ │ │ └── UIAutomation.h │ │ │ └── System │ │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── Accelerate.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── AdSupport.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AddressBookUI.h │ │ │ │ ├── ApplicationServices.h │ │ │ │ ├── AssetsLibrary.h │ │ │ │ ├── AudioToolbox.h │ │ │ │ ├── AudioUnit.h │ │ │ │ ├── CFNetwork.h │ │ │ │ ├── CloudKit.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── ContactsUI.h │ │ │ │ ├── CoreAudio.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── CoreBluetooth.h │ │ │ │ ├── CoreData.h │ │ │ │ ├── CoreFoundation.h │ │ │ │ ├── CoreGraphics.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── CoreMedia.h │ │ │ │ ├── CoreMotion.h │ │ │ │ ├── CoreSpotlight.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── CoreVideo.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventKitUI.h │ │ │ │ ├── ExternalAccessory.h │ │ │ │ ├── Foundation.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── GSS.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameKit.h │ │ │ │ ├── GameplayKit.h │ │ │ │ ├── HealthKit.h │ │ │ │ ├── HomeKit.h │ │ │ │ ├── IOKit.h │ │ │ │ ├── ImageIO.h │ │ │ │ ├── JavaScriptCore.h │ │ │ │ ├── LocalAuthentication.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── MediaAccessibility.h │ │ │ │ ├── MediaPlayer.h │ │ │ │ ├── MediaToolbox.h │ │ │ │ ├── MessageUI.h │ │ │ │ ├── Metal.h │ │ │ │ ├── MobileCoreServices.h │ │ │ │ ├── ModelIO.h │ │ │ │ ├── MultipeerConnectivity.h │ │ │ │ ├── NetworkExtension.h │ │ │ │ ├── NewsstandKit.h │ │ │ │ ├── NotificationCenter.h │ │ │ │ ├── OpenAL.h │ │ │ │ ├── OpenGLES.h │ │ │ │ ├── PassKit.h │ │ │ │ ├── Photos.h │ │ │ │ ├── PhotosUI.h │ │ │ │ ├── PushKit.h │ │ │ │ ├── QuartzCore.h │ │ │ │ ├── QuickLook.h │ │ │ │ ├── ReplayKit.h │ │ │ │ ├── SafariServices.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── Security.h │ │ │ │ ├── Social.h │ │ │ │ ├── SpriteKit.h │ │ │ │ ├── StoreKit.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── Twitter.h │ │ │ │ ├── UIKit.h │ │ │ │ ├── VideoToolbox.h │ │ │ │ ├── WatchConnectivity.h │ │ │ │ ├── WatchKit.h │ │ │ │ ├── WebKit.h │ │ │ │ └── iAd.h │ │ │ │ ├── LocationBundles │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── Parsec.h │ │ │ │ └── iAdCore.h │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── AITTarget.h │ │ │ │ ├── AOSKit.h │ │ │ │ ├── AOSNotification.h │ │ │ │ ├── AXRuntime.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── AccessibilityUtilities.h │ │ │ │ ├── AccountNotification.h │ │ │ │ ├── AccountSettings.h │ │ │ │ ├── AccountsDaemon.h │ │ │ │ ├── AccountsUI.h │ │ │ │ ├── AggregateDictionary.h │ │ │ │ ├── AggregateDictionaryHistory.h │ │ │ │ ├── AirPlaySupport.h │ │ │ │ ├── AnnotationKit.h │ │ │ │ ├── AppConduit.h │ │ │ │ ├── AppStoreUI.h │ │ │ │ ├── AppSupport.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleAccountUI.h │ │ │ │ ├── AppleIDAuthSupport.h │ │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ │ ├── AppleJPEG.h │ │ │ │ ├── AppleLDAP.h │ │ │ │ ├── ApplePushService.h │ │ │ │ ├── AppleSRP.h │ │ │ │ ├── AppleSauce.h │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── AssetCacheServices.h │ │ │ │ ├── AssetsLibraryServices.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── AuthKitUI.h │ │ │ │ ├── BTLEAudioController.h │ │ │ │ ├── BackBoardServices.h │ │ │ │ ├── BaseBoard.h │ │ │ │ ├── BaseBoardUI.h │ │ │ │ ├── BatteryCenter.h │ │ │ │ ├── BiometricKit.h │ │ │ │ ├── BluetoothManager.h │ │ │ │ ├── Bom.h │ │ │ │ ├── BookmarkDAV.h │ │ │ │ ├── BridgePreferences.h │ │ │ │ ├── BulletinBoard.h │ │ │ │ ├── BulletinDistributorCompanion.h │ │ │ │ ├── CPMLBestShim.h │ │ │ │ ├── CacheDelete.h │ │ │ │ ├── CalDAV.h │ │ │ │ ├── Calculate.h │ │ │ │ ├── CalendarDaemon.h │ │ │ │ ├── CalendarDatabase.h │ │ │ │ ├── CalendarFoundation.h │ │ │ │ ├── CalendarUIKit.h │ │ │ │ ├── CallHistory.h │ │ │ │ ├── CameraKit.h │ │ │ │ ├── CameraUI.h │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── CarKit.h │ │ │ │ ├── Celestial.h │ │ │ │ ├── CellularPlanManager.h │ │ │ │ ├── CertInfo.h │ │ │ │ ├── CertUI.h │ │ │ │ ├── ChatKit.h │ │ │ │ ├── ChunkingLibrary.h │ │ │ │ ├── CloudDocs.h │ │ │ │ ├── CloudDocsDaemon.h │ │ │ │ ├── CloudKitDaemon.h │ │ │ │ ├── CloudPhotoLibrary.h │ │ │ │ ├── CloudServices.h │ │ │ │ ├── ColorSync.h │ │ │ │ ├── CommonAuth.h │ │ │ │ ├── CommonUtilities.h │ │ │ │ ├── CommunicationsFilter.h │ │ │ │ ├── CommunicationsSetupUI.h │ │ │ │ ├── CompanionFindMy.h │ │ │ │ ├── CompanionSync.h │ │ │ │ ├── Conference.h │ │ │ │ ├── ConstantClasses.h │ │ │ │ ├── ContactsAutocomplete.h │ │ │ │ ├── ContactsFoundation.h │ │ │ │ ├── ContentIndex.h │ │ │ │ ├── CoreBrightness.h │ │ │ │ ├── CoreCDP.h │ │ │ │ ├── CoreCDPUI.h │ │ │ │ ├── CoreDAV.h │ │ │ │ ├── CoreHAP.h │ │ │ │ ├── CoreHandwriting.h │ │ │ │ ├── CoreMediaStream.h │ │ │ │ ├── CoreNLP.h │ │ │ │ ├── CoreOptimization.h │ │ │ │ ├── CorePDF.h │ │ │ │ ├── CorePrediction.h │ │ │ │ ├── CoreRecents.h │ │ │ │ ├── CoreRoutine.h │ │ │ │ ├── CoreSDB.h │ │ │ │ ├── CoreServicesInternal.h │ │ │ │ ├── CoreSuggestions.h │ │ │ │ ├── CoreSuggestionsInternals.h │ │ │ │ ├── CoreSymbolication.h │ │ │ │ ├── CoreThemeDefinition.h │ │ │ │ ├── CoreTime.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CryptoTokenKit.h │ │ │ │ ├── DAAPKit.h │ │ │ │ ├── DCIMServices.h │ │ │ │ ├── DataAccess.h │ │ │ │ ├── DataAccessExpress.h │ │ │ │ ├── DataAccessUI.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ │ ├── DataDetectorsUI.h │ │ │ │ ├── DataMigration.h │ │ │ │ ├── DiagnosticExtensions.h │ │ │ │ ├── DiagnosticLogCollection.h │ │ │ │ ├── DictionaryServices.h │ │ │ │ ├── EasyConfig.h │ │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ │ ├── FMCore.h │ │ │ │ ├── FMCoreLite.h │ │ │ │ ├── FMCoreUI.h │ │ │ │ ├── FMF.h │ │ │ │ ├── FMFUI.h │ │ │ │ ├── FTAWD.h │ │ │ │ ├── FTClientServices.h │ │ │ │ ├── FTServices.h │ │ │ │ ├── FaceCore.h │ │ │ │ ├── FileProvider.h │ │ │ │ ├── FindMyDevice.h │ │ │ │ ├── FindMyDeviceUI.h │ │ │ │ ├── FitnessUI.h │ │ │ │ ├── FlightUtilities.h │ │ │ │ ├── FontServices.h │ │ │ │ ├── FoundationODR.h │ │ │ │ ├── FrontBoard.h │ │ │ │ ├── FrontBoardServices.h │ │ │ │ ├── FuseUI.h │ │ │ │ ├── Futhark.h │ │ │ │ ├── GameCenter.h │ │ │ │ ├── GameCenterFoundation.h │ │ │ │ ├── GameCenterPrivateUI.h │ │ │ │ ├── GameCenterUI.h │ │ │ │ ├── GameKitServices.h │ │ │ │ ├── GenerationalStorage.h │ │ │ │ ├── GeoServices.h │ │ │ │ ├── GraphicsServices.h │ │ │ │ ├── HSAAuthentication.h │ │ │ │ ├── HealthDaemon.h │ │ │ │ ├── HealthKitExtensions.h │ │ │ │ ├── HealthKitUI.h │ │ │ │ ├── Heimdal.h │ │ │ │ ├── HelpKit.h │ │ │ │ ├── HomeKitDaemon.h │ │ │ │ ├── HomeSharing.h │ │ │ │ ├── IAP.h │ │ │ │ ├── IDS.h │ │ │ │ ├── IDSFoundation.h │ │ │ │ ├── IDSSimulatorSupport.h │ │ │ │ ├── IMAVCore.h │ │ │ │ ├── IMCore.h │ │ │ │ ├── IMDMessageServices.h │ │ │ │ ├── IMDPersistence.h │ │ │ │ ├── IMDaemonCore.h │ │ │ │ ├── IMFoundation.h │ │ │ │ ├── IMTranscoding.h │ │ │ │ ├── IMTransferServices.h │ │ │ │ ├── ITMLKit.h │ │ │ │ ├── ImageCapture.h │ │ │ │ ├── IncomingCallFilter.h │ │ │ │ ├── InternalPreferences.h │ │ │ │ ├── InternationalTextSearch.h │ │ │ │ ├── IntlPreferences.h │ │ │ │ ├── Jet.h │ │ │ │ ├── KeyboardArbiter.h │ │ │ │ ├── LanguageModeling.h │ │ │ │ ├── LatentSemanticMapping.h │ │ │ │ ├── LegacyGameKit.h │ │ │ │ ├── MIME.h │ │ │ │ ├── MMCS.h │ │ │ │ ├── MMCSServices.h │ │ │ │ ├── MPUFoundation.h │ │ │ │ ├── MailServices.h │ │ │ │ ├── ManagedConfiguration.h │ │ │ │ ├── MapsSupport.h │ │ │ │ ├── Marco.h │ │ │ │ ├── MarkupUI.h │ │ │ │ ├── MediaControlReceiver.h │ │ │ │ ├── MediaControlSender.h │ │ │ │ ├── MediaLibrary.h │ │ │ │ ├── MediaLibraryCore.h │ │ │ │ ├── MediaPlatform.h │ │ │ │ ├── MediaPlayerUI.h │ │ │ │ ├── MediaRemote.h │ │ │ │ ├── MediaServices.h │ │ │ │ ├── MediaSocial.h │ │ │ │ ├── MediaStream.h │ │ │ │ ├── Message.h │ │ │ │ ├── MessageSupport.h │ │ │ │ ├── MobileAsset.h │ │ │ │ ├── MobileBluetooth.h │ │ │ │ ├── MobileContainerManager.h │ │ │ │ ├── MobileDeviceLink.h │ │ │ │ ├── MobileIcons.h │ │ │ │ ├── MobileInstallation.h │ │ │ │ ├── MobileLookup.h │ │ │ │ ├── MobileSpotlightIndex.h │ │ │ │ ├── MobileSync.h │ │ │ │ ├── MobileSystemServices.h │ │ │ │ ├── MobileTimer.h │ │ │ │ ├── MusicCarDisplayUI.h │ │ │ │ ├── MusicLibrary.h │ │ │ │ ├── MusicStoreUI.h │ │ │ │ ├── NanoAppRegistry.h │ │ │ │ ├── NanoBackup.h │ │ │ │ ├── NanoComplicationSettings.h │ │ │ │ ├── NanoGlanceSettings.h │ │ │ │ ├── NanoLeash.h │ │ │ │ ├── NanoMailKitServer.h │ │ │ │ ├── NanoPassKit.h │ │ │ │ ├── NanoPreferencesSync.h │ │ │ │ ├── NanoRegistry.h │ │ │ │ ├── NanoResourceGrabber.h │ │ │ │ ├── NanoSetupUISupport.h │ │ │ │ ├── NanoSystemSettings.h │ │ │ │ ├── NanoTimeKitCompanion.h │ │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ │ ├── Network.h │ │ │ │ ├── Notes.h │ │ │ │ ├── NotesShared.h │ │ │ │ ├── NotificationsUI.h │ │ │ │ ├── OAuth.h │ │ │ │ ├── OfficeImport.h │ │ │ │ ├── PBBridgeSupport.h │ │ │ │ ├── PairedSync.h │ │ │ │ ├── PairedUnlock.h │ │ │ │ ├── Parsec.h │ │ │ │ ├── ParsecSubscriptionServiceSupport.h │ │ │ │ ├── PassKitCore.h │ │ │ │ ├── Pegasus.h │ │ │ │ ├── PersistentConnection.h │ │ │ │ ├── PhotoEditSupport.h │ │ │ │ ├── PhotoLibrary.h │ │ │ │ ├── PhotoLibraryServices.h │ │ │ │ ├── PhotosFormats.h │ │ │ │ ├── PhotosPlayer.h │ │ │ │ ├── PhysicsKit.h │ │ │ │ ├── PlugInKit.h │ │ │ │ ├── Preferences.h │ │ │ │ ├── PreferencesUI.h │ │ │ │ ├── PrintKit.h │ │ │ │ ├── ProgressUI.h │ │ │ │ ├── ProofReader.h │ │ │ │ ├── ProtectedCloudStorage.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ ├── Quagga.h │ │ │ │ ├── QuickLookThumbnailing.h │ │ │ │ ├── RTCReporting.h │ │ │ │ ├── Radio.h │ │ │ │ ├── RadioUI.h │ │ │ │ ├── RemindersUI.h │ │ │ │ ├── RemoteUI.h │ │ │ │ ├── ResponseKit.h │ │ │ │ ├── SAObjects.h │ │ │ │ ├── SDAPI.h │ │ │ │ ├── SafariSafeBrowsing.h │ │ │ │ ├── SafariShared.h │ │ │ │ ├── ScreenReaderCore.h │ │ │ │ ├── Search.h │ │ │ │ ├── SearchUI.h │ │ │ │ ├── ServerAccounts.h │ │ │ │ ├── ServerDocsProtocol.h │ │ │ │ ├── SetupAssistant.h │ │ │ │ ├── SetupAssistantUI.h │ │ │ │ ├── SharedWebCredentials.h │ │ │ │ ├── Sharing.h │ │ │ │ ├── SimulatorClient.h │ │ │ │ ├── SiriTasks.h │ │ │ │ ├── SiriUICore.h │ │ │ │ ├── SlideshowKit.h │ │ │ │ ├── SoftwareUpdateServices.h │ │ │ │ ├── Speech.h │ │ │ │ ├── SplashBoard.h │ │ │ │ ├── Spotlight.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightReceiver.h │ │ │ │ ├── SpotlightUI.h │ │ │ │ ├── SpringBoardFoundation.h │ │ │ │ ├── SpringBoardServices.h │ │ │ │ ├── SpringBoardUI.h │ │ │ │ ├── SpringBoardUIServices.h │ │ │ │ ├── StoreBookkeeper.h │ │ │ │ ├── StoreBookkeeperClient.h │ │ │ │ ├── StoreKitUI.h │ │ │ │ ├── StoreServices.h │ │ │ │ ├── StoreServicesCore.h │ │ │ │ ├── StreamingZip.h │ │ │ │ ├── Symbolication.h │ │ │ │ ├── SyncedDefaults.h │ │ │ │ ├── TCC.h │ │ │ │ ├── TSReading.h │ │ │ │ ├── TSUtility.h │ │ │ │ ├── TelephonyUI.h │ │ │ │ ├── TelephonyUtilities.h │ │ │ │ ├── TextInput.h │ │ │ │ ├── TextToSpeech.h │ │ │ │ ├── ToneKit.h │ │ │ │ ├── ToneLibrary.h │ │ │ │ ├── TouchRemote.h │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UserActivity.h │ │ │ │ ├── UserNotification.h │ │ │ │ ├── UserNotificationServices.h │ │ │ │ ├── VUSocialUpload.h │ │ │ │ ├── VectorKit.h │ │ │ │ ├── VideoUpload.h │ │ │ │ ├── VisualAlert.h │ │ │ │ ├── VisualVoicemail.h │ │ │ │ ├── VoiceMemos.h │ │ │ │ ├── VoiceServices.h │ │ │ │ ├── VoicemailStore.h │ │ │ │ ├── Weather.h │ │ │ │ ├── WebApp.h │ │ │ │ ├── WebBookmarks.h │ │ │ │ ├── WebContentAnalysis.h │ │ │ │ ├── WebCore.h │ │ │ │ ├── WebInspector.h │ │ │ │ ├── WebKitLegacy.h │ │ │ │ ├── WebUI.h │ │ │ │ ├── WirelessDiagnostics.h │ │ │ │ ├── XPCKit.h │ │ │ │ ├── iAdCore.h │ │ │ │ ├── iAdDeveloper.h │ │ │ │ ├── iAdServices.h │ │ │ │ ├── iCalendar.h │ │ │ │ ├── iPhotoMigrationSupport.h │ │ │ │ ├── iTunesStore.h │ │ │ │ ├── iTunesStoreUI.h │ │ │ │ ├── iWorkImport.h │ │ │ │ └── vCard.h │ │ │ └── iPhoneSimulator9.0.sdk │ │ │ ├── Applications │ │ │ ├── News.app │ │ │ │ └── Frameworks │ │ │ │ │ ├── NewsCore.h │ │ │ │ │ ├── NewsTransport.h │ │ │ │ │ └── Silex.h │ │ │ └── ServerDocuments.app │ │ │ │ └── Frameworks │ │ │ │ └── ServerDocsClient.h │ │ │ ├── Developer │ │ │ └── Library │ │ │ │ └── PrivateFrameworks │ │ │ │ ├── DTDDISupport.h │ │ │ │ ├── DTXConnectionServices.h │ │ │ │ ├── DVTInstrumentsFoundation.h │ │ │ │ ├── DVTInstrumentsUtilities.h │ │ │ │ ├── ScriptProcessor.h │ │ │ │ └── UIAutomation.h │ │ │ └── System │ │ │ └── Library │ │ │ ├── Frameworks │ │ │ ├── AVFoundation.h │ │ │ ├── AVKit.h │ │ │ ├── Accelerate.h │ │ │ ├── Accounts.h │ │ │ ├── AdSupport.h │ │ │ ├── AddressBook.h │ │ │ ├── AddressBookUI.h │ │ │ ├── ApplicationServices.h │ │ │ ├── AssetsLibrary.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── CFNetwork.h │ │ │ ├── CloudKit.h │ │ │ ├── Contacts.h │ │ │ ├── ContactsUI.h │ │ │ ├── CoreAudio.h │ │ │ ├── CoreAudioKit.h │ │ │ ├── CoreBluetooth.h │ │ │ ├── CoreData.h │ │ │ ├── CoreFoundation.h │ │ │ ├── CoreGraphics.h │ │ │ ├── CoreImage.h │ │ │ ├── CoreLocation.h │ │ │ ├── CoreMIDI.h │ │ │ ├── CoreMedia.h │ │ │ ├── CoreMotion.h │ │ │ ├── CoreSpotlight.h │ │ │ ├── CoreTelephony.h │ │ │ ├── CoreText.h │ │ │ ├── CoreVideo.h │ │ │ ├── EventKit.h │ │ │ ├── EventKitUI.h │ │ │ ├── ExternalAccessory.h │ │ │ ├── Foundation.h │ │ │ ├── GLKit.h │ │ │ ├── GSS.h │ │ │ ├── GameController.h │ │ │ ├── GameKit.h │ │ │ ├── GameplayKit.h │ │ │ ├── HealthKit.h │ │ │ ├── HomeKit.h │ │ │ ├── IOKit.h │ │ │ ├── ImageIO.h │ │ │ ├── JavaScriptCore.h │ │ │ ├── LocalAuthentication.h │ │ │ ├── MapKit.h │ │ │ ├── MediaAccessibility.h │ │ │ ├── MediaPlayer.h │ │ │ ├── MediaToolbox.h │ │ │ ├── MessageUI.h │ │ │ ├── Metal.h │ │ │ ├── MobileCoreServices.h │ │ │ ├── ModelIO.h │ │ │ ├── MultipeerConnectivity.h │ │ │ ├── NetworkExtension.h │ │ │ ├── NewsstandKit.h │ │ │ ├── NotificationCenter.h │ │ │ ├── OpenAL.h │ │ │ ├── OpenGLES.h │ │ │ ├── PassKit.h │ │ │ ├── Photos.h │ │ │ ├── PhotosUI.h │ │ │ ├── PushKit.h │ │ │ ├── QuartzCore.h │ │ │ ├── QuickLook.h │ │ │ ├── ReplayKit.h │ │ │ ├── SafariServices.h │ │ │ ├── SceneKit.h │ │ │ ├── Security.h │ │ │ ├── Social.h │ │ │ ├── SpriteKit.h │ │ │ ├── StoreKit.h │ │ │ ├── System.h │ │ │ ├── SystemConfiguration.h │ │ │ ├── Twitter.h │ │ │ ├── UIKit.h │ │ │ ├── VideoToolbox.h │ │ │ ├── WatchConnectivity.h │ │ │ ├── WatchKit.h │ │ │ ├── WebKit.h │ │ │ └── iAd.h │ │ │ ├── LocationBundles │ │ │ ├── BulletinBoard.h │ │ │ ├── FMF.h │ │ │ ├── FindMyDevice.h │ │ │ ├── HomeKitDaemon.h │ │ │ ├── Parsec.h │ │ │ └── iAdCore.h │ │ │ └── PrivateFrameworks │ │ │ ├── AITTarget.h │ │ │ ├── AOSKit.h │ │ │ ├── AOSNotification.h │ │ │ ├── AXRuntime.h │ │ │ ├── Accessibility.h │ │ │ ├── AccessibilityUtilities.h │ │ │ ├── AccountNotification.h │ │ │ ├── AccountSettings.h │ │ │ ├── AccountsDaemon.h │ │ │ ├── AccountsUI.h │ │ │ ├── AggregateDictionary.h │ │ │ ├── AggregateDictionaryHistory.h │ │ │ ├── AirPlaySupport.h │ │ │ ├── AnnotationKit.h │ │ │ ├── AppConduit.h │ │ │ ├── AppStoreUI.h │ │ │ ├── AppSupport.h │ │ │ ├── AppleAccount.h │ │ │ ├── AppleAccountUI.h │ │ │ ├── AppleIDAuthSupport.h │ │ │ ├── AppleIDSSOAuthentication.h │ │ │ ├── AppleJPEG.h │ │ │ ├── AppleLDAP.h │ │ │ ├── ApplePushService.h │ │ │ ├── AppleSRP.h │ │ │ ├── AppleSauce.h │ │ │ ├── AssertionServices.h │ │ │ ├── AssetCacheServices.h │ │ │ ├── AssetsLibraryServices.h │ │ │ ├── AssistantServices.h │ │ │ ├── AuthKit.h │ │ │ ├── AuthKitUI.h │ │ │ ├── BTLEAudioController.h │ │ │ ├── BackBoardServices.h │ │ │ ├── BaseBoard.h │ │ │ ├── BaseBoardUI.h │ │ │ ├── BatteryCenter.h │ │ │ ├── BiometricKit.h │ │ │ ├── BluetoothManager.h │ │ │ ├── Bom.h │ │ │ ├── BookmarkDAV.h │ │ │ ├── BridgePreferences.h │ │ │ ├── BulletinBoard.h │ │ │ ├── BulletinDistributorCompanion.h │ │ │ ├── CPMLBestShim.h │ │ │ ├── CacheDelete.h │ │ │ ├── CalDAV.h │ │ │ ├── Calculate.h │ │ │ ├── CalendarDaemon.h │ │ │ ├── CalendarDatabase.h │ │ │ ├── CalendarFoundation.h │ │ │ ├── CalendarUIKit.h │ │ │ ├── CallHistory.h │ │ │ ├── CameraKit.h │ │ │ ├── CameraUI.h │ │ │ ├── CaptiveNetwork.h │ │ │ ├── CarKit.h │ │ │ ├── Celestial.h │ │ │ ├── CellularPlanManager.h │ │ │ ├── CertInfo.h │ │ │ ├── CertUI.h │ │ │ ├── ChatKit.h │ │ │ ├── ChunkingLibrary.h │ │ │ ├── CloudDocs.h │ │ │ ├── CloudDocsDaemon.h │ │ │ ├── CloudKitDaemon.h │ │ │ ├── CloudPhotoLibrary.h │ │ │ ├── CloudServices.h │ │ │ ├── ColorSync.h │ │ │ ├── CommonAuth.h │ │ │ ├── CommonUtilities.h │ │ │ ├── CommunicationsFilter.h │ │ │ ├── CommunicationsSetupUI.h │ │ │ ├── CompanionFindMy.h │ │ │ ├── CompanionSync.h │ │ │ ├── Conference.h │ │ │ ├── ConstantClasses.h │ │ │ ├── ContactsAutocomplete.h │ │ │ ├── ContactsFoundation.h │ │ │ ├── ContentIndex.h │ │ │ ├── CoreBrightness.h │ │ │ ├── CoreCDP.h │ │ │ ├── CoreCDPUI.h │ │ │ ├── CoreDAV.h │ │ │ ├── CoreHAP.h │ │ │ ├── CoreHandwriting.h │ │ │ ├── CoreMediaStream.h │ │ │ ├── CoreNLP.h │ │ │ ├── CoreOptimization.h │ │ │ ├── CorePDF.h │ │ │ ├── CorePrediction.h │ │ │ ├── CoreRecents.h │ │ │ ├── CoreRoutine.h │ │ │ ├── CoreSDB.h │ │ │ ├── CoreServicesInternal.h │ │ │ ├── CoreSuggestions.h │ │ │ ├── CoreSuggestionsInternals.h │ │ │ ├── CoreSymbolication.h │ │ │ ├── CoreThemeDefinition.h │ │ │ ├── CoreTime.h │ │ │ ├── CoreUI.h │ │ │ ├── CoreUtils.h │ │ │ ├── CryptoTokenKit.h │ │ │ ├── DAAPKit.h │ │ │ ├── DCIMServices.h │ │ │ ├── DataAccess.h │ │ │ ├── DataAccessExpress.h │ │ │ ├── DataAccessUI.h │ │ │ ├── DataDetectorsCore.h │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ ├── DataDetectorsUI.h │ │ │ ├── DataMigration.h │ │ │ ├── DiagnosticExtensions.h │ │ │ ├── DiagnosticLogCollection.h │ │ │ ├── DictionaryServices.h │ │ │ ├── EasyConfig.h │ │ │ ├── EmbeddedAcousticRecognition.h │ │ │ ├── FMCore.h │ │ │ ├── FMCoreLite.h │ │ │ ├── FMCoreUI.h │ │ │ ├── FMF.h │ │ │ ├── FMFUI.h │ │ │ ├── FTAWD.h │ │ │ ├── FTClientServices.h │ │ │ ├── FTServices.h │ │ │ ├── FaceCore.h │ │ │ ├── FileProvider.h │ │ │ ├── FindMyDevice.h │ │ │ ├── FindMyDeviceUI.h │ │ │ ├── FitnessUI.h │ │ │ ├── FlightUtilities.h │ │ │ ├── FontServices.h │ │ │ ├── FoundationODR.h │ │ │ ├── FrontBoard.h │ │ │ ├── FrontBoardServices.h │ │ │ ├── FuseUI.h │ │ │ ├── Futhark.h │ │ │ ├── GameCenter.h │ │ │ ├── GameCenterFoundation.h │ │ │ ├── GameCenterPrivateUI.h │ │ │ ├── GameCenterUI.h │ │ │ ├── GameKitServices.h │ │ │ ├── GenerationalStorage.h │ │ │ ├── GeoServices.h │ │ │ ├── GraphicsServices.h │ │ │ ├── HSAAuthentication.h │ │ │ ├── HealthDaemon.h │ │ │ ├── HealthKitExtensions.h │ │ │ ├── HealthKitUI.h │ │ │ ├── Heimdal.h │ │ │ ├── HelpKit.h │ │ │ ├── HomeKitDaemon.h │ │ │ ├── HomeSharing.h │ │ │ ├── IAP.h │ │ │ ├── IDS.h │ │ │ ├── IDSFoundation.h │ │ │ ├── IDSSimulatorSupport.h │ │ │ ├── IMAVCore.h │ │ │ ├── IMCore.h │ │ │ ├── IMDMessageServices.h │ │ │ ├── IMDPersistence.h │ │ │ ├── IMDaemonCore.h │ │ │ ├── IMFoundation.h │ │ │ ├── IMTranscoding.h │ │ │ ├── IMTransferServices.h │ │ │ ├── ITMLKit.h │ │ │ ├── ImageCapture.h │ │ │ ├── IncomingCallFilter.h │ │ │ ├── InternalPreferences.h │ │ │ ├── InternationalTextSearch.h │ │ │ ├── IntlPreferences.h │ │ │ ├── Jet.h │ │ │ ├── KeyboardArbiter.h │ │ │ ├── LanguageModeling.h │ │ │ ├── LatentSemanticMapping.h │ │ │ ├── LegacyGameKit.h │ │ │ ├── MIME.h │ │ │ ├── MMCS.h │ │ │ ├── MMCSServices.h │ │ │ ├── MPUFoundation.h │ │ │ ├── MailServices.h │ │ │ ├── ManagedConfiguration.h │ │ │ ├── MapsSupport.h │ │ │ ├── Marco.h │ │ │ ├── MarkupUI.h │ │ │ ├── MediaControlReceiver.h │ │ │ ├── MediaControlSender.h │ │ │ ├── MediaLibrary.h │ │ │ ├── MediaLibraryCore.h │ │ │ ├── MediaPlatform.h │ │ │ ├── MediaPlayerUI.h │ │ │ ├── MediaRemote.h │ │ │ ├── MediaServices.h │ │ │ ├── MediaSocial.h │ │ │ ├── MediaStream.h │ │ │ ├── Message.h │ │ │ ├── MessageSupport.h │ │ │ ├── MobileAsset.h │ │ │ ├── MobileBluetooth.h │ │ │ ├── MobileContainerManager.h │ │ │ ├── MobileDeviceLink.h │ │ │ ├── MobileIcons.h │ │ │ ├── MobileInstallation.h │ │ │ ├── MobileLookup.h │ │ │ ├── MobileSpotlightIndex.h │ │ │ ├── MobileSync.h │ │ │ ├── MobileSystemServices.h │ │ │ ├── MobileTimer.h │ │ │ ├── MusicCarDisplayUI.h │ │ │ ├── MusicLibrary.h │ │ │ ├── MusicStoreUI.h │ │ │ ├── NanoAppRegistry.h │ │ │ ├── NanoBackup.h │ │ │ ├── NanoComplicationSettings.h │ │ │ ├── NanoGlanceSettings.h │ │ │ ├── NanoLeash.h │ │ │ ├── NanoMailKitServer.h │ │ │ ├── NanoPassKit.h │ │ │ ├── NanoPreferencesSync.h │ │ │ ├── NanoRegistry.h │ │ │ ├── NanoResourceGrabber.h │ │ │ ├── NanoSetupUISupport.h │ │ │ ├── NanoSystemSettings.h │ │ │ ├── NanoTimeKitCompanion.h │ │ │ ├── NetAppsUtilitiesUI.h │ │ │ ├── Network.h │ │ │ ├── Notes.h │ │ │ ├── NotesShared.h │ │ │ ├── NotificationsUI.h │ │ │ ├── OAuth.h │ │ │ ├── OfficeImport.h │ │ │ ├── PBBridgeSupport.h │ │ │ ├── PairedSync.h │ │ │ ├── PairedUnlock.h │ │ │ ├── Parsec.h │ │ │ ├── ParsecSubscriptionServiceSupport.h │ │ │ ├── PassKitCore.h │ │ │ ├── Pegasus.h │ │ │ ├── PersistentConnection.h │ │ │ ├── PhotoEditSupport.h │ │ │ ├── PhotoLibrary.h │ │ │ ├── PhotoLibraryServices.h │ │ │ ├── PhotosFormats.h │ │ │ ├── PhotosPlayer.h │ │ │ ├── PhysicsKit.h │ │ │ ├── PlugInKit.h │ │ │ ├── Preferences.h │ │ │ ├── PreferencesUI.h │ │ │ ├── PrintKit.h │ │ │ ├── ProgressUI.h │ │ │ ├── ProofReader.h │ │ │ ├── ProtectedCloudStorage.h │ │ │ ├── ProtocolBuffer.h │ │ │ ├── Quagga.h │ │ │ ├── QuickLookThumbnailing.h │ │ │ ├── RTCReporting.h │ │ │ ├── Radio.h │ │ │ ├── RadioUI.h │ │ │ ├── RemindersUI.h │ │ │ ├── RemoteUI.h │ │ │ ├── ResponseKit.h │ │ │ ├── SAObjects.h │ │ │ ├── SDAPI.h │ │ │ ├── SafariSafeBrowsing.h │ │ │ ├── SafariShared.h │ │ │ ├── ScreenReaderCore.h │ │ │ ├── Search.h │ │ │ ├── SearchUI.h │ │ │ ├── ServerAccounts.h │ │ │ ├── ServerDocsProtocol.h │ │ │ ├── SetupAssistant.h │ │ │ ├── SetupAssistantUI.h │ │ │ ├── SharedWebCredentials.h │ │ │ ├── Sharing.h │ │ │ ├── SimulatorClient.h │ │ │ ├── SiriTasks.h │ │ │ ├── SiriUICore.h │ │ │ ├── SlideshowKit.h │ │ │ ├── SoftwareUpdateServices.h │ │ │ ├── Speech.h │ │ │ ├── SplashBoard.h │ │ │ ├── Spotlight.h │ │ │ ├── SpotlightDaemon.h │ │ │ ├── SpotlightReceiver.h │ │ │ ├── SpotlightUI.h │ │ │ ├── SpringBoardFoundation.h │ │ │ ├── SpringBoardServices.h │ │ │ ├── SpringBoardUI.h │ │ │ ├── SpringBoardUIServices.h │ │ │ ├── StoreBookkeeper.h │ │ │ ├── StoreBookkeeperClient.h │ │ │ ├── StoreKitUI.h │ │ │ ├── StoreServices.h │ │ │ ├── StoreServicesCore.h │ │ │ ├── StreamingZip.h │ │ │ ├── Symbolication.h │ │ │ ├── SyncedDefaults.h │ │ │ ├── TCC.h │ │ │ ├── TSReading.h │ │ │ ├── TSUtility.h │ │ │ ├── TelephonyUI.h │ │ │ ├── TelephonyUtilities.h │ │ │ ├── TextInput.h │ │ │ ├── TextToSpeech.h │ │ │ ├── ToneKit.h │ │ │ ├── ToneLibrary.h │ │ │ ├── TouchRemote.h │ │ │ ├── UIAccessibility.h │ │ │ ├── UIFoundation.h │ │ │ ├── UserActivity.h │ │ │ ├── UserNotification.h │ │ │ ├── UserNotificationServices.h │ │ │ ├── VUSocialUpload.h │ │ │ ├── VectorKit.h │ │ │ ├── VideoUpload.h │ │ │ ├── VisualAlert.h │ │ │ ├── VisualVoicemail.h │ │ │ ├── VoiceMemos.h │ │ │ ├── VoiceServices.h │ │ │ ├── VoicemailStore.h │ │ │ ├── Weather.h │ │ │ ├── WebApp.h │ │ │ ├── WebBookmarks.h │ │ │ ├── WebContentAnalysis.h │ │ │ ├── WebCore.h │ │ │ ├── WebInspector.h │ │ │ ├── WebKitLegacy.h │ │ │ ├── WebUI.h │ │ │ ├── WirelessDiagnostics.h │ │ │ ├── XPCKit.h │ │ │ ├── iAdCore.h │ │ │ ├── iAdDeveloper.h │ │ │ ├── iAdServices.h │ │ │ ├── iCalendar.h │ │ │ ├── iPhotoMigrationSupport.h │ │ │ ├── iTunesStore.h │ │ │ ├── iTunesStoreUI.h │ │ │ ├── iWorkImport.h │ │ │ └── vCard.h │ └── Toolchains │ │ └── XcodeDefault.xctoolchain │ │ └── usr │ │ └── lib │ │ ├── sourcekitd.h │ │ └── swift-migrator │ │ └── sdk │ │ ├── MacOSX.sdk │ │ ├── Developer │ │ │ └── Library │ │ │ │ ├── Frameworks │ │ │ │ ├── XCPlayground.h │ │ │ │ └── XCTest.h │ │ │ │ └── PrivateFrameworks │ │ │ │ └── PlaygroundLogger.h │ │ └── System │ │ │ └── Library │ │ │ └── Frameworks │ │ │ ├── AGL.h │ │ │ ├── AVFoundation.h │ │ │ ├── AVKit.h │ │ │ ├── Accelerate.h │ │ │ ├── Accounts.h │ │ │ ├── AddressBook.h │ │ │ ├── AppKit.h │ │ │ ├── AppKitScripting.h │ │ │ ├── AppleScriptKit.h │ │ │ ├── AppleScriptObjC.h │ │ │ ├── ApplicationServices.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── AudioVideoBridging.h │ │ │ ├── Automator.h │ │ │ ├── CFNetwork.h │ │ │ ├── CalendarStore.h │ │ │ ├── Carbon.h │ │ │ ├── CloudKit.h │ │ │ ├── Cocoa.h │ │ │ ├── Collaboration.h │ │ │ ├── CoreAudio.h │ │ │ ├── CoreAudioKit.h │ │ │ ├── CoreBluetooth.h │ │ │ ├── CoreData.h │ │ │ ├── CoreFoundation.h │ │ │ ├── CoreGraphics.h │ │ │ ├── CoreLocation.h │ │ │ ├── CoreMIDI.h │ │ │ ├── CoreMIDIServer.h │ │ │ ├── CoreMedia.h │ │ │ ├── CoreMediaIO.h │ │ │ ├── CoreServices.h │ │ │ ├── CoreTelephony.h │ │ │ ├── CoreText.h │ │ │ ├── CoreVideo.h │ │ │ ├── CoreWLAN.h │ │ │ ├── CryptoTokenKit.h │ │ │ ├── DVComponentGlue.h │ │ │ ├── DVDPlayback.h │ │ │ ├── DirectoryService.h │ │ │ ├── DiscRecording.h │ │ │ ├── DiscRecordingUI.h │ │ │ ├── DiskArbitration.h │ │ │ ├── DrawSprocket.h │ │ │ ├── EventKit.h │ │ │ ├── ExceptionHandling.h │ │ │ ├── FWAUserLib.h │ │ │ ├── FinderSync.h │ │ │ ├── ForceFeedback.h │ │ │ ├── Foundation.h │ │ │ ├── GLKit.h │ │ │ ├── GLUT.h │ │ │ ├── GSS.h │ │ │ ├── GameController.h │ │ │ ├── GameKit.h │ │ │ ├── Hypervisor.h │ │ │ ├── ICADevices.h │ │ │ ├── IMServicePlugIn.h │ │ │ ├── IOBluetooth.h │ │ │ ├── IOBluetoothUI.h │ │ │ ├── IOKit.h │ │ │ ├── IOSurface.h │ │ │ ├── ImageCaptureCore.h │ │ │ ├── ImageIO.h │ │ │ ├── InputMethodKit.h │ │ │ ├── InstallerPlugins.h │ │ │ ├── InstantMessage.h │ │ │ ├── JavaFrameEmbedding.h │ │ │ ├── JavaScriptCore.h │ │ │ ├── JavaVM.h │ │ │ ├── Kerberos.h │ │ │ ├── LDAP.h │ │ │ ├── LatentSemanticMapping.h │ │ │ ├── LocalAuthentication.h │ │ │ ├── MapKit.h │ │ │ ├── MediaAccessibility.h │ │ │ ├── MediaLibrary.h │ │ │ ├── MediaToolbox.h │ │ │ ├── MultipeerConnectivity.h │ │ │ ├── NetFS.h │ │ │ ├── NotificationCenter.h │ │ │ ├── OSAKit.h │ │ │ ├── OpenAL.h │ │ │ ├── OpenCL.h │ │ │ ├── OpenDirectory.h │ │ │ ├── OpenGL.h │ │ │ ├── PCSC.h │ │ │ ├── PreferencePanes.h │ │ │ ├── PubSub.h │ │ │ ├── Python.h │ │ │ ├── QTKit.h │ │ │ ├── Quartz.h │ │ │ ├── QuartzCore.h │ │ │ ├── QuickLook.h │ │ │ ├── QuickTime.h │ │ │ ├── SceneKit.h │ │ │ ├── ScreenSaver.h │ │ │ ├── Scripting.h │ │ │ ├── ScriptingBridge.h │ │ │ ├── Security.h │ │ │ ├── SecurityFoundation.h │ │ │ ├── SecurityInterface.h │ │ │ ├── ServiceManagement.h │ │ │ ├── Social.h │ │ │ ├── SpriteKit.h │ │ │ ├── StoreKit.h │ │ │ ├── SyncServices.h │ │ │ ├── SystemConfiguration.h │ │ │ ├── TWAIN.h │ │ │ ├── Tcl.h │ │ │ ├── VideoDecodeAcceleration.h │ │ │ ├── VideoToolbox.h │ │ │ ├── WebKit.h │ │ │ └── vmnet.h │ │ ├── iPhoneOS.sdk │ │ ├── Developer │ │ │ └── Library │ │ │ │ └── Frameworks │ │ │ │ ├── SenTestingKit.h │ │ │ │ └── XCTest.h │ │ └── System │ │ │ └── Library │ │ │ └── Frameworks │ │ │ ├── AVFoundation.h │ │ │ ├── AVKit.h │ │ │ ├── Accelerate.h │ │ │ ├── Accounts.h │ │ │ ├── AdSupport.h │ │ │ ├── AddressBook.h │ │ │ ├── AddressBookUI.h │ │ │ ├── AssetsLibrary.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── CFNetwork.h │ │ │ ├── CloudKit.h │ │ │ ├── CoreAudio.h │ │ │ ├── CoreAudioKit.h │ │ │ ├── CoreBluetooth.h │ │ │ ├── CoreData.h │ │ │ ├── CoreFoundation.h │ │ │ ├── CoreGraphics.h │ │ │ ├── CoreImage.h │ │ │ ├── CoreLocation.h │ │ │ ├── CoreMIDI.h │ │ │ ├── CoreMedia.h │ │ │ ├── CoreMotion.h │ │ │ ├── CoreTelephony.h │ │ │ ├── CoreText.h │ │ │ ├── CoreVideo.h │ │ │ ├── EventKit.h │ │ │ ├── EventKitUI.h │ │ │ ├── ExternalAccessory.h │ │ │ ├── Foundation.h │ │ │ ├── GLKit.h │ │ │ ├── GSS.h │ │ │ ├── GameController.h │ │ │ ├── GameKit.h │ │ │ ├── HealthKit.h │ │ │ ├── HomeKit.h │ │ │ ├── ImageIO.h │ │ │ ├── JavaScriptCore.h │ │ │ ├── LocalAuthentication.h │ │ │ ├── MapKit.h │ │ │ ├── MediaAccessibility.h │ │ │ ├── MediaPlayer.h │ │ │ ├── MediaToolbox.h │ │ │ ├── MessageUI.h │ │ │ ├── Metal.h │ │ │ ├── MobileCoreServices.h │ │ │ ├── MultipeerConnectivity.h │ │ │ ├── NetworkExtension.h │ │ │ ├── NewsstandKit.h │ │ │ ├── NotificationCenter.h │ │ │ ├── OpenAL.h │ │ │ ├── OpenGLES.h │ │ │ ├── PassKit.h │ │ │ ├── Photos.h │ │ │ ├── PhotosUI.h │ │ │ ├── PushKit.h │ │ │ ├── QuartzCore.h │ │ │ ├── QuickLook.h │ │ │ ├── SafariServices.h │ │ │ ├── SceneKit.h │ │ │ ├── Security.h │ │ │ ├── Social.h │ │ │ ├── SpriteKit.h │ │ │ ├── StoreKit.h │ │ │ ├── SystemConfiguration.h │ │ │ ├── Twitter.h │ │ │ ├── UIKit.h │ │ │ ├── VideoToolbox.h │ │ │ ├── WatchKit.h │ │ │ ├── WebKit.h │ │ │ └── iAd.h │ │ └── iPhoneSimulator.sdk │ │ ├── Developer │ │ └── Library │ │ │ ├── Frameworks │ │ │ ├── SenTestingKit.h │ │ │ └── XCTest.h │ │ │ └── PrivateFrameworks │ │ │ ├── DTXConnectionServices.h │ │ │ ├── PlaygroundLogger.h │ │ │ └── XCPlayground.h │ │ └── System │ │ └── Library │ │ └── Frameworks │ │ ├── AVFoundation.h │ │ ├── AVKit.h │ │ ├── Accelerate.h │ │ ├── Accounts.h │ │ ├── AdSupport.h │ │ ├── AddressBook.h │ │ ├── AddressBookUI.h │ │ ├── ApplicationServices.h │ │ ├── AssetsLibrary.h │ │ ├── AudioToolbox.h │ │ ├── AudioUnit.h │ │ ├── CFNetwork.h │ │ ├── CloudKit.h │ │ ├── CoreAudio.h │ │ ├── CoreBluetooth.h │ │ ├── CoreData.h │ │ ├── CoreFoundation.h │ │ ├── CoreGraphics.h │ │ ├── CoreImage.h │ │ ├── CoreLocation.h │ │ ├── CoreMIDI.h │ │ ├── CoreMedia.h │ │ ├── CoreMotion.h │ │ ├── CoreTelephony.h │ │ ├── CoreText.h │ │ ├── CoreVideo.h │ │ ├── EventKit.h │ │ ├── EventKitUI.h │ │ ├── ExternalAccessory.h │ │ ├── Foundation.h │ │ ├── GLKit.h │ │ ├── GSS.h │ │ ├── GameController.h │ │ ├── GameKit.h │ │ ├── HealthKit.h │ │ ├── HomeKit.h │ │ ├── ImageIO.h │ │ ├── JavaScriptCore.h │ │ ├── LocalAuthentication.h │ │ ├── MapKit.h │ │ ├── MediaAccessibility.h │ │ ├── MediaPlayer.h │ │ ├── MediaToolbox.h │ │ ├── MessageUI.h │ │ ├── Metal.h │ │ ├── MobileCoreServices.h │ │ ├── MultipeerConnectivity.h │ │ ├── NetworkExtension.h │ │ ├── NewsstandKit.h │ │ ├── NotificationCenter.h │ │ ├── NotificationsUI.h │ │ ├── OpenAL.h │ │ ├── OpenGLES.h │ │ ├── PassKit.h │ │ ├── Photos.h │ │ ├── PhotosUI.h │ │ ├── PushKit.h │ │ ├── QuartzCore.h │ │ ├── QuickLook.h │ │ ├── SafariServices.h │ │ ├── SceneKit.h │ │ ├── Security.h │ │ ├── Social.h │ │ ├── SpriteKit.h │ │ ├── StoreKit.h │ │ ├── SystemConfiguration.h │ │ ├── Twitter.h │ │ ├── UIKit.h │ │ ├── VideoToolbox.h │ │ ├── WatchKit.h │ │ ├── WebKit.h │ │ └── iAd.h ├── Frameworks │ ├── IBAutolayoutFoundation.h │ ├── IBFoundation.h │ ├── IDEFoundation.h │ └── IDEKit.h ├── OtherFrameworks │ ├── DevToolsCParsing.h │ ├── DevToolsCore.h │ ├── DevToolsFoundation.h │ ├── DevToolsInterface.h │ ├── DevToolsKit.h │ ├── DevToolsRemoteClient.h │ ├── DevToolsSupport.h │ ├── DocSetAccess.h │ ├── DocSetManagement.h │ ├── DocSetViewing.h │ ├── JavaKit.h │ ├── XDBase.h │ ├── XDInterface.h │ └── XcodeEdit.h ├── PlugIns │ ├── DVTAnalyticsClientPlugin.h │ ├── DVTAnalyticsPlugin.h │ ├── DVTServicesPlugIn.h │ ├── DebuggerFoundation.h │ ├── DebuggerKit.h │ ├── DebuggerLLDB.h │ ├── DebuggerLLDBService.h │ ├── DebuggerUI.h │ ├── GPUDebuggerFoundation.h │ ├── GPUDebuggerGLSupport.h │ ├── GPUDebuggerKit.h │ ├── GPUDebuggerMTLSupport.h │ ├── GPURenderTargetEditor.h │ ├── GPUTraceDebugger.h │ ├── GPUTraceDebuggerUI.h │ ├── HexEditor.h │ ├── IBBuildSupport.h │ ├── IBCocoaBuildSupport.h │ ├── IBLanguageSupport.h │ ├── IDEAppleScriptCore.h │ ├── IDEAppleScriptEditor.h │ ├── IDEContinuousIntegration.h │ ├── IDEDevkitRefactoring.h │ ├── IDEDocViewer.h │ ├── IDEGit.h │ ├── IDEIODebugGaugesCore.h │ ├── IDEIODebugGaugesUI.h │ ├── IDEInstrumentsService.h │ ├── IDEInterfaceBuilderCocoaIntegration.h │ ├── IDEInterfaceBuilderCocoaTouchIntegration.h │ ├── IDEInterfaceBuilderKit.h │ ├── IDELanguageSupportCore.h │ ├── IDELanguageSupportUI.h │ ├── IDEModelEditor.h │ ├── IDEModelFoundation.h │ ├── IDEPDFViewer.h │ ├── IDEProductsUI.h │ ├── IDEQuickHelp.h │ ├── IDEQuickLookEditor.h │ ├── IDERTFEditor.h │ ├── IDESceneKitEditor.h │ ├── IDESourceEditor.h │ ├── IDESpriteKitParticleEditor.h │ ├── IDEStandardExecutionActionsCore.h │ ├── IDEStandardExecutionActionsUI.h │ ├── IDESubversion.h │ ├── IDEWatchKit1SupportCore.h │ ├── IDEWatchKit1SupportUI.h │ ├── IDEiOSDebugger.h │ ├── IDEiOSProjectEditor.h │ ├── IDEiOSSupportCore.h │ ├── IDEiPhoneSupport.h │ ├── PlistEditor.h │ ├── ScriptingDefinitionEditor.h │ ├── Xcode3Core.h │ ├── Xcode3UI.h │ └── iCloudSupport.h └── SharedFrameworks │ ├── CoreProfileDT.h │ ├── CoreSymbolicationDT.h │ ├── DADocSetAccess.h │ ├── DADocSetManagement.h │ ├── DTDeviceKit.h │ ├── DTDeviceKitBase.h │ ├── DTGraphKit.h │ ├── DTXConnectionServices.h │ ├── DVTAnalytics.h │ ├── DVTAnalyticsClient.h │ ├── DVTDeveloperModeHelper.h │ ├── DVTFoundation.h │ ├── DVTInstrumentsFoundation.h │ ├── DVTInstrumentsUtilities.h │ ├── DVTKit.h │ ├── DVTMarkup.h │ ├── DVTPortal.h │ ├── DVTProducts.h │ ├── DVTServiceKit.h │ ├── DVTServices.h │ ├── DVTSourceControl.h │ ├── DVTiPhoneSimulatorRemoteClient.h │ ├── DebugSymbolsDT.h │ ├── GLTools.h │ ├── GLToolsAnalysisEngine.h │ ├── GLToolsCore.h │ ├── GLToolsInterface.h │ ├── GLToolsServices.h │ ├── GLToolsShaderProfiler.h │ ├── GPUTools.h │ ├── GPUToolsCore.h │ ├── GPUToolsInterface.h │ ├── GPUToolsPlayback.h │ ├── GPUToolsServices.h │ ├── GPUToolsShaderProfiler.h │ ├── GameToolsFoundation.h │ ├── HexFiend.h │ ├── IDEServerTools.h │ ├── Jet.h │ ├── LLDB.h │ ├── MTLTools.h │ ├── MTLToolsAnalysisEngine.h │ ├── MTLToolsCore.h │ ├── MTLToolsServices.h │ ├── MTLToolsShaderProfiler.h │ ├── ModelIO.h │ ├── PhysicsKit.h │ ├── SceneKit.h │ ├── SpriteKit.h │ ├── SymbolicationDT.h │ ├── XCSCore.h │ ├── XCSUI.h │ └── kperfdataDT.h └── Xcode8 └── DVTTextSidebarView.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/.travis.yml -------------------------------------------------------------------------------- /Documents/Developers/DevGuide.md: -------------------------------------------------------------------------------- 1 | # Developing Guide for XVim 2 | 3 | Under construction -------------------------------------------------------------------------------- /Documents/Developers/DevNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/DevNotes.txt -------------------------------------------------------------------------------- /Documents/Developers/MenuActionList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/MenuActionList.txt -------------------------------------------------------------------------------- /Documents/Developers/PullRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/PullRequest.md -------------------------------------------------------------------------------- /Documents/Developers/ViewTreeSample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/ViewTreeSample.txt -------------------------------------------------------------------------------- /Documents/Developers/XCodeClasses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/XCodeClasses.html -------------------------------------------------------------------------------- /Documents/Developers/XVim.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/XVim.key -------------------------------------------------------------------------------- /Documents/Developers/XVim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/XVim.pdf -------------------------------------------------------------------------------- /Documents/Developers/XVimClassFigure.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/XVimClassFigure.ods -------------------------------------------------------------------------------- /Documents/Developers/XVimClassFigure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/XVimClassFigure.pdf -------------------------------------------------------------------------------- /Documents/Developers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Developers/index.html -------------------------------------------------------------------------------- /Documents/Images/Keychain1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Images/Keychain1.png -------------------------------------------------------------------------------- /Documents/Images/Keychain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Images/Keychain2.png -------------------------------------------------------------------------------- /Documents/Users/FeatureList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Documents/Users/FeatureList.md -------------------------------------------------------------------------------- /INSTALL_Xcode8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/INSTALL_Xcode8.md -------------------------------------------------------------------------------- /Images/EPS/xvim.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/EPS/xvim.eps -------------------------------------------------------------------------------- /Images/PNG/xvim-rounded-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/PNG/xvim-rounded-corners.png -------------------------------------------------------------------------------- /Images/PNG/xvim-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/PNG/xvim-solid.png -------------------------------------------------------------------------------- /Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/README.md -------------------------------------------------------------------------------- /Images/SVG/xvim-black-on-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/SVG/xvim-black-on-white.svg -------------------------------------------------------------------------------- /Images/SVG/xvim-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/SVG/xvim-colors.svg -------------------------------------------------------------------------------- /Images/SVG/xvim-white-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Images/SVG/xvim-white-on-black.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/README.md -------------------------------------------------------------------------------- /README_jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/README_jp.md -------------------------------------------------------------------------------- /Tools/unsign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/Makefile -------------------------------------------------------------------------------- /Tools/unsign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/README.md -------------------------------------------------------------------------------- /Tools/unsign/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/endian.c -------------------------------------------------------------------------------- /Tools/unsign/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/endian.h -------------------------------------------------------------------------------- /Tools/unsign/endian.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/endian.o -------------------------------------------------------------------------------- /Tools/unsign/unsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/unsign -------------------------------------------------------------------------------- /Tools/unsign/unsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/unsign.c -------------------------------------------------------------------------------- /Tools/unsign/unsign.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/unsign/unsign.o -------------------------------------------------------------------------------- /Tools/xcodedump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/Tools/xcodedump.rb -------------------------------------------------------------------------------- /XVim.pmdoc/01xvim-contents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim.pmdoc/01xvim-contents.xml -------------------------------------------------------------------------------- /XVim.pmdoc/01xvim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim.pmdoc/01xvim.xml -------------------------------------------------------------------------------- /XVim.pmdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim.pmdoc/README.md -------------------------------------------------------------------------------- /XVim.pmdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim.pmdoc/index.xml -------------------------------------------------------------------------------- /XVim.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XVim/DVTSourceTextScrollView+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTSourceTextScrollView+XVim.h -------------------------------------------------------------------------------- /XVim/DVTSourceTextScrollView+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTSourceTextScrollView+XVim.m -------------------------------------------------------------------------------- /XVim/DVTSourceTextView+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTSourceTextView+XVim.h -------------------------------------------------------------------------------- /XVim/DVTSourceTextView+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTSourceTextView+XVim.m -------------------------------------------------------------------------------- /XVim/DVTTextSidebarView+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTTextSidebarView+XVim.h -------------------------------------------------------------------------------- /XVim/DVTTextSidebarView+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTTextSidebarView+XVim.m -------------------------------------------------------------------------------- /XVim/DVTTextStorage+XVimTextStoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTTextStorage+XVimTextStoring.h -------------------------------------------------------------------------------- /XVim/DVTTextStorage+XVimTextStoring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/DVTTextStorage+XVimTextStoring.m -------------------------------------------------------------------------------- /XVim/IDEApplicationController+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEApplicationController+XVim.h -------------------------------------------------------------------------------- /XVim/IDEApplicationController+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEApplicationController+XVim.m -------------------------------------------------------------------------------- /XVim/IDEEditor+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEEditor+XVim.h -------------------------------------------------------------------------------- /XVim/IDEEditor+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEEditor+XVim.m -------------------------------------------------------------------------------- /XVim/IDEEditorArea+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEEditorArea+XVim.h -------------------------------------------------------------------------------- /XVim/IDEEditorArea+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEEditorArea+XVim.m -------------------------------------------------------------------------------- /XVim/IDEPlaygroundEditor+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEPlaygroundEditor+XVim.h -------------------------------------------------------------------------------- /XVim/IDEPlaygroundEditor+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEPlaygroundEditor+XVim.m -------------------------------------------------------------------------------- /XVim/IDESourceCodeEditor+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDESourceCodeEditor+XVim.h -------------------------------------------------------------------------------- /XVim/IDESourceCodeEditor+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDESourceCodeEditor+XVim.m -------------------------------------------------------------------------------- /XVim/IDEWorkspaceTabController+XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEWorkspaceTabController+XVim.h -------------------------------------------------------------------------------- /XVim/IDEWorkspaceTabController+XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/IDEWorkspaceTabController+XVim.m -------------------------------------------------------------------------------- /XVim/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Info.plist -------------------------------------------------------------------------------- /XVim/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Logger.h -------------------------------------------------------------------------------- /XVim/Logger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Logger.m -------------------------------------------------------------------------------- /XVim/MemoryManagementMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/MemoryManagementMacros.h -------------------------------------------------------------------------------- /XVim/NSAttributedString+Geometrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSAttributedString+Geometrics.h -------------------------------------------------------------------------------- /XVim/NSAttributedString+Geometrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSAttributedString+Geometrics.m -------------------------------------------------------------------------------- /XVim/NSColor+Extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSColor+Extra.h -------------------------------------------------------------------------------- /XVim/NSColor+Extra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSColor+Extra.m -------------------------------------------------------------------------------- /XVim/NSEvent+VimHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSEvent+VimHelper.h -------------------------------------------------------------------------------- /XVim/NSEvent+VimHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSEvent+VimHelper.m -------------------------------------------------------------------------------- /XVim/NSInsetTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSInsetTextView.h -------------------------------------------------------------------------------- /XVim/NSInsetTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSInsetTextView.m -------------------------------------------------------------------------------- /XVim/NSObject+ExtraData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSObject+ExtraData.h -------------------------------------------------------------------------------- /XVim/NSObject+ExtraData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSObject+ExtraData.m -------------------------------------------------------------------------------- /XVim/NSObject+XVimAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSObject+XVimAdditions.h -------------------------------------------------------------------------------- /XVim/NSObject+XVimAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSObject+XVimAdditions.m -------------------------------------------------------------------------------- /XVim/NSString+VimHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSString+VimHelper.h -------------------------------------------------------------------------------- /XVim/NSString+VimHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSString+VimHelper.m -------------------------------------------------------------------------------- /XVim/NSTextStorage+VimOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSTextStorage+VimOperation.h -------------------------------------------------------------------------------- /XVim/NSTextStorage+VimOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSTextStorage+VimOperation.m -------------------------------------------------------------------------------- /XVim/NSTextView+VimOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSTextView+VimOperation.h -------------------------------------------------------------------------------- /XVim/NSTextView+VimOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSTextView+VimOperation.m -------------------------------------------------------------------------------- /XVim/NSURL+XVimXcodeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSURL+XVimXcodeModule.h -------------------------------------------------------------------------------- /XVim/NSURL+XVimXcodeModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/NSURL+XVimXcodeModule.m -------------------------------------------------------------------------------- /XVim/ProcessRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/ProcessRunner.h -------------------------------------------------------------------------------- /XVim/ProcessRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/ProcessRunner.m -------------------------------------------------------------------------------- /XVim/Test/XVimTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTestCase.h -------------------------------------------------------------------------------- /XVim/Test/XVimTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTestCase.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+ExCmd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+ExCmd.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Issues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Issues.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Jump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Jump.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Mark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Mark.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Motion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Motion.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Operator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Operator.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Options.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Options.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Register.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Search.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+TextObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+TextObject.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+Visual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+Visual.m -------------------------------------------------------------------------------- /XVim/Test/XVimTester+map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Test/XVimTester+map.m -------------------------------------------------------------------------------- /XVim/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Utils.h -------------------------------------------------------------------------------- /XVim/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/Utils.m -------------------------------------------------------------------------------- /XVim/XVim-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVim-Prefix.pch -------------------------------------------------------------------------------- /XVim/XVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVim.h -------------------------------------------------------------------------------- /XVim/XVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVim.m -------------------------------------------------------------------------------- /XVim/XVimAboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimAboutDialog.h -------------------------------------------------------------------------------- /XVim/XVimAboutDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimAboutDialog.m -------------------------------------------------------------------------------- /XVim/XVimArgumentEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimArgumentEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimArgumentEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimArgumentEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimBuffer.h -------------------------------------------------------------------------------- /XVim/XVimBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimBuffer.m -------------------------------------------------------------------------------- /XVim/XVimCommandField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandField.h -------------------------------------------------------------------------------- /XVim/XVimCommandField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandField.m -------------------------------------------------------------------------------- /XVim/XVimCommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandLine.h -------------------------------------------------------------------------------- /XVim/XVimCommandLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandLine.m -------------------------------------------------------------------------------- /XVim/XVimCommandLineEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandLineEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimCommandLineEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimCommandLineEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimDebug.h -------------------------------------------------------------------------------- /XVim/XVimDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimDebug.m -------------------------------------------------------------------------------- /XVim/XVimDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimDefs.h -------------------------------------------------------------------------------- /XVim/XVimDeleteEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimDeleteEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimDeleteEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimDeleteEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimEqualEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEqualEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimEqualEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEqualEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEval.h -------------------------------------------------------------------------------- /XVim/XVimEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEval.m -------------------------------------------------------------------------------- /XVim/XVimEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimExCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimExCommand.h -------------------------------------------------------------------------------- /XVim/XVimExCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimExCommand.m -------------------------------------------------------------------------------- /XVim/XVimGActionEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGActionEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimGActionEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGActionEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimGMotionEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGMotionEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimGMotionEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGMotionEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimGVisualEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGVisualEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimGVisualEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimGVisualEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimHistoryHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimHistoryHandler.h -------------------------------------------------------------------------------- /XVim/XVimHistoryHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimHistoryHandler.m -------------------------------------------------------------------------------- /XVim/XVimHookManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimHookManager.h -------------------------------------------------------------------------------- /XVim/XVimHookManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimHookManager.m -------------------------------------------------------------------------------- /XVim/XVimInsertEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimInsertEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimInsertEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimInsertEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimJoinEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimJoinEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimJoinEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimJoinEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimKeyStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimKeyStroke.h -------------------------------------------------------------------------------- /XVim/XVimKeyStroke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimKeyStroke.m -------------------------------------------------------------------------------- /XVim/XVimKeymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimKeymap.h -------------------------------------------------------------------------------- /XVim/XVimKeymap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimKeymap.m -------------------------------------------------------------------------------- /XVim/XVimKeymapProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimKeymapProvider.h -------------------------------------------------------------------------------- /XVim/XVimLowercaseEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimLowercaseEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimLowercaseEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimLowercaseEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMacros.h -------------------------------------------------------------------------------- /XVim/XVimMark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMark.h -------------------------------------------------------------------------------- /XVim/XVimMark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMark.m -------------------------------------------------------------------------------- /XVim/XVimMarkSetEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMarkSetEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimMarkSetEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMarkSetEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimMarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMarks.h -------------------------------------------------------------------------------- /XVim/XVimMarks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMarks.m -------------------------------------------------------------------------------- /XVim/XVimMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotion.h -------------------------------------------------------------------------------- /XVim/XVimMotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotion.m -------------------------------------------------------------------------------- /XVim/XVimMotionEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotionEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimMotionEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotionEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimMotionOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotionOption.h -------------------------------------------------------------------------------- /XVim/XVimMotionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimMotionType.h -------------------------------------------------------------------------------- /XVim/XVimNormalEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimNormalEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimNormalEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimNormalEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimNumericEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimNumericEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimNumericEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimNumericEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimOperatorEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimOperatorEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimOperatorEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimOperatorEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimOptions.h -------------------------------------------------------------------------------- /XVim/XVimOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimOptions.m -------------------------------------------------------------------------------- /XVim/XVimQuickFixView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimQuickFixView.h -------------------------------------------------------------------------------- /XVim/XVimQuickFixView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimQuickFixView.m -------------------------------------------------------------------------------- /XVim/XVimRecordingEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRecordingEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimRecordingEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRecordingEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRegister.h -------------------------------------------------------------------------------- /XVim/XVimRegister.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRegister.m -------------------------------------------------------------------------------- /XVim/XVimRegisterEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRegisterEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimRegisterEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimRegisterEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimReplaceEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimReplaceEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimReplaceEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimReplaceEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimReplacePromptEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimReplacePromptEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimReplacePromptEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimReplacePromptEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimSearch.h -------------------------------------------------------------------------------- /XVim/XVimSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimSearch.m -------------------------------------------------------------------------------- /XVim/XVimShiftEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimShiftEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimShiftEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimShiftEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimStatusLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimStatusLine.h -------------------------------------------------------------------------------- /XVim/XVimStatusLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimStatusLine.m -------------------------------------------------------------------------------- /XVim/XVimStringBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimStringBuffer.h -------------------------------------------------------------------------------- /XVim/XVimTaskRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTaskRunner.h -------------------------------------------------------------------------------- /XVim/XVimTaskRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTaskRunner.m -------------------------------------------------------------------------------- /XVim/XVimTester+Recording.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTester+Recording.m -------------------------------------------------------------------------------- /XVim/XVimTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTester.h -------------------------------------------------------------------------------- /XVim/XVimTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTester.m -------------------------------------------------------------------------------- /XVim/XVimTextObjectEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTextObjectEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimTextObjectEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTextObjectEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimTextStoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTextStoring.h -------------------------------------------------------------------------------- /XVim/XVimTextViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTextViewProtocol.h -------------------------------------------------------------------------------- /XVim/XVimTildeEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTildeEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimTildeEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimTildeEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimUppercaseEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimUppercaseEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimUppercaseEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimUppercaseEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimUtil.h -------------------------------------------------------------------------------- /XVim/XVimUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimUtil.m -------------------------------------------------------------------------------- /XVim/XVimVisualEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimVisualEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimVisualEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimVisualEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimWindow+Xcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindow+Xcode.h -------------------------------------------------------------------------------- /XVim/XVimWindow+Xcode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindow+Xcode.m -------------------------------------------------------------------------------- /XVim/XVimWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindow.h -------------------------------------------------------------------------------- /XVim/XVimWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindow.m -------------------------------------------------------------------------------- /XVim/XVimWindowEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindowEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimWindowEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimWindowEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimYankEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimYankEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimYankEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimYankEvaluator.m -------------------------------------------------------------------------------- /XVim/XVimZEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimZEvaluator.h -------------------------------------------------------------------------------- /XVim/XVimZEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/XVimZEvaluator.m -------------------------------------------------------------------------------- /XVim/about.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XVim/about.xib -------------------------------------------------------------------------------- /XVim/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode4/DVTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode4/DVTFoundation.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode4/DVTKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode4/DVTKit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode4/IDEFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode4/IDEFoundation.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode4/IDEKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode4/IDEKit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode4/IDESourceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode4/IDESourceEditor.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode5/DVTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode5/DVTFoundation.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode5/DVTKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode5/DVTKit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode5/IDEFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode5/IDEFoundation.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode5/IDEKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode5/IDEKit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode5/IDESourceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode5/IDESourceEditor.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Applications/Application: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCPlayground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/PlaygroundLogger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/Kernel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/PrivateFrameworks/GPUSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/PrivateFrameworks/Symptoms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AudioUnit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/GPUSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Symptoms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/AudioUnit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/PlaygroundLogger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCPlayground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/PlugIns/IDEGit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode6.0/PlugIns/IDEGit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/PlugIns/Xcode3UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode6.0/PlugIns/Xcode3UI.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/SharedFrameworks/DVTFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode6.0/SharedFrameworks/SpriteKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Applications/Application: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCPlayground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/PlaygroundLogger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AGL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AVKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accounts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AddressBook.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppKitScripting.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AppleScriptObjC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Automator.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CFNetwork.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CalendarStore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Carbon.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CloudKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Cocoa.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Collaboration.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Contacts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ContactsUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreAudioKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreBluetooth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreGraphics.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreImage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreLocation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMIDI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMIDIServer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMedia.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreMediaIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreTelephony.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreText.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreVideo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreWLAN.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CryptoTokenKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVComponentGlue.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DVDPlayback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DirectoryService.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecording.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiscRecordingUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DiskArbitration.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/DrawSprocket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/EventKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FWAUserLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/FinderSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ForceFeedback.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Foundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GLUT.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GSS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameController.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/GameplayKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Hypervisor.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ICADevices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IMServicePlugIn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetooth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOBluetoothUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/IOSurface.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageCaptureCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ImageIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InputMethodKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstallerPlugins.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/InstantMessage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaScriptCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/JavaVM.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kerberos.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Kernel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/LDAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MapKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaLibrary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MediaToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Message.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Metal.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/MetalKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ModelIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetFS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/NetworkExtension.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OSAKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenAL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenCL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenDirectory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenGL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PCSC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Photos.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PhotosUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PreferencePanes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/PubSub.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Python.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QTKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Quartz.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuartzCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickLook.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/QuickTime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Ruby.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SceneKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScreenSaver.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Scripting.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/ScriptingBridge.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Security.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Social.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SpriteKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/StoreKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/SyncServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/System.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/TWAIN.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tcl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Tk.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/VideoToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/WebKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vecLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/vmnet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AOSKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AOSUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AOSUILite.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Admin.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleGVA.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleJPEG.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleLDAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleSRP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleVA.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AppleVPA.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Assistant.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AuthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/AuthKitUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Backup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Bom.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/BookKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CalDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Calculate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CloudDocs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreAUC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreAVCHD.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreCDP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreDuet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreNLP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CorePDF.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreRAID.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreSDB.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreUtils.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/CoreWiFi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/DCERPC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/DVD.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/EAP8021X.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/EFILogin.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FMCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FMCoreUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FMF.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FMFUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FTAWD.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FWAVC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FaceCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FileSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FindMyMac.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/FinderKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Futhark.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/GeoKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/GraphKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Heimdal.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/HelpData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/IDS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/IMAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/IMAVCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/IMCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/ISSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Install.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Jet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Lookup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/MMCS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Mail.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/MailCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/MailUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Mangrove.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Marco.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/MediaKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/MediaUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/NetAuth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Netrb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Network.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Notes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/OAuth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Parsec.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/ParsecUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/PassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/PlugInKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/ProKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Quagga.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Restore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/SAObjects.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/SCEP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/SMBClient.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/SPSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Safari.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Seeding.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/ShareKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Sharing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Shortcut.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/SocialUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/StoreUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Symptoms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/TCC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/TimeSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/ToneKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Ubiquity.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/Uninstall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/VCXMPP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/VectorKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/XMPPCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/XQuery.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/acfs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/iCalendar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/iPod.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/iPodSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/kperf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/kperfdata.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/login.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/nt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/oncrpc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/vCard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/PrivateFrameworks/vmutils.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CFNetwork.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/ClockKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/Contacts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreGraphics.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreLocation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreMotion.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CoreText.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/EventKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/Foundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/HealthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/HomeKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/ImageIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/MapKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/MobileCoreServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/PassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/Security.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/UIKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/WatchConnectivity.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/WatchKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ABLE.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ABLEModel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ACTFramework.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AOSKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ATFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AVKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AXRuntime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AccountsUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AirTraffic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppConduit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppleAccount.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppleJPEG.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppleLDAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AppleSRP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/AuthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/BaseBoard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/BaseBoardUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/BiometricKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Bom.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/BookmarkDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CPMLBestShim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CacheDelete.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CalDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CallHistory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CameraKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CertInfo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CertUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CharlieKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ChatKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CloudDocs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ColorSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CommonAuth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ContentIndex.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreAUC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreActivity.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreCDP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreCapture.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreDuet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreHAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CorePDF.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreRecents.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreRoutine.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreSDB.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreTime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/CoreUtils.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/DAAPKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/DCIMServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/DataAccess.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Duet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/EAP8021X.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ETPeople.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/EasyConfig.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FMCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FMCoreLite.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FTAWD.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FTServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FaceCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FileProvider.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FindMyDevice.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FitnessUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FontServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/FrontBoard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/GPUSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/GeoServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/HangTracer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/HealthDaemon.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/HealthLite.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Heimdal.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/HomeSharing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IDS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IMAVCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IMCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IMDaemonCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IMFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IOSurface.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/IPTelephony.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ImageCapture.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Jet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MIME.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MMCS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MMCSServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MTLCompiler.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MailServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MapsSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Marco.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MediaRemote.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MediaStream.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Message.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MetalTools.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileAsset.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileBackup.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileDelete.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileIcons.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileKeyBag.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileTimer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MobileWiFi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/MusicLibrary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoLeash.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoMediaUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoPassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoPhoneUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoPhotosUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoRegistry.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/NanoTimeKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Netrb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Network.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Notes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/OAuth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/OpenCL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PacketFilter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PairedUnlock.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PassKitCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PepperCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PepperUICore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PhysicsKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PlugInKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PowerLog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PowerlogCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Preferences.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/PrintKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ProgressUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ProofReader.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Quagga.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/RTCReporting.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/RemoteUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ResponseKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/SAObjects.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Sharing.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/SiriTasks.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/SiriUICore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/SlideshowKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/SplashBoard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Stocks.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/StreamingZip.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/Symptoms.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/TCC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/TelephonyRPC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/TelephonyUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/TextInput.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/TextToSpeech.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/ToneLibrary.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/UIFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/UserActivity.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/UserFS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/VPNUtilities.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/VectorKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/VoiceTrigger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/WatchReplies.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/WebBookmarks.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/WebCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/WebKitLegacy.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/XPCKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/XPCService.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/iCalendar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/iTunesStore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/kperf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/kperfdata.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/oncrpc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/PrivateFrameworks/vCard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CFNetwork.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/ClockKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/Contacts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreGraphics.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreLocation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreMotion.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/CoreText.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/EventKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/Foundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/HealthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/HomeKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/ImageIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/MapKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/PassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/Security.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/UIKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/Frameworks/WatchKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/ABLE.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/ABLEModel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AOSKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AVKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AXRuntime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AppleJPEG.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AppleLDAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AppleSRP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/AuthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/BaseBoard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/Bom.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CalDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CameraKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CertInfo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CertUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/ChatKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CloudDocs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/ColorSync.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreAUC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreCDP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreDAV.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreDuet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreHAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CorePDF.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/CoreSDB.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/Duet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/IAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/IDS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/Jet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/MIME.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/MMCS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS2.0.sdk/System/Library/PrivateFrameworks/TCC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFoundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Accelerate.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Accounts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AdSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AddressBook.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AudioToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AudioUnit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CFNetwork.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CloudKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Contacts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ContactsUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreAudio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreAudioKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreGraphics.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreLocation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreMIDI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreMedia.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreMotion.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreText.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreVideo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/EventKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/EventKitUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Foundation.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/GLKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/GSS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/GameKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/GameplayKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/HealthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/HomeKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/IOKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ImageIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/MapKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/MediaPlayer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/MediaToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/MessageUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Metal.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/MetalKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ModelIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/NewsstandKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/OpenAL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/OpenGLES.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Photos.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PhotosUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PushKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/QuartzCore.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/QuickLook.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ReplayKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/SceneKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Security.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Social.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/SpriteKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/StoreKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Twitter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/UIKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/VideoToolbox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WatchKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/ABLE.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Bom.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Duet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/FMF.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/FMFUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/FTAWD.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/IAP.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/IDS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Jet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/MIME.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/MMCS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Marco.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Netrb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Notes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/OAuth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/SDAPI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/TCC.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/Tips.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/WebUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/kperf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/PrivateFrameworks/vCard.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/AVKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Accounts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/AdSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/AudioUnit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CFNetwork.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CloudKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Contacts.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreAudio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreImage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreMIDI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreMedia.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreText.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/CoreVideo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/EventKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/GLKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/GSS.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/GameKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/HealthKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/HomeKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/IOKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/ImageIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/MapKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/MessageUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Metal.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/MetalKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/ModelIO.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/OpenAL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/OpenGLES.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/PassKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Photos.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/PhotosUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/PushKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/QuickLook.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/ReplayKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/SceneKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Security.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Social.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/SpriteKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/StoreKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Twitter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/UIKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/WatchKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/WebKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/iAd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/PlaygroundLogger.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCPlayground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/PlugIns/IDEGit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XVimProject/XVim/HEAD/XcodeClasses/Xcode7.0/PlugIns/IDEGit.h -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/PlugIns/IDEInterfaceBuilderKit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/PlugIns/Xcode3UI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XcodeClasses/Xcode7.0/SharedFrameworks/SpriteKit.h: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------