├── .github └── pull_request_template.md ├── .gitignore ├── Frameworks ├── AVFAudio.framework │ ├── AVFAudio.tbd │ ├── Headers │ │ ├── AVAudioApplication.h │ │ ├── AVAudioBuffer.h │ │ ├── AVAudioChannelLayout.h │ │ ├── AVAudioConnectionPoint.h │ │ ├── AVAudioConverter.h │ │ ├── AVAudioEngine.h │ │ ├── AVAudioEnvironmentNode.h │ │ ├── AVAudioFile.h │ │ ├── AVAudioFormat.h │ │ ├── AVAudioIONode.h │ │ ├── AVAudioMixerNode.h │ │ ├── AVAudioMixing.h │ │ ├── AVAudioNode.h │ │ ├── AVAudioPlayer.h │ │ ├── AVAudioPlayerNode.h │ │ ├── AVAudioRecorder.h │ │ ├── AVAudioRoutingArbiter.h │ │ ├── AVAudioSequencer.h │ │ ├── AVAudioSession.h │ │ ├── AVAudioSessionDeprecated.h │ │ ├── AVAudioSessionRoute.h │ │ ├── AVAudioSessionTypes.h │ │ ├── AVAudioSettings.h │ │ ├── AVAudioSinkNode.h │ │ ├── AVAudioSourceNode.h │ │ ├── AVAudioTime.h │ │ ├── AVAudioTypes.h │ │ ├── AVAudioUnit.h │ │ ├── AVAudioUnitComponent.h │ │ ├── AVAudioUnitDelay.h │ │ ├── AVAudioUnitDistortion.h │ │ ├── AVAudioUnitEQ.h │ │ ├── AVAudioUnitEffect.h │ │ ├── AVAudioUnitGenerator.h │ │ ├── AVAudioUnitMIDIInstrument.h │ │ ├── AVAudioUnitReverb.h │ │ ├── AVAudioUnitSampler.h │ │ ├── AVAudioUnitTimeEffect.h │ │ ├── AVAudioUnitTimePitch.h │ │ ├── AVAudioUnitVarispeed.h │ │ ├── AVFAudio.h │ │ ├── AVMIDIPlayer.h │ │ ├── AVMusicEvents.h │ │ ├── AVSpeechSynthesis.h │ │ └── AVSpeechSynthesisProvider.h │ └── Versions │ │ └── Current │ │ ├── AVFAudio.tbd │ │ └── Headers │ │ ├── AVAudioApplication.h │ │ ├── AVAudioBuffer.h │ │ ├── AVAudioChannelLayout.h │ │ ├── AVAudioConnectionPoint.h │ │ ├── AVAudioConverter.h │ │ ├── AVAudioEngine.h │ │ ├── AVAudioEnvironmentNode.h │ │ ├── AVAudioFile.h │ │ ├── AVAudioFormat.h │ │ ├── AVAudioIONode.h │ │ ├── AVAudioMixerNode.h │ │ ├── AVAudioMixing.h │ │ ├── AVAudioNode.h │ │ ├── AVAudioPlayer.h │ │ ├── AVAudioPlayerNode.h │ │ ├── AVAudioRecorder.h │ │ ├── AVAudioRoutingArbiter.h │ │ ├── AVAudioSequencer.h │ │ ├── AVAudioSession.h │ │ ├── AVAudioSessionDeprecated.h │ │ ├── AVAudioSessionRoute.h │ │ ├── AVAudioSessionTypes.h │ │ ├── AVAudioSettings.h │ │ ├── AVAudioSinkNode.h │ │ ├── AVAudioSourceNode.h │ │ ├── AVAudioTime.h │ │ ├── AVAudioTypes.h │ │ ├── AVAudioUnit.h │ │ ├── AVAudioUnitComponent.h │ │ ├── AVAudioUnitDelay.h │ │ ├── AVAudioUnitDistortion.h │ │ ├── AVAudioUnitEQ.h │ │ ├── AVAudioUnitEffect.h │ │ ├── AVAudioUnitGenerator.h │ │ ├── AVAudioUnitMIDIInstrument.h │ │ ├── AVAudioUnitReverb.h │ │ ├── AVAudioUnitSampler.h │ │ ├── AVAudioUnitTimeEffect.h │ │ ├── AVAudioUnitTimePitch.h │ │ ├── AVAudioUnitVarispeed.h │ │ ├── AVFAudio.h │ │ ├── AVMIDIPlayer.h │ │ ├── AVMusicEvents.h │ │ ├── AVSpeechSynthesis.h │ │ └── AVSpeechSynthesisProvider.h ├── AppKit.framework │ ├── AppKit.tbd │ ├── Headers │ │ ├── AppKit.h │ │ ├── AppKitDefines.h │ │ ├── AppKitErrors.h │ │ ├── NSATSTypesetter.h │ │ ├── NSAccessibility.h │ │ ├── NSAccessibilityColor.h │ │ ├── NSAccessibilityConstants.h │ │ ├── NSAccessibilityCustomAction.h │ │ ├── NSAccessibilityCustomRotor.h │ │ ├── NSAccessibilityElement.h │ │ ├── NSAccessibilityProtocols.h │ │ ├── NSActionCell.h │ │ ├── NSAffineTransform.h │ │ ├── NSAlert.h │ │ ├── NSAlignmentFeedbackFilter.h │ │ ├── NSAnimation.h │ │ ├── NSAnimationContext.h │ │ ├── NSAppearance.h │ │ ├── NSAppleScriptExtensions.h │ │ ├── NSApplication.h │ │ ├── NSApplicationScripting.h │ │ ├── NSArrayController.h │ │ ├── NSAttributedString.h │ │ ├── NSBezierPath.h │ │ ├── NSBitmapImageRep.h │ │ ├── NSBox.h │ │ ├── NSBrowser.h │ │ ├── NSBrowserCell.h │ │ ├── NSButton.h │ │ ├── NSButtonCell.h │ │ ├── NSButtonTouchBarItem.h │ │ ├── NSCIImageRep.h │ │ ├── NSCachedImageRep.h │ │ ├── NSCandidateListTouchBarItem.h │ │ ├── NSCell.h │ │ ├── NSClickGestureRecognizer.h │ │ ├── NSClipView.h │ │ ├── NSCollectionView.h │ │ ├── NSCollectionViewCompositionalLayout.h │ │ ├── NSCollectionViewFlowLayout.h │ │ ├── NSCollectionViewGridLayout.h │ │ ├── NSCollectionViewLayout.h │ │ ├── NSCollectionViewTransitionLayout.h │ │ ├── NSColor.h │ │ ├── NSColorList.h │ │ ├── NSColorPanel.h │ │ ├── NSColorPicker.h │ │ ├── NSColorPickerTouchBarItem.h │ │ ├── NSColorPicking.h │ │ ├── NSColorSampler.h │ │ ├── NSColorSpace.h │ │ ├── NSColorWell.h │ │ ├── NSComboBox.h │ │ ├── NSComboBoxCell.h │ │ ├── NSComboButton.h │ │ ├── NSControl.h │ │ ├── NSController.h │ │ ├── NSCursor.h │ │ ├── NSCustomImageRep.h │ │ ├── NSCustomTouchBarItem.h │ │ ├── NSDataAsset.h │ │ ├── NSDatePicker.h │ │ ├── NSDatePickerCell.h │ │ ├── NSDictionaryController.h │ │ ├── NSDiffableDataSource.h │ │ ├── NSDockTile.h │ │ ├── NSDocument.h │ │ ├── NSDocumentController.h │ │ ├── NSDocumentScripting.h │ │ ├── NSDragging.h │ │ ├── NSDraggingItem.h │ │ ├── NSDraggingSession.h │ │ ├── NSDrawer.h │ │ ├── NSEPSImageRep.h │ │ ├── NSErrors.h │ │ ├── NSEvent.h │ │ ├── NSFilePromiseProvider.h │ │ ├── NSFilePromiseReceiver.h │ │ ├── NSFileWrapper.h │ │ ├── NSFileWrapperExtensions.h │ │ ├── NSFont.h │ │ ├── NSFontAssetRequest.h │ │ ├── NSFontCollection.h │ │ ├── NSFontDescriptor.h │ │ ├── NSFontManager.h │ │ ├── NSFontPanel.h │ │ ├── NSForm.h │ │ ├── NSFormCell.h │ │ ├── NSGestureRecognizer.h │ │ ├── NSGlyphGenerator.h │ │ ├── NSGlyphInfo.h │ │ ├── NSGradient.h │ │ ├── NSGraphics.h │ │ ├── NSGraphicsContext.h │ │ ├── NSGridView.h │ │ ├── NSGroupTouchBarItem.h │ │ ├── NSHapticFeedback.h │ │ ├── NSHelpManager.h │ │ ├── NSImage.h │ │ ├── NSImageCell.h │ │ ├── NSImageRep.h │ │ ├── NSImageView.h │ │ ├── NSInputManager.h │ │ ├── NSInputServer.h │ │ ├── NSInterfaceStyle.h │ │ ├── NSItemProvider.h │ │ ├── NSKeyValueBinding.h │ │ ├── NSLayoutAnchor.h │ │ ├── NSLayoutConstraint.h │ │ ├── NSLayoutGuide.h │ │ ├── NSLayoutManager.h │ │ ├── NSLevelIndicator.h │ │ ├── NSLevelIndicatorCell.h │ │ ├── NSMagnificationGestureRecognizer.h │ │ ├── NSMatrix.h │ │ ├── NSMediaLibraryBrowserController.h │ │ ├── NSMenu.h │ │ ├── NSMenuItem.h │ │ ├── NSMenuItemBadge.h │ │ ├── NSMenuItemCell.h │ │ ├── NSMenuToolbarItem.h │ │ ├── NSMovie.h │ │ ├── NSNib.h │ │ ├── NSNibConnector.h │ │ ├── NSNibControlConnector.h │ │ ├── NSNibDeclarations.h │ │ ├── NSNibLoading.h │ │ ├── NSNibOutletConnector.h │ │ ├── NSObjectController.h │ │ ├── NSOpenGL.h │ │ ├── NSOpenGLLayer.h │ │ ├── NSOpenGLView.h │ │ ├── NSOpenPanel.h │ │ ├── NSOutlineView.h │ │ ├── NSPDFImageRep.h │ │ ├── NSPDFInfo.h │ │ ├── NSPDFPanel.h │ │ ├── NSPICTImageRep.h │ │ ├── NSPageController.h │ │ ├── NSPageLayout.h │ │ ├── NSPanGestureRecognizer.h │ │ ├── NSPanel.h │ │ ├── NSParagraphStyle.h │ │ ├── NSPasteboard.h │ │ ├── NSPasteboardItem.h │ │ ├── NSPathCell.h │ │ ├── NSPathComponentCell.h │ │ ├── NSPathControl.h │ │ ├── NSPathControlItem.h │ │ ├── NSPersistentDocument.h │ │ ├── NSPickerTouchBarItem.h │ │ ├── NSPopUpButton.h │ │ ├── NSPopUpButtonCell.h │ │ ├── NSPopover.h │ │ ├── NSPopoverTouchBarItem.h │ │ ├── NSPredicateEditor.h │ │ ├── NSPredicateEditorRowTemplate.h │ │ ├── NSPressGestureRecognizer.h │ │ ├── NSPressureConfiguration.h │ │ ├── NSPreviewRepresentingActivityItem.h │ │ ├── NSPrintInfo.h │ │ ├── NSPrintOperation.h │ │ ├── NSPrintPanel.h │ │ ├── NSPrinter.h │ │ ├── NSProgressIndicator.h │ │ ├── NSResponder.h │ │ ├── NSRotationGestureRecognizer.h │ │ ├── NSRuleEditor.h │ │ ├── NSRulerMarker.h │ │ ├── NSRulerView.h │ │ ├── NSRunningApplication.h │ │ ├── NSSavePanel.h │ │ ├── NSScreen.h │ │ ├── NSScrollView.h │ │ ├── NSScroller.h │ │ ├── NSScrubber.h │ │ ├── NSScrubberItemView.h │ │ ├── NSScrubberLayout.h │ │ ├── NSSearchField.h │ │ ├── NSSearchFieldCell.h │ │ ├── NSSearchToolbarItem.h │ │ ├── NSSecureTextField.h │ │ ├── NSSegmentedCell.h │ │ ├── NSSegmentedControl.h │ │ ├── NSShadow.h │ │ ├── NSSharingService.h │ │ ├── NSSharingServicePickerToolbarItem.h │ │ ├── NSSharingServicePickerTouchBarItem.h │ │ ├── NSSlider.h │ │ ├── NSSliderAccessory.h │ │ ├── NSSliderCell.h │ │ ├── NSSliderTouchBarItem.h │ │ ├── NSSound.h │ │ ├── NSSpeechRecognizer.h │ │ ├── NSSpeechSynthesizer.h │ │ ├── NSSpellChecker.h │ │ ├── NSSpellProtocol.h │ │ ├── NSSpellServer.h │ │ ├── NSSplitView.h │ │ ├── NSSplitViewController.h │ │ ├── NSSplitViewItem.h │ │ ├── NSStackView.h │ │ ├── NSStatusBar.h │ │ ├── NSStatusBarButton.h │ │ ├── NSStatusItem.h │ │ ├── NSStepper.h │ │ ├── NSStepperCell.h │ │ ├── NSStepperTouchBarItem.h │ │ ├── NSStoryboard.h │ │ ├── NSStoryboardSegue.h │ │ ├── NSStringDrawing.h │ │ ├── NSSwitch.h │ │ ├── NSTabView.h │ │ ├── NSTabViewController.h │ │ ├── NSTabViewItem.h │ │ ├── NSTableCellView.h │ │ ├── NSTableColumn.h │ │ ├── NSTableHeaderCell.h │ │ ├── NSTableHeaderView.h │ │ ├── NSTableRowView.h │ │ ├── NSTableView.h │ │ ├── NSTableViewDiffableDataSource.h │ │ ├── NSTableViewRowAction.h │ │ ├── NSText.h │ │ ├── NSTextAlternatives.h │ │ ├── NSTextAttachment.h │ │ ├── NSTextAttachmentCell.h │ │ ├── NSTextCheckingClient.h │ │ ├── NSTextCheckingController.h │ │ ├── NSTextContainer.h │ │ ├── NSTextContent.h │ │ ├── NSTextContentManager.h │ │ ├── NSTextElement.h │ │ ├── NSTextField.h │ │ ├── NSTextFieldCell.h │ │ ├── NSTextFinder.h │ │ ├── NSTextInputClient.h │ │ ├── NSTextInputContext.h │ │ ├── NSTextInsertionIndicator.h │ │ ├── NSTextLayoutFragment.h │ │ ├── NSTextLayoutManager.h │ │ ├── NSTextLineFragment.h │ │ ├── NSTextList.h │ │ ├── NSTextListElement.h │ │ ├── NSTextRange.h │ │ ├── NSTextSelection.h │ │ ├── NSTextSelectionNavigation.h │ │ ├── NSTextStorage.h │ │ ├── NSTextStorageScripting.h │ │ ├── NSTextTable.h │ │ ├── NSTextView.h │ │ ├── NSTextViewportLayoutController.h │ │ ├── NSTintConfiguration.h │ │ ├── NSTitlebarAccessoryViewController.h │ │ ├── NSTokenField.h │ │ ├── NSTokenFieldCell.h │ │ ├── NSToolbar.h │ │ ├── NSToolbarItem.h │ │ ├── NSToolbarItemGroup.h │ │ ├── NSTouch.h │ │ ├── NSTouchBar.h │ │ ├── NSTouchBarItem.h │ │ ├── NSTrackingArea.h │ │ ├── NSTrackingSeparatorToolbarItem.h │ │ ├── NSTreeController.h │ │ ├── NSTreeNode.h │ │ ├── NSTypesetter.h │ │ ├── NSUserActivity.h │ │ ├── NSUserDefaultsController.h │ │ ├── NSUserInterfaceCompression.h │ │ ├── NSUserInterfaceItemIdentification.h │ │ ├── NSUserInterfaceItemSearching.h │ │ ├── NSUserInterfaceLayout.h │ │ ├── NSUserInterfaceValidation.h │ │ ├── NSView.h │ │ ├── NSViewController.h │ │ ├── NSVisualEffectView.h │ │ ├── NSWindow.h │ │ ├── NSWindowController.h │ │ ├── NSWindowRestoration.h │ │ ├── NSWindowScripting.h │ │ ├── NSWindowTab.h │ │ ├── NSWindowTabGroup.h │ │ └── NSWorkspace.h │ └── Versions │ │ └── Current │ │ ├── AppKit.tbd │ │ └── Headers │ │ ├── AppKit.h │ │ ├── AppKitDefines.h │ │ ├── AppKitErrors.h │ │ ├── NSATSTypesetter.h │ │ ├── NSAccessibility.h │ │ ├── NSAccessibilityColor.h │ │ ├── NSAccessibilityConstants.h │ │ ├── NSAccessibilityCustomAction.h │ │ ├── NSAccessibilityCustomRotor.h │ │ ├── NSAccessibilityElement.h │ │ ├── NSAccessibilityProtocols.h │ │ ├── NSActionCell.h │ │ ├── NSAffineTransform.h │ │ ├── NSAlert.h │ │ ├── NSAlignmentFeedbackFilter.h │ │ ├── NSAnimation.h │ │ ├── NSAnimationContext.h │ │ ├── NSAppearance.h │ │ ├── NSAppleScriptExtensions.h │ │ ├── NSApplication.h │ │ ├── NSApplicationScripting.h │ │ ├── NSArrayController.h │ │ ├── NSAttributedString.h │ │ ├── NSBezierPath.h │ │ ├── NSBitmapImageRep.h │ │ ├── NSBox.h │ │ ├── NSBrowser.h │ │ ├── NSBrowserCell.h │ │ ├── NSButton.h │ │ ├── NSButtonCell.h │ │ ├── NSButtonTouchBarItem.h │ │ ├── NSCIImageRep.h │ │ ├── NSCachedImageRep.h │ │ ├── NSCandidateListTouchBarItem.h │ │ ├── NSCell.h │ │ ├── NSClickGestureRecognizer.h │ │ ├── NSClipView.h │ │ ├── NSCollectionView.h │ │ ├── NSCollectionViewCompositionalLayout.h │ │ ├── NSCollectionViewFlowLayout.h │ │ ├── NSCollectionViewGridLayout.h │ │ ├── NSCollectionViewLayout.h │ │ ├── NSCollectionViewTransitionLayout.h │ │ ├── NSColor.h │ │ ├── NSColorList.h │ │ ├── NSColorPanel.h │ │ ├── NSColorPicker.h │ │ ├── NSColorPickerTouchBarItem.h │ │ ├── NSColorPicking.h │ │ ├── NSColorSampler.h │ │ ├── NSColorSpace.h │ │ ├── NSColorWell.h │ │ ├── NSComboBox.h │ │ ├── NSComboBoxCell.h │ │ ├── NSComboButton.h │ │ ├── NSControl.h │ │ ├── NSController.h │ │ ├── NSCursor.h │ │ ├── NSCustomImageRep.h │ │ ├── NSCustomTouchBarItem.h │ │ ├── NSDataAsset.h │ │ ├── NSDatePicker.h │ │ ├── NSDatePickerCell.h │ │ ├── NSDictionaryController.h │ │ ├── NSDiffableDataSource.h │ │ ├── NSDockTile.h │ │ ├── NSDocument.h │ │ ├── NSDocumentController.h │ │ ├── NSDocumentScripting.h │ │ ├── NSDragging.h │ │ ├── NSDraggingItem.h │ │ ├── NSDraggingSession.h │ │ ├── NSDrawer.h │ │ ├── NSEPSImageRep.h │ │ ├── NSErrors.h │ │ ├── NSEvent.h │ │ ├── NSFilePromiseProvider.h │ │ ├── NSFilePromiseReceiver.h │ │ ├── NSFileWrapper.h │ │ ├── NSFileWrapperExtensions.h │ │ ├── NSFont.h │ │ ├── NSFontAssetRequest.h │ │ ├── NSFontCollection.h │ │ ├── NSFontDescriptor.h │ │ ├── NSFontManager.h │ │ ├── NSFontPanel.h │ │ ├── NSForm.h │ │ ├── NSFormCell.h │ │ ├── NSGestureRecognizer.h │ │ ├── NSGlyphGenerator.h │ │ ├── NSGlyphInfo.h │ │ ├── NSGradient.h │ │ ├── NSGraphics.h │ │ ├── NSGraphicsContext.h │ │ ├── NSGridView.h │ │ ├── NSGroupTouchBarItem.h │ │ ├── NSHapticFeedback.h │ │ ├── NSHelpManager.h │ │ ├── NSImage.h │ │ ├── NSImageCell.h │ │ ├── NSImageRep.h │ │ ├── NSImageView.h │ │ ├── NSInputManager.h │ │ ├── NSInputServer.h │ │ ├── NSInterfaceStyle.h │ │ ├── NSItemProvider.h │ │ ├── NSKeyValueBinding.h │ │ ├── NSLayoutAnchor.h │ │ ├── NSLayoutConstraint.h │ │ ├── NSLayoutGuide.h │ │ ├── NSLayoutManager.h │ │ ├── NSLevelIndicator.h │ │ ├── NSLevelIndicatorCell.h │ │ ├── NSMagnificationGestureRecognizer.h │ │ ├── NSMatrix.h │ │ ├── NSMediaLibraryBrowserController.h │ │ ├── NSMenu.h │ │ ├── NSMenuItem.h │ │ ├── NSMenuItemBadge.h │ │ ├── NSMenuItemCell.h │ │ ├── NSMenuToolbarItem.h │ │ ├── NSMovie.h │ │ ├── NSNib.h │ │ ├── NSNibConnector.h │ │ ├── NSNibControlConnector.h │ │ ├── NSNibDeclarations.h │ │ ├── NSNibLoading.h │ │ ├── NSNibOutletConnector.h │ │ ├── NSObjectController.h │ │ ├── NSOpenGL.h │ │ ├── NSOpenGLLayer.h │ │ ├── NSOpenGLView.h │ │ ├── NSOpenPanel.h │ │ ├── NSOutlineView.h │ │ ├── NSPDFImageRep.h │ │ ├── NSPDFInfo.h │ │ ├── NSPDFPanel.h │ │ ├── NSPICTImageRep.h │ │ ├── NSPageController.h │ │ ├── NSPageLayout.h │ │ ├── NSPanGestureRecognizer.h │ │ ├── NSPanel.h │ │ ├── NSParagraphStyle.h │ │ ├── NSPasteboard.h │ │ ├── NSPasteboardItem.h │ │ ├── NSPathCell.h │ │ ├── NSPathComponentCell.h │ │ ├── NSPathControl.h │ │ ├── NSPathControlItem.h │ │ ├── NSPersistentDocument.h │ │ ├── NSPickerTouchBarItem.h │ │ ├── NSPopUpButton.h │ │ ├── NSPopUpButtonCell.h │ │ ├── NSPopover.h │ │ ├── NSPopoverTouchBarItem.h │ │ ├── NSPredicateEditor.h │ │ ├── NSPredicateEditorRowTemplate.h │ │ ├── NSPressGestureRecognizer.h │ │ ├── NSPressureConfiguration.h │ │ ├── NSPreviewRepresentingActivityItem.h │ │ ├── NSPrintInfo.h │ │ ├── NSPrintOperation.h │ │ ├── NSPrintPanel.h │ │ ├── NSPrinter.h │ │ ├── NSProgressIndicator.h │ │ ├── NSResponder.h │ │ ├── NSRotationGestureRecognizer.h │ │ ├── NSRuleEditor.h │ │ ├── NSRulerMarker.h │ │ ├── NSRulerView.h │ │ ├── NSRunningApplication.h │ │ ├── NSSavePanel.h │ │ ├── NSScreen.h │ │ ├── NSScrollView.h │ │ ├── NSScroller.h │ │ ├── NSScrubber.h │ │ ├── NSScrubberItemView.h │ │ ├── NSScrubberLayout.h │ │ ├── NSSearchField.h │ │ ├── NSSearchFieldCell.h │ │ ├── NSSearchToolbarItem.h │ │ ├── NSSecureTextField.h │ │ ├── NSSegmentedCell.h │ │ ├── NSSegmentedControl.h │ │ ├── NSShadow.h │ │ ├── NSSharingService.h │ │ ├── NSSharingServicePickerToolbarItem.h │ │ ├── NSSharingServicePickerTouchBarItem.h │ │ ├── NSSlider.h │ │ ├── NSSliderAccessory.h │ │ ├── NSSliderCell.h │ │ ├── NSSliderTouchBarItem.h │ │ ├── NSSound.h │ │ ├── NSSpeechRecognizer.h │ │ ├── NSSpeechSynthesizer.h │ │ ├── NSSpellChecker.h │ │ ├── NSSpellProtocol.h │ │ ├── NSSpellServer.h │ │ ├── NSSplitView.h │ │ ├── NSSplitViewController.h │ │ ├── NSSplitViewItem.h │ │ ├── NSStackView.h │ │ ├── NSStatusBar.h │ │ ├── NSStatusBarButton.h │ │ ├── NSStatusItem.h │ │ ├── NSStepper.h │ │ ├── NSStepperCell.h │ │ ├── NSStepperTouchBarItem.h │ │ ├── NSStoryboard.h │ │ ├── NSStoryboardSegue.h │ │ ├── NSStringDrawing.h │ │ ├── NSSwitch.h │ │ ├── NSTabView.h │ │ ├── NSTabViewController.h │ │ ├── NSTabViewItem.h │ │ ├── NSTableCellView.h │ │ ├── NSTableColumn.h │ │ ├── NSTableHeaderCell.h │ │ ├── NSTableHeaderView.h │ │ ├── NSTableRowView.h │ │ ├── NSTableView.h │ │ ├── NSTableViewDiffableDataSource.h │ │ ├── NSTableViewRowAction.h │ │ ├── NSText.h │ │ ├── NSTextAlternatives.h │ │ ├── NSTextAttachment.h │ │ ├── NSTextAttachmentCell.h │ │ ├── NSTextCheckingClient.h │ │ ├── NSTextCheckingController.h │ │ ├── NSTextContainer.h │ │ ├── NSTextContent.h │ │ ├── NSTextContentManager.h │ │ ├── NSTextElement.h │ │ ├── NSTextField.h │ │ ├── NSTextFieldCell.h │ │ ├── NSTextFinder.h │ │ ├── NSTextInputClient.h │ │ ├── NSTextInputContext.h │ │ ├── NSTextInsertionIndicator.h │ │ ├── NSTextLayoutFragment.h │ │ ├── NSTextLayoutManager.h │ │ ├── NSTextLineFragment.h │ │ ├── NSTextList.h │ │ ├── NSTextListElement.h │ │ ├── NSTextRange.h │ │ ├── NSTextSelection.h │ │ ├── NSTextSelectionNavigation.h │ │ ├── NSTextStorage.h │ │ ├── NSTextStorageScripting.h │ │ ├── NSTextTable.h │ │ ├── NSTextView.h │ │ ├── NSTextViewportLayoutController.h │ │ ├── NSTintConfiguration.h │ │ ├── NSTitlebarAccessoryViewController.h │ │ ├── NSTokenField.h │ │ ├── NSTokenFieldCell.h │ │ ├── NSToolbar.h │ │ ├── NSToolbarItem.h │ │ ├── NSToolbarItemGroup.h │ │ ├── NSTouch.h │ │ ├── NSTouchBar.h │ │ ├── NSTouchBarItem.h │ │ ├── NSTrackingArea.h │ │ ├── NSTrackingSeparatorToolbarItem.h │ │ ├── NSTreeController.h │ │ ├── NSTreeNode.h │ │ ├── NSTypesetter.h │ │ ├── NSUserActivity.h │ │ ├── NSUserDefaultsController.h │ │ ├── NSUserInterfaceCompression.h │ │ ├── NSUserInterfaceItemIdentification.h │ │ ├── NSUserInterfaceItemSearching.h │ │ ├── NSUserInterfaceLayout.h │ │ ├── NSUserInterfaceValidation.h │ │ ├── NSView.h │ │ ├── NSViewController.h │ │ ├── NSVisualEffectView.h │ │ ├── NSWindow.h │ │ ├── NSWindowController.h │ │ ├── NSWindowRestoration.h │ │ ├── NSWindowScripting.h │ │ ├── NSWindowTab.h │ │ ├── NSWindowTabGroup.h │ │ └── NSWorkspace.h ├── ApplicationServices.framework │ ├── ApplicationServices.tbd │ ├── Frameworks │ │ ├── ATS.framework │ │ │ ├── ATS.tbd │ │ │ ├── Headers │ │ │ │ ├── ATS.h │ │ │ │ ├── ATSDefines.h │ │ │ │ ├── ATSFont.h │ │ │ │ ├── ATSLayoutTypes.h │ │ │ │ ├── ATSTypes.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ATS.tbd │ │ │ │ ├── Headers │ │ │ │ ├── ATS.h │ │ │ │ ├── ATSDefines.h │ │ │ │ ├── ATSFont.h │ │ │ │ ├── ATSLayoutTypes.h │ │ │ │ ├── ATSTypes.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ │ └── Resources │ │ │ │ ├── ATSHI.tbd │ │ │ │ ├── libATSServer.tbd │ │ │ │ ├── libFontRegistry.tbd │ │ │ │ ├── libFontRegistryUI.tbd │ │ │ │ ├── libFontValidation.tbd │ │ │ │ └── libFontWorkerAccess.tbd │ │ ├── ATSUI.framework │ │ │ ├── ATSUI.tbd │ │ │ ├── Headers │ │ │ │ ├── ATSAvailability.h │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ └── ATSUnicodeTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ATSUI.tbd │ │ │ │ └── Headers │ │ │ │ ├── ATSAvailability.h │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ └── ATSUnicodeTypes.h │ │ ├── ColorSync.framework │ │ │ ├── ColorSync.tbd │ │ │ ├── Headers │ │ │ │ ├── ColorSync.h │ │ │ │ ├── ColorSyncBase.h │ │ │ │ ├── ColorSyncCMM.h │ │ │ │ ├── ColorSyncDevice.h │ │ │ │ ├── ColorSyncProfile.h │ │ │ │ └── ColorSyncTransform.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ColorSync.tbd │ │ │ │ └── Headers │ │ │ │ ├── ColorSync.h │ │ │ │ ├── ColorSyncBase.h │ │ │ │ ├── ColorSyncCMM.h │ │ │ │ ├── ColorSyncDevice.h │ │ │ │ ├── ColorSyncProfile.h │ │ │ │ └── ColorSyncTransform.h │ │ ├── ColorSyncLegacy.framework │ │ │ ├── ColorSyncLegacy.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ColorSyncLegacy.tbd │ │ │ │ └── Resources │ │ │ │ └── ColorSyncDeprecated.tbd │ │ ├── CoreGraphics.framework │ │ │ ├── CoreGraphics.tbd │ │ │ ├── Headers │ │ │ │ ├── CGAffineTransform.h │ │ │ │ ├── CGBase.h │ │ │ │ ├── CGBitmapContext.h │ │ │ │ ├── CGColor.h │ │ │ │ ├── CGColorConversionInfo.h │ │ │ │ ├── CGColorSpace.h │ │ │ │ ├── CGContext.h │ │ │ │ ├── CGConvertColorDataWithFormat.h │ │ │ │ ├── CGDataConsumer.h │ │ │ │ ├── CGDataProvider.h │ │ │ │ ├── CGDirectDisplay.h │ │ │ │ ├── CGDirectDisplayMetal.h │ │ │ │ ├── CGDirectPalette.h │ │ │ │ ├── CGDisplayConfiguration.h │ │ │ │ ├── CGDisplayFade.h │ │ │ │ ├── CGDisplayStream.h │ │ │ │ ├── CGError.h │ │ │ │ ├── CGEvent.h │ │ │ │ ├── CGEventSource.h │ │ │ │ ├── CGEventTypes.h │ │ │ │ ├── CGFont.h │ │ │ │ ├── CGFunction.h │ │ │ │ ├── CGGeometry.h │ │ │ │ ├── CGGradient.h │ │ │ │ ├── CGImage.h │ │ │ │ ├── CGLayer.h │ │ │ │ ├── CGPDFArray.h │ │ │ │ ├── CGPDFContentStream.h │ │ │ │ ├── CGPDFContext.h │ │ │ │ ├── CGPDFDictionary.h │ │ │ │ ├── CGPDFDocument.h │ │ │ │ ├── CGPDFObject.h │ │ │ │ ├── CGPDFOperatorTable.h │ │ │ │ ├── CGPDFPage.h │ │ │ │ ├── CGPDFScanner.h │ │ │ │ ├── CGPDFStream.h │ │ │ │ ├── CGPDFString.h │ │ │ │ ├── CGPSConverter.h │ │ │ │ ├── CGPath.h │ │ │ │ ├── CGPattern.h │ │ │ │ ├── CGRemoteOperation.h │ │ │ │ ├── CGSession.h │ │ │ │ ├── CGShading.h │ │ │ │ ├── CGWindow.h │ │ │ │ ├── CGWindowLevel.h │ │ │ │ └── CoreGraphics.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CoreGraphics.tbd │ │ │ │ └── Headers │ │ │ │ ├── CGAffineTransform.h │ │ │ │ ├── CGBase.h │ │ │ │ ├── CGBitmapContext.h │ │ │ │ ├── CGColor.h │ │ │ │ ├── CGColorConversionInfo.h │ │ │ │ ├── CGColorSpace.h │ │ │ │ ├── CGContext.h │ │ │ │ ├── CGConvertColorDataWithFormat.h │ │ │ │ ├── CGDataConsumer.h │ │ │ │ ├── CGDataProvider.h │ │ │ │ ├── CGDirectDisplay.h │ │ │ │ ├── CGDirectDisplayMetal.h │ │ │ │ ├── CGDirectPalette.h │ │ │ │ ├── CGDisplayConfiguration.h │ │ │ │ ├── CGDisplayFade.h │ │ │ │ ├── CGDisplayStream.h │ │ │ │ ├── CGError.h │ │ │ │ ├── CGEvent.h │ │ │ │ ├── CGEventSource.h │ │ │ │ ├── CGEventTypes.h │ │ │ │ ├── CGFont.h │ │ │ │ ├── CGFunction.h │ │ │ │ ├── CGGeometry.h │ │ │ │ ├── CGGradient.h │ │ │ │ ├── CGImage.h │ │ │ │ ├── CGLayer.h │ │ │ │ ├── CGPDFArray.h │ │ │ │ ├── CGPDFContentStream.h │ │ │ │ ├── CGPDFContext.h │ │ │ │ ├── CGPDFDictionary.h │ │ │ │ ├── CGPDFDocument.h │ │ │ │ ├── CGPDFObject.h │ │ │ │ ├── CGPDFOperatorTable.h │ │ │ │ ├── CGPDFPage.h │ │ │ │ ├── CGPDFScanner.h │ │ │ │ ├── CGPDFStream.h │ │ │ │ ├── CGPDFString.h │ │ │ │ ├── CGPSConverter.h │ │ │ │ ├── CGPath.h │ │ │ │ ├── CGPattern.h │ │ │ │ ├── CGRemoteOperation.h │ │ │ │ ├── CGSession.h │ │ │ │ ├── CGShading.h │ │ │ │ ├── CGWindow.h │ │ │ │ ├── CGWindowLevel.h │ │ │ │ └── CoreGraphics.h │ │ ├── CoreText.framework │ │ │ ├── CoreText.tbd │ │ │ ├── Headers │ │ │ │ ├── CTDefines.h │ │ │ │ ├── CTFont.h │ │ │ │ ├── CTFontCollection.h │ │ │ │ ├── CTFontDescriptor.h │ │ │ │ ├── CTFontManager.h │ │ │ │ ├── CTFontManagerErrors.h │ │ │ │ ├── CTFontTraits.h │ │ │ │ ├── CTFrame.h │ │ │ │ ├── CTFramesetter.h │ │ │ │ ├── CTGlyphInfo.h │ │ │ │ ├── CTLine.h │ │ │ │ ├── CTParagraphStyle.h │ │ │ │ ├── CTRubyAnnotation.h │ │ │ │ ├── CTRun.h │ │ │ │ ├── CTRunDelegate.h │ │ │ │ ├── CTStringAttributes.h │ │ │ │ ├── CTTextTab.h │ │ │ │ ├── CTTypesetter.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CoreText.tbd │ │ │ │ └── Headers │ │ │ │ ├── CTDefines.h │ │ │ │ ├── CTFont.h │ │ │ │ ├── CTFontCollection.h │ │ │ │ ├── CTFontDescriptor.h │ │ │ │ ├── CTFontManager.h │ │ │ │ ├── CTFontManagerErrors.h │ │ │ │ ├── CTFontTraits.h │ │ │ │ ├── CTFrame.h │ │ │ │ ├── CTFramesetter.h │ │ │ │ ├── CTGlyphInfo.h │ │ │ │ ├── CTLine.h │ │ │ │ ├── CTParagraphStyle.h │ │ │ │ ├── CTRubyAnnotation.h │ │ │ │ ├── CTRun.h │ │ │ │ ├── CTRunDelegate.h │ │ │ │ ├── CTStringAttributes.h │ │ │ │ ├── CTTextTab.h │ │ │ │ ├── CTTypesetter.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ ├── HIServices.framework │ │ │ ├── HIServices.tbd │ │ │ ├── Headers │ │ │ │ ├── AXActionConstants.h │ │ │ │ ├── AXAttributeConstants.h │ │ │ │ ├── AXConstants.h │ │ │ │ ├── AXError.h │ │ │ │ ├── AXNotificationConstants.h │ │ │ │ ├── AXRoleConstants.h │ │ │ │ ├── AXTextAttributedString.h │ │ │ │ ├── AXUIElement.h │ │ │ │ ├── AXValue.h │ │ │ │ ├── AXValueConstants.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── HIServices.h │ │ │ │ ├── HIShape.h │ │ │ │ ├── Icons.h │ │ │ │ ├── InternetConfig.h │ │ │ │ ├── Pasteboard.h │ │ │ │ ├── Processes.h │ │ │ │ ├── TranslationServices.h │ │ │ │ └── UniversalAccess.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── HIServices.tbd │ │ │ │ └── Headers │ │ │ │ ├── AXActionConstants.h │ │ │ │ ├── AXAttributeConstants.h │ │ │ │ ├── AXConstants.h │ │ │ │ ├── AXError.h │ │ │ │ ├── AXNotificationConstants.h │ │ │ │ ├── AXRoleConstants.h │ │ │ │ ├── AXTextAttributedString.h │ │ │ │ ├── AXUIElement.h │ │ │ │ ├── AXValue.h │ │ │ │ ├── AXValueConstants.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── HIServices.h │ │ │ │ ├── HIShape.h │ │ │ │ ├── Icons.h │ │ │ │ ├── InternetConfig.h │ │ │ │ ├── Pasteboard.h │ │ │ │ ├── Processes.h │ │ │ │ ├── TranslationServices.h │ │ │ │ └── UniversalAccess.h │ │ ├── ImageIO.framework │ │ │ ├── Headers │ │ │ │ ├── CGImageAnimation.h │ │ │ │ ├── CGImageDestination.h │ │ │ │ ├── CGImageMetadata.h │ │ │ │ ├── CGImageProperties.h │ │ │ │ ├── CGImageSource.h │ │ │ │ ├── ImageIO.h │ │ │ │ └── ImageIOBase.h │ │ │ ├── ImageIO.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── CGImageAnimation.h │ │ │ │ ├── CGImageDestination.h │ │ │ │ ├── CGImageMetadata.h │ │ │ │ ├── CGImageProperties.h │ │ │ │ ├── CGImageSource.h │ │ │ │ ├── ImageIO.h │ │ │ │ └── ImageIOBase.h │ │ │ │ ├── ImageIO.tbd │ │ │ │ └── Resources │ │ │ │ ├── libGIF.tbd │ │ │ │ ├── libJP2.tbd │ │ │ │ ├── libJPEG.tbd │ │ │ │ ├── libPng.tbd │ │ │ │ ├── libRadiance.tbd │ │ │ │ └── libTIFF.tbd │ │ ├── PrintCore.framework │ │ │ ├── Headers │ │ │ │ ├── PDEPluginInterface.h │ │ │ │ ├── PMCore.h │ │ │ │ ├── PMDefinitions.h │ │ │ │ ├── PMErrors.h │ │ │ │ ├── PMPrintAETypes.h │ │ │ │ ├── PMPrintSettingsKeys.h │ │ │ │ ├── PMPrintingDialogExtensions.h │ │ │ │ └── PrintCore.h │ │ │ ├── PrintCore.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── PDEPluginInterface.h │ │ │ │ ├── PMCore.h │ │ │ │ ├── PMDefinitions.h │ │ │ │ ├── PMErrors.h │ │ │ │ ├── PMPrintAETypes.h │ │ │ │ ├── PMPrintSettingsKeys.h │ │ │ │ ├── PMPrintingDialogExtensions.h │ │ │ │ └── PrintCore.h │ │ │ │ └── PrintCore.tbd │ │ ├── QD.framework │ │ │ ├── Headers │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ ├── ATSUnicodeTypes.h │ │ │ │ ├── ColorSyncDeprecated.h │ │ │ │ ├── Fonts.h │ │ │ │ ├── QD.h │ │ │ │ ├── QDAvailability.h │ │ │ │ └── Quickdraw.h │ │ │ ├── QD.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ ├── ATSUnicodeTypes.h │ │ │ │ ├── ColorSyncDeprecated.h │ │ │ │ ├── Fonts.h │ │ │ │ ├── QD.h │ │ │ │ ├── QDAvailability.h │ │ │ │ └── Quickdraw.h │ │ │ │ └── QD.tbd │ │ └── SpeechSynthesis.framework │ │ │ ├── Headers │ │ │ └── SpeechSynthesis.h │ │ │ ├── SpeechSynthesis.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ └── SpeechSynthesis.h │ │ │ └── SpeechSynthesis.tbd │ ├── Headers │ │ └── ApplicationServices.h │ └── Versions │ │ └── Current │ │ ├── ApplicationServices.tbd │ │ ├── Frameworks │ │ ├── ATS.framework │ │ │ ├── ATS.tbd │ │ │ ├── Headers │ │ │ │ ├── ATS.h │ │ │ │ ├── ATSDefines.h │ │ │ │ ├── ATSFont.h │ │ │ │ ├── ATSLayoutTypes.h │ │ │ │ ├── ATSTypes.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ATS.tbd │ │ │ │ ├── Headers │ │ │ │ ├── ATS.h │ │ │ │ ├── ATSDefines.h │ │ │ │ ├── ATSFont.h │ │ │ │ ├── ATSLayoutTypes.h │ │ │ │ ├── ATSTypes.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ │ └── Resources │ │ │ │ ├── ATSHI.tbd │ │ │ │ ├── libATSServer.tbd │ │ │ │ ├── libFontRegistry.tbd │ │ │ │ ├── libFontRegistryUI.tbd │ │ │ │ ├── libFontValidation.tbd │ │ │ │ └── libFontWorkerAccess.tbd │ │ ├── ATSUI.framework │ │ │ ├── ATSUI.tbd │ │ │ ├── Headers │ │ │ │ ├── ATSAvailability.h │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ └── ATSUnicodeTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ATSUI.tbd │ │ │ │ └── Headers │ │ │ │ ├── ATSAvailability.h │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ └── ATSUnicodeTypes.h │ │ ├── ColorSync.framework │ │ │ ├── ColorSync.tbd │ │ │ ├── Headers │ │ │ │ ├── ColorSync.h │ │ │ │ ├── ColorSyncBase.h │ │ │ │ ├── ColorSyncCMM.h │ │ │ │ ├── ColorSyncDevice.h │ │ │ │ ├── ColorSyncProfile.h │ │ │ │ └── ColorSyncTransform.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ColorSync.tbd │ │ │ │ └── Headers │ │ │ │ ├── ColorSync.h │ │ │ │ ├── ColorSyncBase.h │ │ │ │ ├── ColorSyncCMM.h │ │ │ │ ├── ColorSyncDevice.h │ │ │ │ ├── ColorSyncProfile.h │ │ │ │ └── ColorSyncTransform.h │ │ ├── ColorSyncLegacy.framework │ │ │ ├── ColorSyncLegacy.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── ColorSyncLegacy.tbd │ │ │ │ └── Resources │ │ │ │ └── ColorSyncDeprecated.tbd │ │ ├── CoreGraphics.framework │ │ │ ├── CoreGraphics.tbd │ │ │ ├── Headers │ │ │ │ ├── CGAffineTransform.h │ │ │ │ ├── CGBase.h │ │ │ │ ├── CGBitmapContext.h │ │ │ │ ├── CGColor.h │ │ │ │ ├── CGColorConversionInfo.h │ │ │ │ ├── CGColorSpace.h │ │ │ │ ├── CGContext.h │ │ │ │ ├── CGConvertColorDataWithFormat.h │ │ │ │ ├── CGDataConsumer.h │ │ │ │ ├── CGDataProvider.h │ │ │ │ ├── CGDirectDisplay.h │ │ │ │ ├── CGDirectDisplayMetal.h │ │ │ │ ├── CGDirectPalette.h │ │ │ │ ├── CGDisplayConfiguration.h │ │ │ │ ├── CGDisplayFade.h │ │ │ │ ├── CGDisplayStream.h │ │ │ │ ├── CGError.h │ │ │ │ ├── CGEvent.h │ │ │ │ ├── CGEventSource.h │ │ │ │ ├── CGEventTypes.h │ │ │ │ ├── CGFont.h │ │ │ │ ├── CGFunction.h │ │ │ │ ├── CGGeometry.h │ │ │ │ ├── CGGradient.h │ │ │ │ ├── CGImage.h │ │ │ │ ├── CGLayer.h │ │ │ │ ├── CGPDFArray.h │ │ │ │ ├── CGPDFContentStream.h │ │ │ │ ├── CGPDFContext.h │ │ │ │ ├── CGPDFDictionary.h │ │ │ │ ├── CGPDFDocument.h │ │ │ │ ├── CGPDFObject.h │ │ │ │ ├── CGPDFOperatorTable.h │ │ │ │ ├── CGPDFPage.h │ │ │ │ ├── CGPDFScanner.h │ │ │ │ ├── CGPDFStream.h │ │ │ │ ├── CGPDFString.h │ │ │ │ ├── CGPSConverter.h │ │ │ │ ├── CGPath.h │ │ │ │ ├── CGPattern.h │ │ │ │ ├── CGRemoteOperation.h │ │ │ │ ├── CGSession.h │ │ │ │ ├── CGShading.h │ │ │ │ ├── CGWindow.h │ │ │ │ ├── CGWindowLevel.h │ │ │ │ └── CoreGraphics.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CoreGraphics.tbd │ │ │ │ └── Headers │ │ │ │ ├── CGAffineTransform.h │ │ │ │ ├── CGBase.h │ │ │ │ ├── CGBitmapContext.h │ │ │ │ ├── CGColor.h │ │ │ │ ├── CGColorConversionInfo.h │ │ │ │ ├── CGColorSpace.h │ │ │ │ ├── CGContext.h │ │ │ │ ├── CGConvertColorDataWithFormat.h │ │ │ │ ├── CGDataConsumer.h │ │ │ │ ├── CGDataProvider.h │ │ │ │ ├── CGDirectDisplay.h │ │ │ │ ├── CGDirectDisplayMetal.h │ │ │ │ ├── CGDirectPalette.h │ │ │ │ ├── CGDisplayConfiguration.h │ │ │ │ ├── CGDisplayFade.h │ │ │ │ ├── CGDisplayStream.h │ │ │ │ ├── CGError.h │ │ │ │ ├── CGEvent.h │ │ │ │ ├── CGEventSource.h │ │ │ │ ├── CGEventTypes.h │ │ │ │ ├── CGFont.h │ │ │ │ ├── CGFunction.h │ │ │ │ ├── CGGeometry.h │ │ │ │ ├── CGGradient.h │ │ │ │ ├── CGImage.h │ │ │ │ ├── CGLayer.h │ │ │ │ ├── CGPDFArray.h │ │ │ │ ├── CGPDFContentStream.h │ │ │ │ ├── CGPDFContext.h │ │ │ │ ├── CGPDFDictionary.h │ │ │ │ ├── CGPDFDocument.h │ │ │ │ ├── CGPDFObject.h │ │ │ │ ├── CGPDFOperatorTable.h │ │ │ │ ├── CGPDFPage.h │ │ │ │ ├── CGPDFScanner.h │ │ │ │ ├── CGPDFStream.h │ │ │ │ ├── CGPDFString.h │ │ │ │ ├── CGPSConverter.h │ │ │ │ ├── CGPath.h │ │ │ │ ├── CGPattern.h │ │ │ │ ├── CGRemoteOperation.h │ │ │ │ ├── CGSession.h │ │ │ │ ├── CGShading.h │ │ │ │ ├── CGWindow.h │ │ │ │ ├── CGWindowLevel.h │ │ │ │ └── CoreGraphics.h │ │ ├── CoreText.framework │ │ │ ├── CoreText.tbd │ │ │ ├── Headers │ │ │ │ ├── CTDefines.h │ │ │ │ ├── CTFont.h │ │ │ │ ├── CTFontCollection.h │ │ │ │ ├── CTFontDescriptor.h │ │ │ │ ├── CTFontManager.h │ │ │ │ ├── CTFontManagerErrors.h │ │ │ │ ├── CTFontTraits.h │ │ │ │ ├── CTFrame.h │ │ │ │ ├── CTFramesetter.h │ │ │ │ ├── CTGlyphInfo.h │ │ │ │ ├── CTLine.h │ │ │ │ ├── CTParagraphStyle.h │ │ │ │ ├── CTRubyAnnotation.h │ │ │ │ ├── CTRun.h │ │ │ │ ├── CTRunDelegate.h │ │ │ │ ├── CTStringAttributes.h │ │ │ │ ├── CTTextTab.h │ │ │ │ ├── CTTypesetter.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CoreText.tbd │ │ │ │ └── Headers │ │ │ │ ├── CTDefines.h │ │ │ │ ├── CTFont.h │ │ │ │ ├── CTFontCollection.h │ │ │ │ ├── CTFontDescriptor.h │ │ │ │ ├── CTFontManager.h │ │ │ │ ├── CTFontManagerErrors.h │ │ │ │ ├── CTFontTraits.h │ │ │ │ ├── CTFrame.h │ │ │ │ ├── CTFramesetter.h │ │ │ │ ├── CTGlyphInfo.h │ │ │ │ ├── CTLine.h │ │ │ │ ├── CTParagraphStyle.h │ │ │ │ ├── CTRubyAnnotation.h │ │ │ │ ├── CTRun.h │ │ │ │ ├── CTRunDelegate.h │ │ │ │ ├── CTStringAttributes.h │ │ │ │ ├── CTTextTab.h │ │ │ │ ├── CTTypesetter.h │ │ │ │ ├── CoreText.h │ │ │ │ ├── SFNTLayoutTypes.h │ │ │ │ └── SFNTTypes.h │ │ ├── HIServices.framework │ │ │ ├── HIServices.tbd │ │ │ ├── Headers │ │ │ │ ├── AXActionConstants.h │ │ │ │ ├── AXAttributeConstants.h │ │ │ │ ├── AXConstants.h │ │ │ │ ├── AXError.h │ │ │ │ ├── AXNotificationConstants.h │ │ │ │ ├── AXRoleConstants.h │ │ │ │ ├── AXTextAttributedString.h │ │ │ │ ├── AXUIElement.h │ │ │ │ ├── AXValue.h │ │ │ │ ├── AXValueConstants.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── HIServices.h │ │ │ │ ├── HIShape.h │ │ │ │ ├── Icons.h │ │ │ │ ├── InternetConfig.h │ │ │ │ ├── Pasteboard.h │ │ │ │ ├── Processes.h │ │ │ │ ├── TranslationServices.h │ │ │ │ └── UniversalAccess.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── HIServices.tbd │ │ │ │ └── Headers │ │ │ │ ├── AXActionConstants.h │ │ │ │ ├── AXAttributeConstants.h │ │ │ │ ├── AXConstants.h │ │ │ │ ├── AXError.h │ │ │ │ ├── AXNotificationConstants.h │ │ │ │ ├── AXRoleConstants.h │ │ │ │ ├── AXTextAttributedString.h │ │ │ │ ├── AXUIElement.h │ │ │ │ ├── AXValue.h │ │ │ │ ├── AXValueConstants.h │ │ │ │ ├── Accessibility.h │ │ │ │ ├── HIServices.h │ │ │ │ ├── HIShape.h │ │ │ │ ├── Icons.h │ │ │ │ ├── InternetConfig.h │ │ │ │ ├── Pasteboard.h │ │ │ │ ├── Processes.h │ │ │ │ ├── TranslationServices.h │ │ │ │ └── UniversalAccess.h │ │ ├── ImageIO.framework │ │ │ ├── Headers │ │ │ │ ├── CGImageAnimation.h │ │ │ │ ├── CGImageDestination.h │ │ │ │ ├── CGImageMetadata.h │ │ │ │ ├── CGImageProperties.h │ │ │ │ ├── CGImageSource.h │ │ │ │ ├── ImageIO.h │ │ │ │ └── ImageIOBase.h │ │ │ ├── ImageIO.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── CGImageAnimation.h │ │ │ │ ├── CGImageDestination.h │ │ │ │ ├── CGImageMetadata.h │ │ │ │ ├── CGImageProperties.h │ │ │ │ ├── CGImageSource.h │ │ │ │ ├── ImageIO.h │ │ │ │ └── ImageIOBase.h │ │ │ │ ├── ImageIO.tbd │ │ │ │ └── Resources │ │ │ │ ├── libGIF.tbd │ │ │ │ ├── libJP2.tbd │ │ │ │ ├── libJPEG.tbd │ │ │ │ ├── libPng.tbd │ │ │ │ ├── libRadiance.tbd │ │ │ │ └── libTIFF.tbd │ │ ├── PrintCore.framework │ │ │ ├── Headers │ │ │ │ ├── PDEPluginInterface.h │ │ │ │ ├── PMCore.h │ │ │ │ ├── PMDefinitions.h │ │ │ │ ├── PMErrors.h │ │ │ │ ├── PMPrintAETypes.h │ │ │ │ ├── PMPrintSettingsKeys.h │ │ │ │ ├── PMPrintingDialogExtensions.h │ │ │ │ └── PrintCore.h │ │ │ ├── PrintCore.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── PDEPluginInterface.h │ │ │ │ ├── PMCore.h │ │ │ │ ├── PMDefinitions.h │ │ │ │ ├── PMErrors.h │ │ │ │ ├── PMPrintAETypes.h │ │ │ │ ├── PMPrintSettingsKeys.h │ │ │ │ ├── PMPrintingDialogExtensions.h │ │ │ │ └── PrintCore.h │ │ │ │ └── PrintCore.tbd │ │ ├── QD.framework │ │ │ ├── Headers │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ ├── ATSUnicodeTypes.h │ │ │ │ ├── ColorSyncDeprecated.h │ │ │ │ ├── Fonts.h │ │ │ │ ├── QD.h │ │ │ │ ├── QDAvailability.h │ │ │ │ └── Quickdraw.h │ │ │ ├── QD.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ATSUnicode.h │ │ │ │ ├── ATSUnicodeDirectAccess.h │ │ │ │ ├── ATSUnicodeDrawing.h │ │ │ │ ├── ATSUnicodeFlattening.h │ │ │ │ ├── ATSUnicodeFonts.h │ │ │ │ ├── ATSUnicodeGlyphs.h │ │ │ │ ├── ATSUnicodeObjects.h │ │ │ │ ├── ATSUnicodeTypes.h │ │ │ │ ├── ColorSyncDeprecated.h │ │ │ │ ├── Fonts.h │ │ │ │ ├── QD.h │ │ │ │ ├── QDAvailability.h │ │ │ │ └── Quickdraw.h │ │ │ │ └── QD.tbd │ │ └── SpeechSynthesis.framework │ │ │ ├── Headers │ │ │ └── SpeechSynthesis.h │ │ │ ├── SpeechSynthesis.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ └── SpeechSynthesis.h │ │ │ └── SpeechSynthesis.tbd │ │ └── Headers │ │ └── ApplicationServices.h ├── AudioToolbox.framework │ ├── AudioToolbox.tbd │ ├── Headers │ │ ├── AUAudioUnit.h │ │ ├── AUAudioUnitImplementation.h │ │ ├── AUCocoaUIView.h │ │ ├── AUComponent.h │ │ ├── AUGraph.h │ │ ├── AUMIDIController.h │ │ ├── AUParameters.h │ │ ├── AudioCodec.h │ │ ├── AudioComponent.h │ │ ├── AudioConverter.h │ │ ├── AudioFile.h │ │ ├── AudioFileComponent.h │ │ ├── AudioFileStream.h │ │ ├── AudioFormat.h │ │ ├── AudioHardwareService.h │ │ ├── AudioOutputUnit.h │ │ ├── AudioQueue.h │ │ ├── AudioServices.h │ │ ├── AudioSession.h │ │ ├── AudioToolbox.h │ │ ├── AudioUnit.h │ │ ├── AudioUnitCarbonView.h │ │ ├── AudioUnitParameters.h │ │ ├── AudioUnitProperties.h │ │ ├── AudioUnitUtilities.h │ │ ├── AudioWorkInterval.h │ │ ├── CAFFile.h │ │ ├── CAShow.h │ │ ├── CoreAudioClock.h │ │ ├── DefaultAudioOutput.h │ │ ├── ExtendedAudioFile.h │ │ ├── MusicDevice.h │ │ └── MusicPlayer.h │ ├── Versions │ │ └── Current │ │ │ ├── AudioToolbox.tbd │ │ │ └── Headers │ │ │ ├── AUAudioUnit.h │ │ │ ├── AUAudioUnitImplementation.h │ │ │ ├── AUCocoaUIView.h │ │ │ ├── AUComponent.h │ │ │ ├── AUGraph.h │ │ │ ├── AUMIDIController.h │ │ │ ├── AUParameters.h │ │ │ ├── AudioCodec.h │ │ │ ├── AudioComponent.h │ │ │ ├── AudioConverter.h │ │ │ ├── AudioFile.h │ │ │ ├── AudioFileComponent.h │ │ │ ├── AudioFileStream.h │ │ │ ├── AudioFormat.h │ │ │ ├── AudioHardwareService.h │ │ │ ├── AudioOutputUnit.h │ │ │ ├── AudioQueue.h │ │ │ ├── AudioServices.h │ │ │ ├── AudioSession.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── AudioUnitCarbonView.h │ │ │ ├── AudioUnitParameters.h │ │ │ ├── AudioUnitProperties.h │ │ │ ├── AudioUnitUtilities.h │ │ │ ├── AudioWorkInterval.h │ │ │ ├── CAFFile.h │ │ │ ├── CAShow.h │ │ │ ├── CoreAudioClock.h │ │ │ ├── DefaultAudioOutput.h │ │ │ ├── ExtendedAudioFile.h │ │ │ ├── MusicDevice.h │ │ │ └── MusicPlayer.h │ └── libValidationCapsule.tbd ├── AudioUnit.framework │ ├── AudioUnit.tbd │ ├── Headers │ │ ├── AUAudioUnit.h │ │ ├── AUAudioUnitImplementation.h │ │ ├── AUCocoaUIView.h │ │ ├── AUComponent.h │ │ ├── AUParameters.h │ │ ├── AudioCodec.h │ │ ├── AudioComponent.h │ │ ├── AudioOutputUnit.h │ │ ├── AudioUnit.h │ │ ├── AudioUnitCarbonView.h │ │ ├── AudioUnitParameters.h │ │ ├── AudioUnitProperties.h │ │ └── MusicDevice.h │ └── Versions │ │ └── Current │ │ ├── AudioUnit.tbd │ │ └── Headers │ │ ├── AUAudioUnit.h │ │ ├── AUAudioUnitImplementation.h │ │ ├── AUCocoaUIView.h │ │ ├── AUComponent.h │ │ ├── AUParameters.h │ │ ├── AudioCodec.h │ │ ├── AudioComponent.h │ │ ├── AudioOutputUnit.h │ │ ├── AudioUnit.h │ │ ├── AudioUnitCarbonView.h │ │ ├── AudioUnitParameters.h │ │ ├── AudioUnitProperties.h │ │ └── MusicDevice.h ├── CFNetwork.framework │ ├── CFNetwork.tbd │ ├── Headers │ │ ├── CFFTPStream.h │ │ ├── CFHTTPAuthentication.h │ │ ├── CFHTTPMessage.h │ │ ├── CFHTTPStream.h │ │ ├── CFHost.h │ │ ├── CFNetDiagnostics.h │ │ ├── CFNetServices.h │ │ ├── CFNetwork.h │ │ ├── CFNetworkDefs.h │ │ ├── CFNetworkErrors.h │ │ ├── CFProxySupport.h │ │ └── CFSocketStream.h │ └── Versions │ │ └── Current │ │ ├── CFNetwork.tbd │ │ └── Headers │ │ ├── CFFTPStream.h │ │ ├── CFHTTPAuthentication.h │ │ ├── CFHTTPMessage.h │ │ ├── CFHTTPStream.h │ │ ├── CFHost.h │ │ ├── CFNetDiagnostics.h │ │ ├── CFNetServices.h │ │ ├── CFNetwork.h │ │ ├── CFNetworkDefs.h │ │ ├── CFNetworkErrors.h │ │ ├── CFProxySupport.h │ │ └── CFSocketStream.h ├── Carbon.framework │ ├── Carbon.tbd │ ├── Frameworks │ │ ├── CommonPanels.framework │ │ │ ├── CommonPanels.tbd │ │ │ ├── Headers │ │ │ │ ├── CMCalibrator.h │ │ │ │ ├── ColorPicker.h │ │ │ │ ├── CommonPanels.h │ │ │ │ └── FontPanel.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CommonPanels.tbd │ │ │ │ └── Headers │ │ │ │ ├── CMCalibrator.h │ │ │ │ ├── ColorPicker.h │ │ │ │ ├── CommonPanels.h │ │ │ │ └── FontPanel.h │ │ ├── HIToolbox.framework │ │ │ ├── HIToolbox.tbd │ │ │ ├── Headers │ │ │ │ ├── AEInteraction.h │ │ │ │ ├── Appearance.h │ │ │ │ ├── CarbonEvents.h │ │ │ │ ├── CarbonEventsCore.h │ │ │ │ ├── ControlDefinitions.h │ │ │ │ ├── Controls.h │ │ │ │ ├── Dialogs.h │ │ │ │ ├── Drag.h │ │ │ │ ├── Events.h │ │ │ │ ├── HIAccessibility.h │ │ │ │ ├── HIArchive.h │ │ │ │ ├── HIButtonViews.h │ │ │ │ ├── HIClockView.h │ │ │ │ ├── HICocoaView.h │ │ │ │ ├── HIComboBox.h │ │ │ │ ├── HIContainerViews.h │ │ │ │ ├── HIDataBrowser.h │ │ │ │ ├── HIDisclosureViews.h │ │ │ │ ├── HIGeometry.h │ │ │ │ ├── HIImageViews.h │ │ │ │ ├── HILittleArrows.h │ │ │ │ ├── HIMenuView.h │ │ │ │ ├── HIObject.h │ │ │ │ ├── HIPopupButton.h │ │ │ │ ├── HIProgressViews.h │ │ │ │ ├── HIRelevanceBar.h │ │ │ │ ├── HIScrollView.h │ │ │ │ ├── HISearchField.h │ │ │ │ ├── HISegmentedView.h │ │ │ │ ├── HISeparator.h │ │ │ │ ├── HISlider.h │ │ │ │ ├── HITabbedView.h │ │ │ │ ├── HITextLengthFilter.h │ │ │ │ ├── HITextUtils.h │ │ │ │ ├── HITextViews.h │ │ │ │ ├── HITheme.h │ │ │ │ ├── HIToolbar.h │ │ │ │ ├── HIToolbox.h │ │ │ │ ├── HIToolboxDebugging.h │ │ │ │ ├── HIView.h │ │ │ │ ├── HIWindowViews.h │ │ │ │ ├── IBCarbonRuntime.h │ │ │ │ ├── IMKInputSession.h │ │ │ │ ├── Keyboards.h │ │ │ │ ├── Lists.h │ │ │ │ ├── MacApplication.h │ │ │ │ ├── MacHelp.h │ │ │ │ ├── MacTextEditor.h │ │ │ │ ├── MacWindows.h │ │ │ │ ├── Menus.h │ │ │ │ ├── Notification.h │ │ │ │ ├── Scrap.h │ │ │ │ ├── TSMTE.h │ │ │ │ ├── TextEdit.h │ │ │ │ ├── TextInputSources.h │ │ │ │ ├── TextServices.h │ │ │ │ ├── Translation.h │ │ │ │ ├── TranslationExtensions.h │ │ │ │ └── TypeSelect.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── HIToolbox.tbd │ │ │ │ └── Headers │ │ │ │ ├── AEInteraction.h │ │ │ │ ├── Appearance.h │ │ │ │ ├── CarbonEvents.h │ │ │ │ ├── CarbonEventsCore.h │ │ │ │ ├── ControlDefinitions.h │ │ │ │ ├── Controls.h │ │ │ │ ├── Dialogs.h │ │ │ │ ├── Drag.h │ │ │ │ ├── Events.h │ │ │ │ ├── HIAccessibility.h │ │ │ │ ├── HIArchive.h │ │ │ │ ├── HIButtonViews.h │ │ │ │ ├── HIClockView.h │ │ │ │ ├── HICocoaView.h │ │ │ │ ├── HIComboBox.h │ │ │ │ ├── HIContainerViews.h │ │ │ │ ├── HIDataBrowser.h │ │ │ │ ├── HIDisclosureViews.h │ │ │ │ ├── HIGeometry.h │ │ │ │ ├── HIImageViews.h │ │ │ │ ├── HILittleArrows.h │ │ │ │ ├── HIMenuView.h │ │ │ │ ├── HIObject.h │ │ │ │ ├── HIPopupButton.h │ │ │ │ ├── HIProgressViews.h │ │ │ │ ├── HIRelevanceBar.h │ │ │ │ ├── HIScrollView.h │ │ │ │ ├── HISearchField.h │ │ │ │ ├── HISegmentedView.h │ │ │ │ ├── HISeparator.h │ │ │ │ ├── HISlider.h │ │ │ │ ├── HITabbedView.h │ │ │ │ ├── HITextLengthFilter.h │ │ │ │ ├── HITextUtils.h │ │ │ │ ├── HITextViews.h │ │ │ │ ├── HITheme.h │ │ │ │ ├── HIToolbar.h │ │ │ │ ├── HIToolbox.h │ │ │ │ ├── HIToolboxDebugging.h │ │ │ │ ├── HIView.h │ │ │ │ ├── HIWindowViews.h │ │ │ │ ├── IBCarbonRuntime.h │ │ │ │ ├── IMKInputSession.h │ │ │ │ ├── Keyboards.h │ │ │ │ ├── Lists.h │ │ │ │ ├── MacApplication.h │ │ │ │ ├── MacHelp.h │ │ │ │ ├── MacTextEditor.h │ │ │ │ ├── MacWindows.h │ │ │ │ ├── Menus.h │ │ │ │ ├── Notification.h │ │ │ │ ├── Scrap.h │ │ │ │ ├── TSMTE.h │ │ │ │ ├── TextEdit.h │ │ │ │ ├── TextInputSources.h │ │ │ │ ├── TextServices.h │ │ │ │ ├── Translation.h │ │ │ │ ├── TranslationExtensions.h │ │ │ │ └── TypeSelect.h │ │ ├── Help.framework │ │ │ ├── Headers │ │ │ │ ├── AppleHelp.h │ │ │ │ └── Help.h │ │ │ ├── Help.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── AppleHelp.h │ │ │ │ └── Help.h │ │ │ │ └── Help.tbd │ │ ├── ImageCapture.framework │ │ │ ├── Headers │ │ │ │ └── ImageCapture.h │ │ │ ├── ImageCapture.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── ImageCapture.h │ │ │ │ └── ImageCapture.tbd │ │ ├── Ink.framework │ │ │ ├── Ink.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ └── Ink.tbd │ │ ├── OpenScripting.framework │ │ │ ├── Headers │ │ │ │ ├── ASDebugging.h │ │ │ │ ├── ASRegistry.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── DigitalHubRegistry.h │ │ │ │ ├── FinderRegistry.h │ │ │ │ ├── OSA.h │ │ │ │ ├── OSAComp.h │ │ │ │ ├── OSAGeneric.h │ │ │ │ └── OpenScripting.h │ │ │ ├── OpenScripting.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ASDebugging.h │ │ │ │ ├── ASRegistry.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── DigitalHubRegistry.h │ │ │ │ ├── FinderRegistry.h │ │ │ │ ├── OSA.h │ │ │ │ ├── OSAComp.h │ │ │ │ ├── OSAGeneric.h │ │ │ │ └── OpenScripting.h │ │ │ │ └── OpenScripting.tbd │ │ ├── SecurityHI.framework │ │ │ ├── Headers │ │ │ │ ├── KeychainHI.h │ │ │ │ ├── SecCertificateSupport.h │ │ │ │ ├── SecurityHI.h │ │ │ │ └── URLAccess.h │ │ │ ├── SecurityHI.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── KeychainHI.h │ │ │ │ ├── SecCertificateSupport.h │ │ │ │ ├── SecurityHI.h │ │ │ │ └── URLAccess.h │ │ │ │ └── SecurityHI.tbd │ │ └── SpeechRecognition.framework │ │ │ ├── Headers │ │ │ └── SpeechRecognition.h │ │ │ ├── SpeechRecognition.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ └── SpeechRecognition.h │ │ │ └── SpeechRecognition.tbd │ ├── Headers │ │ └── Carbon.h │ └── Versions │ │ └── Current │ │ ├── Carbon.tbd │ │ ├── Frameworks │ │ ├── CommonPanels.framework │ │ │ ├── CommonPanels.tbd │ │ │ ├── Headers │ │ │ │ ├── CMCalibrator.h │ │ │ │ ├── ColorPicker.h │ │ │ │ ├── CommonPanels.h │ │ │ │ └── FontPanel.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CommonPanels.tbd │ │ │ │ └── Headers │ │ │ │ ├── CMCalibrator.h │ │ │ │ ├── ColorPicker.h │ │ │ │ ├── CommonPanels.h │ │ │ │ └── FontPanel.h │ │ ├── HIToolbox.framework │ │ │ ├── HIToolbox.tbd │ │ │ ├── Headers │ │ │ │ ├── AEInteraction.h │ │ │ │ ├── Appearance.h │ │ │ │ ├── CarbonEvents.h │ │ │ │ ├── CarbonEventsCore.h │ │ │ │ ├── ControlDefinitions.h │ │ │ │ ├── Controls.h │ │ │ │ ├── Dialogs.h │ │ │ │ ├── Drag.h │ │ │ │ ├── Events.h │ │ │ │ ├── HIAccessibility.h │ │ │ │ ├── HIArchive.h │ │ │ │ ├── HIButtonViews.h │ │ │ │ ├── HIClockView.h │ │ │ │ ├── HICocoaView.h │ │ │ │ ├── HIComboBox.h │ │ │ │ ├── HIContainerViews.h │ │ │ │ ├── HIDataBrowser.h │ │ │ │ ├── HIDisclosureViews.h │ │ │ │ ├── HIGeometry.h │ │ │ │ ├── HIImageViews.h │ │ │ │ ├── HILittleArrows.h │ │ │ │ ├── HIMenuView.h │ │ │ │ ├── HIObject.h │ │ │ │ ├── HIPopupButton.h │ │ │ │ ├── HIProgressViews.h │ │ │ │ ├── HIRelevanceBar.h │ │ │ │ ├── HIScrollView.h │ │ │ │ ├── HISearchField.h │ │ │ │ ├── HISegmentedView.h │ │ │ │ ├── HISeparator.h │ │ │ │ ├── HISlider.h │ │ │ │ ├── HITabbedView.h │ │ │ │ ├── HITextLengthFilter.h │ │ │ │ ├── HITextUtils.h │ │ │ │ ├── HITextViews.h │ │ │ │ ├── HITheme.h │ │ │ │ ├── HIToolbar.h │ │ │ │ ├── HIToolbox.h │ │ │ │ ├── HIToolboxDebugging.h │ │ │ │ ├── HIView.h │ │ │ │ ├── HIWindowViews.h │ │ │ │ ├── IBCarbonRuntime.h │ │ │ │ ├── IMKInputSession.h │ │ │ │ ├── Keyboards.h │ │ │ │ ├── Lists.h │ │ │ │ ├── MacApplication.h │ │ │ │ ├── MacHelp.h │ │ │ │ ├── MacTextEditor.h │ │ │ │ ├── MacWindows.h │ │ │ │ ├── Menus.h │ │ │ │ ├── Notification.h │ │ │ │ ├── Scrap.h │ │ │ │ ├── TSMTE.h │ │ │ │ ├── TextEdit.h │ │ │ │ ├── TextInputSources.h │ │ │ │ ├── TextServices.h │ │ │ │ ├── Translation.h │ │ │ │ ├── TranslationExtensions.h │ │ │ │ └── TypeSelect.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── HIToolbox.tbd │ │ │ │ └── Headers │ │ │ │ ├── AEInteraction.h │ │ │ │ ├── Appearance.h │ │ │ │ ├── CarbonEvents.h │ │ │ │ ├── CarbonEventsCore.h │ │ │ │ ├── ControlDefinitions.h │ │ │ │ ├── Controls.h │ │ │ │ ├── Dialogs.h │ │ │ │ ├── Drag.h │ │ │ │ ├── Events.h │ │ │ │ ├── HIAccessibility.h │ │ │ │ ├── HIArchive.h │ │ │ │ ├── HIButtonViews.h │ │ │ │ ├── HIClockView.h │ │ │ │ ├── HICocoaView.h │ │ │ │ ├── HIComboBox.h │ │ │ │ ├── HIContainerViews.h │ │ │ │ ├── HIDataBrowser.h │ │ │ │ ├── HIDisclosureViews.h │ │ │ │ ├── HIGeometry.h │ │ │ │ ├── HIImageViews.h │ │ │ │ ├── HILittleArrows.h │ │ │ │ ├── HIMenuView.h │ │ │ │ ├── HIObject.h │ │ │ │ ├── HIPopupButton.h │ │ │ │ ├── HIProgressViews.h │ │ │ │ ├── HIRelevanceBar.h │ │ │ │ ├── HIScrollView.h │ │ │ │ ├── HISearchField.h │ │ │ │ ├── HISegmentedView.h │ │ │ │ ├── HISeparator.h │ │ │ │ ├── HISlider.h │ │ │ │ ├── HITabbedView.h │ │ │ │ ├── HITextLengthFilter.h │ │ │ │ ├── HITextUtils.h │ │ │ │ ├── HITextViews.h │ │ │ │ ├── HITheme.h │ │ │ │ ├── HIToolbar.h │ │ │ │ ├── HIToolbox.h │ │ │ │ ├── HIToolboxDebugging.h │ │ │ │ ├── HIView.h │ │ │ │ ├── HIWindowViews.h │ │ │ │ ├── IBCarbonRuntime.h │ │ │ │ ├── IMKInputSession.h │ │ │ │ ├── Keyboards.h │ │ │ │ ├── Lists.h │ │ │ │ ├── MacApplication.h │ │ │ │ ├── MacHelp.h │ │ │ │ ├── MacTextEditor.h │ │ │ │ ├── MacWindows.h │ │ │ │ ├── Menus.h │ │ │ │ ├── Notification.h │ │ │ │ ├── Scrap.h │ │ │ │ ├── TSMTE.h │ │ │ │ ├── TextEdit.h │ │ │ │ ├── TextInputSources.h │ │ │ │ ├── TextServices.h │ │ │ │ ├── Translation.h │ │ │ │ ├── TranslationExtensions.h │ │ │ │ └── TypeSelect.h │ │ ├── Help.framework │ │ │ ├── Headers │ │ │ │ ├── AppleHelp.h │ │ │ │ └── Help.h │ │ │ ├── Help.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── AppleHelp.h │ │ │ │ └── Help.h │ │ │ │ └── Help.tbd │ │ ├── ImageCapture.framework │ │ │ ├── Headers │ │ │ │ └── ImageCapture.h │ │ │ ├── ImageCapture.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── ImageCapture.h │ │ │ │ └── ImageCapture.tbd │ │ ├── Ink.framework │ │ │ ├── Ink.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ └── Ink.tbd │ │ ├── OpenScripting.framework │ │ │ ├── Headers │ │ │ │ ├── ASDebugging.h │ │ │ │ ├── ASRegistry.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── DigitalHubRegistry.h │ │ │ │ ├── FinderRegistry.h │ │ │ │ ├── OSA.h │ │ │ │ ├── OSAComp.h │ │ │ │ ├── OSAGeneric.h │ │ │ │ └── OpenScripting.h │ │ │ ├── OpenScripting.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ASDebugging.h │ │ │ │ ├── ASRegistry.h │ │ │ │ ├── AppleScript.h │ │ │ │ ├── DigitalHubRegistry.h │ │ │ │ ├── FinderRegistry.h │ │ │ │ ├── OSA.h │ │ │ │ ├── OSAComp.h │ │ │ │ ├── OSAGeneric.h │ │ │ │ └── OpenScripting.h │ │ │ │ └── OpenScripting.tbd │ │ ├── SecurityHI.framework │ │ │ ├── Headers │ │ │ │ ├── KeychainHI.h │ │ │ │ ├── SecCertificateSupport.h │ │ │ │ ├── SecurityHI.h │ │ │ │ └── URLAccess.h │ │ │ ├── SecurityHI.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── KeychainHI.h │ │ │ │ ├── SecCertificateSupport.h │ │ │ │ ├── SecurityHI.h │ │ │ │ └── URLAccess.h │ │ │ │ └── SecurityHI.tbd │ │ └── SpeechRecognition.framework │ │ │ ├── Headers │ │ │ └── SpeechRecognition.h │ │ │ ├── SpeechRecognition.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ └── SpeechRecognition.h │ │ │ └── SpeechRecognition.tbd │ │ └── Headers │ │ └── Carbon.h ├── CloudKit.framework │ ├── Headers │ │ ├── CKAcceptSharesOperation.h │ │ ├── CKAllowedSharingOptions.h │ │ ├── CKAsset.h │ │ ├── CKContainer.h │ │ ├── CKDatabase.h │ │ ├── CKDatabaseOperation.h │ │ ├── CKDefines.h │ │ ├── CKDiscoverAllUserIdentitiesOperation.h │ │ ├── CKDiscoverUserIdentitiesOperation.h │ │ ├── CKError.h │ │ ├── CKFetchDatabaseChangesOperation.h │ │ ├── CKFetchNotificationChangesOperation.h │ │ ├── CKFetchRecordChangesOperation.h │ │ ├── CKFetchRecordZoneChangesOperation.h │ │ ├── CKFetchRecordZonesOperation.h │ │ ├── CKFetchRecordsOperation.h │ │ ├── CKFetchShareMetadataOperation.h │ │ ├── CKFetchShareParticipantsOperation.h │ │ ├── CKFetchSubscriptionsOperation.h │ │ ├── CKFetchWebAuthTokenOperation.h │ │ ├── CKLocationSortDescriptor.h │ │ ├── CKMarkNotificationsReadOperation.h │ │ ├── CKModifyBadgeOperation.h │ │ ├── CKModifyRecordZonesOperation.h │ │ ├── CKModifyRecordsOperation.h │ │ ├── CKModifySubscriptionsOperation.h │ │ ├── CKNotification.h │ │ ├── CKOperation.h │ │ ├── CKOperationGroup.h │ │ ├── CKQuery.h │ │ ├── CKQueryOperation.h │ │ ├── CKRecord.h │ │ ├── CKRecordID.h │ │ ├── CKRecordZone.h │ │ ├── CKRecordZoneID.h │ │ ├── CKReference.h │ │ ├── CKServerChangeToken.h │ │ ├── CKShare.h │ │ ├── CKShareMetadata.h │ │ ├── CKShareParticipant.h │ │ ├── CKSubscription.h │ │ ├── CKSyncEngine.h │ │ ├── CKSyncEngineConfiguration.h │ │ ├── CKSyncEngineEvent.h │ │ ├── CKSyncEngineRecordZoneChangeBatch.h │ │ ├── CKSyncEngineState.h │ │ ├── CKSystemSharingUIObserver.h │ │ ├── CKUserIdentity.h │ │ ├── CKUserIdentityLookupInfo.h │ │ ├── CloudKit.h │ │ └── NSItemProvider+CKSharingSupport.h │ └── Versions │ │ └── Current │ │ └── Headers │ │ ├── CKAcceptSharesOperation.h │ │ ├── CKAllowedSharingOptions.h │ │ ├── CKAsset.h │ │ ├── CKContainer.h │ │ ├── CKDatabase.h │ │ ├── CKDatabaseOperation.h │ │ ├── CKDefines.h │ │ ├── CKDiscoverAllUserIdentitiesOperation.h │ │ ├── CKDiscoverUserIdentitiesOperation.h │ │ ├── CKError.h │ │ ├── CKFetchDatabaseChangesOperation.h │ │ ├── CKFetchNotificationChangesOperation.h │ │ ├── CKFetchRecordChangesOperation.h │ │ ├── CKFetchRecordZoneChangesOperation.h │ │ ├── CKFetchRecordZonesOperation.h │ │ ├── CKFetchRecordsOperation.h │ │ ├── CKFetchShareMetadataOperation.h │ │ ├── CKFetchShareParticipantsOperation.h │ │ ├── CKFetchSubscriptionsOperation.h │ │ ├── CKFetchWebAuthTokenOperation.h │ │ ├── CKLocationSortDescriptor.h │ │ ├── CKMarkNotificationsReadOperation.h │ │ ├── CKModifyBadgeOperation.h │ │ ├── CKModifyRecordZonesOperation.h │ │ ├── CKModifyRecordsOperation.h │ │ ├── CKModifySubscriptionsOperation.h │ │ ├── CKNotification.h │ │ ├── CKOperation.h │ │ ├── CKOperationGroup.h │ │ ├── CKQuery.h │ │ ├── CKQueryOperation.h │ │ ├── CKRecord.h │ │ ├── CKRecordID.h │ │ ├── CKRecordZone.h │ │ ├── CKRecordZoneID.h │ │ ├── CKReference.h │ │ ├── CKServerChangeToken.h │ │ ├── CKShare.h │ │ ├── CKShareMetadata.h │ │ ├── CKShareParticipant.h │ │ ├── CKSubscription.h │ │ ├── CKSyncEngine.h │ │ ├── CKSyncEngineConfiguration.h │ │ ├── CKSyncEngineEvent.h │ │ ├── CKSyncEngineRecordZoneChangeBatch.h │ │ ├── CKSyncEngineState.h │ │ ├── CKSystemSharingUIObserver.h │ │ ├── CKUserIdentity.h │ │ ├── CKUserIdentityLookupInfo.h │ │ ├── CloudKit.h │ │ └── NSItemProvider+CKSharingSupport.h ├── Cocoa.framework │ ├── Cocoa.tbd │ ├── Headers │ │ └── Cocoa.h │ └── Versions │ │ └── Current │ │ ├── Cocoa.tbd │ │ └── Headers │ │ └── Cocoa.h ├── ColorSync.framework │ ├── ColorSync.tbd │ ├── Headers │ │ ├── ColorSync.h │ │ ├── ColorSyncBase.h │ │ ├── ColorSyncCMM.h │ │ ├── ColorSyncDevice.h │ │ ├── ColorSyncProfile.h │ │ └── ColorSyncTransform.h │ └── Versions │ │ └── Current │ │ ├── ColorSync.tbd │ │ └── Headers │ │ ├── ColorSync.h │ │ ├── ColorSyncBase.h │ │ ├── ColorSyncCMM.h │ │ ├── ColorSyncDevice.h │ │ ├── ColorSyncProfile.h │ │ └── ColorSyncTransform.h ├── CoreAudio.framework │ ├── CoreAudio.tbd │ ├── Headers │ │ ├── AudioDriverPlugIn.h │ │ ├── AudioHardware.h │ │ ├── AudioHardwareBase.h │ │ ├── AudioHardwareDeprecated.h │ │ ├── AudioHardwareTapping.h │ │ ├── AudioServerPlugIn.h │ │ ├── CATapDescription.h │ │ ├── CoreAudio.h │ │ ├── CoreAudioTypes.h │ │ └── HostTime.h │ └── Versions │ │ └── Current │ │ ├── CoreAudio.tbd │ │ └── Headers │ │ ├── AudioDriverPlugIn.h │ │ ├── AudioHardware.h │ │ ├── AudioHardwareBase.h │ │ ├── AudioHardwareDeprecated.h │ │ ├── AudioHardwareTapping.h │ │ ├── AudioServerPlugIn.h │ │ ├── CATapDescription.h │ │ ├── CoreAudio.h │ │ ├── CoreAudioTypes.h │ │ └── HostTime.h ├── CoreAudioTypes.framework │ ├── Headers │ │ ├── AudioSessionTypes.h │ │ ├── CoreAudioBaseTypes.h │ │ └── CoreAudioTypes.h │ └── Versions │ │ └── Current │ │ └── Headers │ │ ├── AudioSessionTypes.h │ │ ├── CoreAudioBaseTypes.h │ │ └── CoreAudioTypes.h ├── CoreData.framework │ ├── CoreData.tbd │ ├── Headers │ │ ├── CoreData.h │ │ ├── CoreDataDefines.h │ │ ├── CoreDataErrors.h │ │ ├── CoreData_CloudKit.h │ │ ├── NSAtomicStore.h │ │ ├── NSAtomicStoreCacheNode.h │ │ ├── NSAttributeDescription.h │ │ ├── NSBatchDeleteRequest.h │ │ ├── NSBatchInsertRequest.h │ │ ├── NSBatchUpdateRequest.h │ │ ├── NSCompositeAttributeDescription.h │ │ ├── NSCoreDataCoreSpotlightDelegate.h │ │ ├── NSCustomMigrationStage.h │ │ ├── NSDerivedAttributeDescription.h │ │ ├── NSEntityDescription.h │ │ ├── NSEntityMapping.h │ │ ├── NSEntityMigrationPolicy.h │ │ ├── NSExpressionDescription.h │ │ ├── NSFetchIndexDescription.h │ │ ├── NSFetchIndexElementDescription.h │ │ ├── NSFetchRequest.h │ │ ├── NSFetchRequestExpression.h │ │ ├── NSFetchedPropertyDescription.h │ │ ├── NSFetchedResultsController.h │ │ ├── NSIncrementalStore.h │ │ ├── NSIncrementalStoreNode.h │ │ ├── NSLightweightMigrationStage.h │ │ ├── NSManagedObject.h │ │ ├── NSManagedObjectContext.h │ │ ├── NSManagedObjectID.h │ │ ├── NSManagedObjectModel.h │ │ ├── NSManagedObjectModelReference.h │ │ ├── NSMappingModel.h │ │ ├── NSMergePolicy.h │ │ ├── NSMigrationManager.h │ │ ├── NSMigrationStage.h │ │ ├── NSPersistentCloudKitContainer.h │ │ ├── NSPersistentCloudKitContainerEvent.h │ │ ├── NSPersistentCloudKitContainerEventRequest.h │ │ ├── NSPersistentCloudKitContainerOptions.h │ │ ├── NSPersistentCloudKitContainer_Sharing.h │ │ ├── NSPersistentCloudKitContainer_SwiftOverlay.h │ │ ├── NSPersistentContainer.h │ │ ├── NSPersistentHistoryChange.h │ │ ├── NSPersistentHistoryChangeRequest.h │ │ ├── NSPersistentHistoryToken.h │ │ ├── NSPersistentHistoryTransaction.h │ │ ├── NSPersistentStore.h │ │ ├── NSPersistentStoreCoordinator.h │ │ ├── NSPersistentStoreDescription.h │ │ ├── NSPersistentStoreRequest.h │ │ ├── NSPersistentStoreResult.h │ │ ├── NSPropertyDescription.h │ │ ├── NSPropertyMapping.h │ │ ├── NSQueryGenerationToken.h │ │ ├── NSRelationshipDescription.h │ │ ├── NSSaveChangesRequest.h │ │ └── NSStagedMigrationManager.h │ ├── Modules │ │ └── CoreData.swiftcrossimport │ │ │ └── CloudKit.swiftoverlay │ └── Versions │ │ └── Current │ │ ├── CoreData.tbd │ │ ├── Headers │ │ ├── CoreData.h │ │ ├── CoreDataDefines.h │ │ ├── CoreDataErrors.h │ │ ├── CoreData_CloudKit.h │ │ ├── NSAtomicStore.h │ │ ├── NSAtomicStoreCacheNode.h │ │ ├── NSAttributeDescription.h │ │ ├── NSBatchDeleteRequest.h │ │ ├── NSBatchInsertRequest.h │ │ ├── NSBatchUpdateRequest.h │ │ ├── NSCompositeAttributeDescription.h │ │ ├── NSCoreDataCoreSpotlightDelegate.h │ │ ├── NSCustomMigrationStage.h │ │ ├── NSDerivedAttributeDescription.h │ │ ├── NSEntityDescription.h │ │ ├── NSEntityMapping.h │ │ ├── NSEntityMigrationPolicy.h │ │ ├── NSExpressionDescription.h │ │ ├── NSFetchIndexDescription.h │ │ ├── NSFetchIndexElementDescription.h │ │ ├── NSFetchRequest.h │ │ ├── NSFetchRequestExpression.h │ │ ├── NSFetchedPropertyDescription.h │ │ ├── NSFetchedResultsController.h │ │ ├── NSIncrementalStore.h │ │ ├── NSIncrementalStoreNode.h │ │ ├── NSLightweightMigrationStage.h │ │ ├── NSManagedObject.h │ │ ├── NSManagedObjectContext.h │ │ ├── NSManagedObjectID.h │ │ ├── NSManagedObjectModel.h │ │ ├── NSManagedObjectModelReference.h │ │ ├── NSMappingModel.h │ │ ├── NSMergePolicy.h │ │ ├── NSMigrationManager.h │ │ ├── NSMigrationStage.h │ │ ├── NSPersistentCloudKitContainer.h │ │ ├── NSPersistentCloudKitContainerEvent.h │ │ ├── NSPersistentCloudKitContainerEventRequest.h │ │ ├── NSPersistentCloudKitContainerOptions.h │ │ ├── NSPersistentCloudKitContainer_Sharing.h │ │ ├── NSPersistentCloudKitContainer_SwiftOverlay.h │ │ ├── NSPersistentContainer.h │ │ ├── NSPersistentHistoryChange.h │ │ ├── NSPersistentHistoryChangeRequest.h │ │ ├── NSPersistentHistoryToken.h │ │ ├── NSPersistentHistoryTransaction.h │ │ ├── NSPersistentStore.h │ │ ├── NSPersistentStoreCoordinator.h │ │ ├── NSPersistentStoreDescription.h │ │ ├── NSPersistentStoreRequest.h │ │ ├── NSPersistentStoreResult.h │ │ ├── NSPropertyDescription.h │ │ ├── NSPropertyMapping.h │ │ ├── NSQueryGenerationToken.h │ │ ├── NSRelationshipDescription.h │ │ ├── NSSaveChangesRequest.h │ │ └── NSStagedMigrationManager.h │ │ └── Modules │ │ └── CoreData.swiftcrossimport │ │ └── CloudKit.swiftoverlay ├── CoreFoundation.framework │ ├── CoreFoundation.tbd │ ├── Headers │ │ ├── CFArray.h │ │ ├── CFAttributedString.h │ │ ├── CFAvailability.h │ │ ├── CFBag.h │ │ ├── CFBase.h │ │ ├── CFBinaryHeap.h │ │ ├── CFBitVector.h │ │ ├── CFBundle.h │ │ ├── CFByteOrder.h │ │ ├── CFCGTypes.h │ │ ├── CFCalendar.h │ │ ├── CFCharacterSet.h │ │ ├── CFData.h │ │ ├── CFDate.h │ │ ├── CFDateFormatter.h │ │ ├── CFDictionary.h │ │ ├── CFError.h │ │ ├── CFFileDescriptor.h │ │ ├── CFFileSecurity.h │ │ ├── CFLocale.h │ │ ├── CFMachPort.h │ │ ├── CFMessagePort.h │ │ ├── CFNotificationCenter.h │ │ ├── CFNumber.h │ │ ├── CFNumberFormatter.h │ │ ├── CFPlugIn.h │ │ ├── CFPlugInCOM.h │ │ ├── CFPreferences.h │ │ ├── CFPropertyList.h │ │ ├── CFRunLoop.h │ │ ├── CFSet.h │ │ ├── CFSocket.h │ │ ├── CFStream.h │ │ ├── CFString.h │ │ ├── CFStringEncodingExt.h │ │ ├── CFStringTokenizer.h │ │ ├── CFTimeZone.h │ │ ├── CFTree.h │ │ ├── CFURL.h │ │ ├── CFURLAccess.h │ │ ├── CFURLEnumerator.h │ │ ├── CFUUID.h │ │ ├── CFUserNotification.h │ │ ├── CFUtilities.h │ │ ├── CFXMLNode.h │ │ ├── CFXMLParser.h │ │ └── CoreFoundation.h │ └── Versions │ │ └── Current │ │ ├── CoreFoundation.tbd │ │ └── Headers │ │ ├── CFArray.h │ │ ├── CFAttributedString.h │ │ ├── CFAvailability.h │ │ ├── CFBag.h │ │ ├── CFBase.h │ │ ├── CFBinaryHeap.h │ │ ├── CFBitVector.h │ │ ├── CFBundle.h │ │ ├── CFByteOrder.h │ │ ├── CFCGTypes.h │ │ ├── CFCalendar.h │ │ ├── CFCharacterSet.h │ │ ├── CFData.h │ │ ├── CFDate.h │ │ ├── CFDateFormatter.h │ │ ├── CFDictionary.h │ │ ├── CFError.h │ │ ├── CFFileDescriptor.h │ │ ├── CFFileSecurity.h │ │ ├── CFLocale.h │ │ ├── CFMachPort.h │ │ ├── CFMessagePort.h │ │ ├── CFNotificationCenter.h │ │ ├── CFNumber.h │ │ ├── CFNumberFormatter.h │ │ ├── CFPlugIn.h │ │ ├── CFPlugInCOM.h │ │ ├── CFPreferences.h │ │ ├── CFPropertyList.h │ │ ├── CFRunLoop.h │ │ ├── CFSet.h │ │ ├── CFSocket.h │ │ ├── CFStream.h │ │ ├── CFString.h │ │ ├── CFStringEncodingExt.h │ │ ├── CFStringTokenizer.h │ │ ├── CFTimeZone.h │ │ ├── CFTree.h │ │ ├── CFURL.h │ │ ├── CFURLAccess.h │ │ ├── CFURLEnumerator.h │ │ ├── CFUUID.h │ │ ├── CFUserNotification.h │ │ ├── CFUtilities.h │ │ ├── CFXMLNode.h │ │ ├── CFXMLParser.h │ │ └── CoreFoundation.h ├── CoreGraphics.framework │ ├── CoreGraphics.tbd │ ├── Headers │ │ ├── CGAffineTransform.h │ │ ├── CGBase.h │ │ ├── CGBitmapContext.h │ │ ├── CGColor.h │ │ ├── CGColorConversionInfo.h │ │ ├── CGColorSpace.h │ │ ├── CGContext.h │ │ ├── CGConvertColorDataWithFormat.h │ │ ├── CGDataConsumer.h │ │ ├── CGDataProvider.h │ │ ├── CGDirectDisplay.h │ │ ├── CGDirectDisplayMetal.h │ │ ├── CGDirectPalette.h │ │ ├── CGDisplayConfiguration.h │ │ ├── CGDisplayFade.h │ │ ├── CGDisplayStream.h │ │ ├── CGError.h │ │ ├── CGEvent.h │ │ ├── CGEventSource.h │ │ ├── CGEventTypes.h │ │ ├── CGFont.h │ │ ├── CGFunction.h │ │ ├── CGGeometry.h │ │ ├── CGGradient.h │ │ ├── CGImage.h │ │ ├── CGLayer.h │ │ ├── CGPDFArray.h │ │ ├── CGPDFContentStream.h │ │ ├── CGPDFContext.h │ │ ├── CGPDFDictionary.h │ │ ├── CGPDFDocument.h │ │ ├── CGPDFObject.h │ │ ├── CGPDFOperatorTable.h │ │ ├── CGPDFPage.h │ │ ├── CGPDFScanner.h │ │ ├── CGPDFStream.h │ │ ├── CGPDFString.h │ │ ├── CGPSConverter.h │ │ ├── CGPath.h │ │ ├── CGPattern.h │ │ ├── CGRemoteOperation.h │ │ ├── CGSession.h │ │ ├── CGShading.h │ │ ├── CGWindow.h │ │ ├── CGWindowLevel.h │ │ └── CoreGraphics.h │ └── Versions │ │ └── Current │ │ ├── CoreGraphics.tbd │ │ └── Headers │ │ ├── CGAffineTransform.h │ │ ├── CGBase.h │ │ ├── CGBitmapContext.h │ │ ├── CGColor.h │ │ ├── CGColorConversionInfo.h │ │ ├── CGColorSpace.h │ │ ├── CGContext.h │ │ ├── CGConvertColorDataWithFormat.h │ │ ├── CGDataConsumer.h │ │ ├── CGDataProvider.h │ │ ├── CGDirectDisplay.h │ │ ├── CGDirectDisplayMetal.h │ │ ├── CGDirectPalette.h │ │ ├── CGDisplayConfiguration.h │ │ ├── CGDisplayFade.h │ │ ├── CGDisplayStream.h │ │ ├── CGError.h │ │ ├── CGEvent.h │ │ ├── CGEventSource.h │ │ ├── CGEventTypes.h │ │ ├── CGFont.h │ │ ├── CGFunction.h │ │ ├── CGGeometry.h │ │ ├── CGGradient.h │ │ ├── CGImage.h │ │ ├── CGLayer.h │ │ ├── CGPDFArray.h │ │ ├── CGPDFContentStream.h │ │ ├── CGPDFContext.h │ │ ├── CGPDFDictionary.h │ │ ├── CGPDFDocument.h │ │ ├── CGPDFObject.h │ │ ├── CGPDFOperatorTable.h │ │ ├── CGPDFPage.h │ │ ├── CGPDFScanner.h │ │ ├── CGPDFStream.h │ │ ├── CGPDFString.h │ │ ├── CGPSConverter.h │ │ ├── CGPath.h │ │ ├── CGPattern.h │ │ ├── CGRemoteOperation.h │ │ ├── CGSession.h │ │ ├── CGShading.h │ │ ├── CGWindow.h │ │ ├── CGWindowLevel.h │ │ └── CoreGraphics.h ├── CoreImage.framework │ ├── CoreImage.metallib │ ├── CoreImage.tbd │ ├── Headers │ │ ├── CIBarcodeDescriptor.h │ │ ├── CIColor.h │ │ ├── CIContext.h │ │ ├── CIDetector.h │ │ ├── CIFeature.h │ │ ├── CIFilter.h │ │ ├── CIFilterBuiltins.h │ │ ├── CIFilterConstructor.h │ │ ├── CIFilterGenerator.h │ │ ├── CIFilterShape.h │ │ ├── CIImage.h │ │ ├── CIImageAccumulator.h │ │ ├── CIImageProcessor.h │ │ ├── CIImageProvider.h │ │ ├── CIKernel.h │ │ ├── CIKernelMetalLib.h │ │ ├── CIPlugIn.h │ │ ├── CIPlugInInterface.h │ │ ├── CIRAWFilter.h │ │ ├── CIRAWFilter_Deprecated.h │ │ ├── CIRenderDestination.h │ │ ├── CISampler.h │ │ ├── CIVector.h │ │ ├── CoreImage.h │ │ └── CoreImageDefines.h │ └── Versions │ │ └── Current │ │ ├── CoreImage.metallib │ │ ├── CoreImage.tbd │ │ └── Headers │ │ ├── CIBarcodeDescriptor.h │ │ ├── CIColor.h │ │ ├── CIContext.h │ │ ├── CIDetector.h │ │ ├── CIFeature.h │ │ ├── CIFilter.h │ │ ├── CIFilterBuiltins.h │ │ ├── CIFilterConstructor.h │ │ ├── CIFilterGenerator.h │ │ ├── CIFilterShape.h │ │ ├── CIImage.h │ │ ├── CIImageAccumulator.h │ │ ├── CIImageProcessor.h │ │ ├── CIImageProvider.h │ │ ├── CIKernel.h │ │ ├── CIKernelMetalLib.h │ │ ├── CIPlugIn.h │ │ ├── CIPlugInInterface.h │ │ ├── CIRAWFilter.h │ │ ├── CIRAWFilter_Deprecated.h │ │ ├── CIRenderDestination.h │ │ ├── CISampler.h │ │ ├── CIVector.h │ │ ├── CoreImage.h │ │ └── CoreImageDefines.h ├── CoreLocation.framework │ ├── CoreLocation.tbd │ ├── Headers │ │ ├── CLAvailability.h │ │ ├── CLBackgroundActivitySession.h │ │ ├── CLBeaconIdentityCondition.h │ │ ├── CLBeaconIdentityConstraint.h │ │ ├── CLBeaconRegion.h │ │ ├── CLCircularGeographicCondition.h │ │ ├── CLCircularRegion.h │ │ ├── CLCondition.h │ │ ├── CLError.h │ │ ├── CLErrorDomain.h │ │ ├── CLGeocoder.h │ │ ├── CLHeading.h │ │ ├── CLLocation.h │ │ ├── CLLocationManager+CLVisitExtensions.h │ │ ├── CLLocationManager.h │ │ ├── CLLocationManagerDelegate.h │ │ ├── CLLocationPushServiceError.h │ │ ├── CLLocationPushServiceExtension.h │ │ ├── CLLocationUpdater.h │ │ ├── CLMonitor.h │ │ ├── CLMonitorConfiguration.h │ │ ├── CLMonitoringEvent.h │ │ ├── CLMonitoringRecord.h │ │ ├── CLPlacemark.h │ │ ├── CLRegion.h │ │ ├── CLVisit.h │ │ └── CoreLocation.h │ └── Versions │ │ └── Current │ │ ├── CoreLocation.tbd │ │ └── Headers │ │ ├── CLAvailability.h │ │ ├── CLBackgroundActivitySession.h │ │ ├── CLBeaconIdentityCondition.h │ │ ├── CLBeaconIdentityConstraint.h │ │ ├── CLBeaconRegion.h │ │ ├── CLCircularGeographicCondition.h │ │ ├── CLCircularRegion.h │ │ ├── CLCondition.h │ │ ├── CLError.h │ │ ├── CLErrorDomain.h │ │ ├── CLGeocoder.h │ │ ├── CLHeading.h │ │ ├── CLLocation.h │ │ ├── CLLocationManager+CLVisitExtensions.h │ │ ├── CLLocationManager.h │ │ ├── CLLocationManagerDelegate.h │ │ ├── CLLocationPushServiceError.h │ │ ├── CLLocationPushServiceExtension.h │ │ ├── CLLocationUpdater.h │ │ ├── CLMonitor.h │ │ ├── CLMonitorConfiguration.h │ │ ├── CLMonitoringEvent.h │ │ ├── CLMonitoringRecord.h │ │ ├── CLPlacemark.h │ │ ├── CLRegion.h │ │ ├── CLVisit.h │ │ └── CoreLocation.h ├── CoreMIDI.framework │ ├── CoreMIDI.tbd │ ├── Headers │ │ ├── CoreMIDI.h │ │ ├── MIDIBluetoothConnection.h │ │ ├── MIDICapabilityInquiry.h │ │ ├── MIDIDriver.h │ │ ├── MIDIMessages.h │ │ ├── MIDINetworkSession.h │ │ ├── MIDIServices.h │ │ ├── MIDISetup.h │ │ └── MIDIThruConnection.h │ └── Versions │ │ └── Current │ │ ├── CoreMIDI.tbd │ │ └── Headers │ │ ├── CoreMIDI.h │ │ ├── MIDIBluetoothConnection.h │ │ ├── MIDICapabilityInquiry.h │ │ ├── MIDIDriver.h │ │ ├── MIDIMessages.h │ │ ├── MIDINetworkSession.h │ │ ├── MIDIServices.h │ │ ├── MIDISetup.h │ │ └── MIDIThruConnection.h ├── CoreServices.framework │ ├── CoreServices.tbd │ ├── Frameworks │ │ ├── AE.framework │ │ │ ├── AE.tbd │ │ │ ├── Headers │ │ │ │ ├── AE.h │ │ │ │ ├── AEDataModel.h │ │ │ │ ├── AEHelpers.h │ │ │ │ ├── AEMach.h │ │ │ │ ├── AEObjects.h │ │ │ │ ├── AEPackObject.h │ │ │ │ ├── AERegistry.h │ │ │ │ ├── AEUserTermTypes.h │ │ │ │ └── AppleEvents.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── AE.tbd │ │ │ │ └── Headers │ │ │ │ ├── AE.h │ │ │ │ ├── AEDataModel.h │ │ │ │ ├── AEHelpers.h │ │ │ │ ├── AEMach.h │ │ │ │ ├── AEObjects.h │ │ │ │ ├── AEPackObject.h │ │ │ │ ├── AERegistry.h │ │ │ │ ├── AEUserTermTypes.h │ │ │ │ └── AppleEvents.h │ │ ├── CarbonCore.framework │ │ │ ├── CarbonCore.tbd │ │ │ ├── Headers │ │ │ │ ├── AIFF.h │ │ │ │ ├── AVLTree.h │ │ │ │ ├── Aliases.h │ │ │ │ ├── BackupCore.h │ │ │ │ ├── CarbonCore.h │ │ │ │ ├── CodeFragments.h │ │ │ │ ├── Collections.h │ │ │ │ ├── Components.h │ │ │ │ ├── DateTimeUtils.h │ │ │ │ ├── Debugging.h │ │ │ │ ├── DiskSpaceRecovery.h │ │ │ │ ├── DriverServices.h │ │ │ │ ├── DriverSynchronization.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Files.h │ │ │ │ ├── Finder.h │ │ │ │ ├── FixMath.h │ │ │ │ ├── Folders.h │ │ │ │ ├── Gestalt.h │ │ │ │ ├── HFSVolumes.h │ │ │ │ ├── IntlResources.h │ │ │ │ ├── LowMem.h │ │ │ │ ├── MacErrors.h │ │ │ │ ├── MacLocales.h │ │ │ │ ├── MacMemory.h │ │ │ │ ├── MachineExceptions.h │ │ │ │ ├── Math64.h │ │ │ │ ├── MixedMode.h │ │ │ │ ├── Multiprocessing.h │ │ │ │ ├── MultiprocessingInfo.h │ │ │ │ ├── NumberFormatting.h │ │ │ │ ├── OSUtils.h │ │ │ │ ├── PEFBinaryFormat.h │ │ │ │ ├── PLStringFuncs.h │ │ │ │ ├── Resources.h │ │ │ │ ├── Script.h │ │ │ │ ├── StringCompare.h │ │ │ │ ├── TextCommon.h │ │ │ │ ├── TextEncodingConverter.h │ │ │ │ ├── TextEncodingPlugin.h │ │ │ │ ├── TextUtils.h │ │ │ │ ├── Threads.h │ │ │ │ ├── Timer.h │ │ │ │ ├── ToolUtils.h │ │ │ │ ├── UTCUtils.h │ │ │ │ ├── UnicodeConverter.h │ │ │ │ ├── UnicodeUtilities.h │ │ │ │ └── fp.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CarbonCore.tbd │ │ │ │ └── Headers │ │ │ │ ├── AIFF.h │ │ │ │ ├── AVLTree.h │ │ │ │ ├── Aliases.h │ │ │ │ ├── BackupCore.h │ │ │ │ ├── CarbonCore.h │ │ │ │ ├── CodeFragments.h │ │ │ │ ├── Collections.h │ │ │ │ ├── Components.h │ │ │ │ ├── DateTimeUtils.h │ │ │ │ ├── Debugging.h │ │ │ │ ├── DiskSpaceRecovery.h │ │ │ │ ├── DriverServices.h │ │ │ │ ├── DriverSynchronization.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Files.h │ │ │ │ ├── Finder.h │ │ │ │ ├── FixMath.h │ │ │ │ ├── Folders.h │ │ │ │ ├── Gestalt.h │ │ │ │ ├── HFSVolumes.h │ │ │ │ ├── IntlResources.h │ │ │ │ ├── LowMem.h │ │ │ │ ├── MacErrors.h │ │ │ │ ├── MacLocales.h │ │ │ │ ├── MacMemory.h │ │ │ │ ├── MachineExceptions.h │ │ │ │ ├── Math64.h │ │ │ │ ├── MixedMode.h │ │ │ │ ├── Multiprocessing.h │ │ │ │ ├── MultiprocessingInfo.h │ │ │ │ ├── NumberFormatting.h │ │ │ │ ├── OSUtils.h │ │ │ │ ├── PEFBinaryFormat.h │ │ │ │ ├── PLStringFuncs.h │ │ │ │ ├── Resources.h │ │ │ │ ├── Script.h │ │ │ │ ├── StringCompare.h │ │ │ │ ├── TextCommon.h │ │ │ │ ├── TextEncodingConverter.h │ │ │ │ ├── TextEncodingPlugin.h │ │ │ │ ├── TextUtils.h │ │ │ │ ├── Threads.h │ │ │ │ ├── Timer.h │ │ │ │ ├── ToolUtils.h │ │ │ │ ├── UTCUtils.h │ │ │ │ ├── UnicodeConverter.h │ │ │ │ ├── UnicodeUtilities.h │ │ │ │ └── fp.h │ │ ├── DictionaryServices.framework │ │ │ ├── DictionaryServices.tbd │ │ │ ├── Headers │ │ │ │ └── DictionaryServices.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── DictionaryServices.tbd │ │ │ │ └── Headers │ │ │ │ └── DictionaryServices.h │ │ ├── FSEvents.framework │ │ │ ├── FSEvents.tbd │ │ │ ├── Headers │ │ │ │ └── FSEvents.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── FSEvents.tbd │ │ │ │ └── Headers │ │ │ │ └── FSEvents.h │ │ ├── LaunchServices.framework │ │ │ ├── Headers │ │ │ │ ├── IconsCore.h │ │ │ │ ├── LSConstants.h │ │ │ │ ├── LSInfo.h │ │ │ │ ├── LSInfoDeprecated.h │ │ │ │ ├── LSOpen.h │ │ │ │ ├── LSOpenDeprecated.h │ │ │ │ ├── LSQuarantine.h │ │ │ │ ├── LaunchServices.h │ │ │ │ ├── UTCoreTypes.h │ │ │ │ └── UTType.h │ │ │ ├── LaunchServices.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── IconsCore.h │ │ │ │ ├── LSConstants.h │ │ │ │ ├── LSInfo.h │ │ │ │ ├── LSInfoDeprecated.h │ │ │ │ ├── LSOpen.h │ │ │ │ ├── LSOpenDeprecated.h │ │ │ │ ├── LSQuarantine.h │ │ │ │ ├── LaunchServices.h │ │ │ │ ├── UTCoreTypes.h │ │ │ │ └── UTType.h │ │ │ │ └── LaunchServices.tbd │ │ ├── Metadata.framework │ │ │ ├── Headers │ │ │ │ ├── MDImporter.h │ │ │ │ ├── MDItem.h │ │ │ │ ├── MDLabel.h │ │ │ │ ├── MDQuery.h │ │ │ │ ├── MDSchema.h │ │ │ │ └── Metadata.h │ │ │ ├── Metadata.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── MDImporter.h │ │ │ │ ├── MDItem.h │ │ │ │ ├── MDLabel.h │ │ │ │ ├── MDQuery.h │ │ │ │ ├── MDSchema.h │ │ │ │ └── Metadata.h │ │ │ │ └── Metadata.tbd │ │ ├── OSServices.framework │ │ │ ├── Headers │ │ │ │ ├── CSIdentity.h │ │ │ │ ├── CSIdentityAuthority.h │ │ │ │ ├── CSIdentityBase.h │ │ │ │ ├── CSIdentityQuery.h │ │ │ │ ├── IconStorage.h │ │ │ │ ├── KeychainCore.h │ │ │ │ ├── OSServices.h │ │ │ │ ├── Power.h │ │ │ │ ├── SecurityCore.h │ │ │ │ ├── WSMethodInvocation.h │ │ │ │ ├── WSProtocolHandler.h │ │ │ │ └── WSTypes.h │ │ │ ├── OSServices.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── CSIdentity.h │ │ │ │ ├── CSIdentityAuthority.h │ │ │ │ ├── CSIdentityBase.h │ │ │ │ ├── CSIdentityQuery.h │ │ │ │ ├── IconStorage.h │ │ │ │ ├── KeychainCore.h │ │ │ │ ├── OSServices.h │ │ │ │ ├── Power.h │ │ │ │ ├── SecurityCore.h │ │ │ │ ├── WSMethodInvocation.h │ │ │ │ ├── WSProtocolHandler.h │ │ │ │ └── WSTypes.h │ │ │ │ └── OSServices.tbd │ │ ├── SearchKit.framework │ │ │ ├── Headers │ │ │ │ ├── SKAnalysis.h │ │ │ │ ├── SKDocument.h │ │ │ │ ├── SKIndex.h │ │ │ │ ├── SKSearch.h │ │ │ │ ├── SKSummary.h │ │ │ │ └── SearchKit.h │ │ │ ├── SearchKit.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── SKAnalysis.h │ │ │ │ ├── SKDocument.h │ │ │ │ ├── SKIndex.h │ │ │ │ ├── SKSearch.h │ │ │ │ ├── SKSummary.h │ │ │ │ └── SearchKit.h │ │ │ │ └── SearchKit.tbd │ │ └── SharedFileList.framework │ │ │ ├── Headers │ │ │ ├── LSSharedFileList.h │ │ │ └── SharedFileList.h │ │ │ ├── SharedFileList.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── LSSharedFileList.h │ │ │ └── SharedFileList.h │ │ │ └── SharedFileList.tbd │ ├── Headers │ │ ├── Components.k.h │ │ └── CoreServices.h │ └── Versions │ │ └── Current │ │ ├── CoreServices.tbd │ │ ├── Frameworks │ │ ├── AE.framework │ │ │ ├── AE.tbd │ │ │ ├── Headers │ │ │ │ ├── AE.h │ │ │ │ ├── AEDataModel.h │ │ │ │ ├── AEHelpers.h │ │ │ │ ├── AEMach.h │ │ │ │ ├── AEObjects.h │ │ │ │ ├── AEPackObject.h │ │ │ │ ├── AERegistry.h │ │ │ │ ├── AEUserTermTypes.h │ │ │ │ └── AppleEvents.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── AE.tbd │ │ │ │ └── Headers │ │ │ │ ├── AE.h │ │ │ │ ├── AEDataModel.h │ │ │ │ ├── AEHelpers.h │ │ │ │ ├── AEMach.h │ │ │ │ ├── AEObjects.h │ │ │ │ ├── AEPackObject.h │ │ │ │ ├── AERegistry.h │ │ │ │ ├── AEUserTermTypes.h │ │ │ │ └── AppleEvents.h │ │ ├── CarbonCore.framework │ │ │ ├── CarbonCore.tbd │ │ │ ├── Headers │ │ │ │ ├── AIFF.h │ │ │ │ ├── AVLTree.h │ │ │ │ ├── Aliases.h │ │ │ │ ├── BackupCore.h │ │ │ │ ├── CarbonCore.h │ │ │ │ ├── CodeFragments.h │ │ │ │ ├── Collections.h │ │ │ │ ├── Components.h │ │ │ │ ├── DateTimeUtils.h │ │ │ │ ├── Debugging.h │ │ │ │ ├── DiskSpaceRecovery.h │ │ │ │ ├── DriverServices.h │ │ │ │ ├── DriverSynchronization.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Files.h │ │ │ │ ├── Finder.h │ │ │ │ ├── FixMath.h │ │ │ │ ├── Folders.h │ │ │ │ ├── Gestalt.h │ │ │ │ ├── HFSVolumes.h │ │ │ │ ├── IntlResources.h │ │ │ │ ├── LowMem.h │ │ │ │ ├── MacErrors.h │ │ │ │ ├── MacLocales.h │ │ │ │ ├── MacMemory.h │ │ │ │ ├── MachineExceptions.h │ │ │ │ ├── Math64.h │ │ │ │ ├── MixedMode.h │ │ │ │ ├── Multiprocessing.h │ │ │ │ ├── MultiprocessingInfo.h │ │ │ │ ├── NumberFormatting.h │ │ │ │ ├── OSUtils.h │ │ │ │ ├── PEFBinaryFormat.h │ │ │ │ ├── PLStringFuncs.h │ │ │ │ ├── Resources.h │ │ │ │ ├── Script.h │ │ │ │ ├── StringCompare.h │ │ │ │ ├── TextCommon.h │ │ │ │ ├── TextEncodingConverter.h │ │ │ │ ├── TextEncodingPlugin.h │ │ │ │ ├── TextUtils.h │ │ │ │ ├── Threads.h │ │ │ │ ├── Timer.h │ │ │ │ ├── ToolUtils.h │ │ │ │ ├── UTCUtils.h │ │ │ │ ├── UnicodeConverter.h │ │ │ │ ├── UnicodeUtilities.h │ │ │ │ └── fp.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── CarbonCore.tbd │ │ │ │ └── Headers │ │ │ │ ├── AIFF.h │ │ │ │ ├── AVLTree.h │ │ │ │ ├── Aliases.h │ │ │ │ ├── BackupCore.h │ │ │ │ ├── CarbonCore.h │ │ │ │ ├── CodeFragments.h │ │ │ │ ├── Collections.h │ │ │ │ ├── Components.h │ │ │ │ ├── DateTimeUtils.h │ │ │ │ ├── Debugging.h │ │ │ │ ├── DiskSpaceRecovery.h │ │ │ │ ├── DriverServices.h │ │ │ │ ├── DriverSynchronization.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Files.h │ │ │ │ ├── Finder.h │ │ │ │ ├── FixMath.h │ │ │ │ ├── Folders.h │ │ │ │ ├── Gestalt.h │ │ │ │ ├── HFSVolumes.h │ │ │ │ ├── IntlResources.h │ │ │ │ ├── LowMem.h │ │ │ │ ├── MacErrors.h │ │ │ │ ├── MacLocales.h │ │ │ │ ├── MacMemory.h │ │ │ │ ├── MachineExceptions.h │ │ │ │ ├── Math64.h │ │ │ │ ├── MixedMode.h │ │ │ │ ├── Multiprocessing.h │ │ │ │ ├── MultiprocessingInfo.h │ │ │ │ ├── NumberFormatting.h │ │ │ │ ├── OSUtils.h │ │ │ │ ├── PEFBinaryFormat.h │ │ │ │ ├── PLStringFuncs.h │ │ │ │ ├── Resources.h │ │ │ │ ├── Script.h │ │ │ │ ├── StringCompare.h │ │ │ │ ├── TextCommon.h │ │ │ │ ├── TextEncodingConverter.h │ │ │ │ ├── TextEncodingPlugin.h │ │ │ │ ├── TextUtils.h │ │ │ │ ├── Threads.h │ │ │ │ ├── Timer.h │ │ │ │ ├── ToolUtils.h │ │ │ │ ├── UTCUtils.h │ │ │ │ ├── UnicodeConverter.h │ │ │ │ ├── UnicodeUtilities.h │ │ │ │ └── fp.h │ │ ├── DictionaryServices.framework │ │ │ ├── DictionaryServices.tbd │ │ │ ├── Headers │ │ │ │ └── DictionaryServices.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── DictionaryServices.tbd │ │ │ │ └── Headers │ │ │ │ └── DictionaryServices.h │ │ ├── FSEvents.framework │ │ │ ├── FSEvents.tbd │ │ │ ├── Headers │ │ │ │ └── FSEvents.h │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── FSEvents.tbd │ │ │ │ └── Headers │ │ │ │ └── FSEvents.h │ │ ├── LaunchServices.framework │ │ │ ├── Headers │ │ │ │ ├── IconsCore.h │ │ │ │ ├── LSConstants.h │ │ │ │ ├── LSInfo.h │ │ │ │ ├── LSInfoDeprecated.h │ │ │ │ ├── LSOpen.h │ │ │ │ ├── LSOpenDeprecated.h │ │ │ │ ├── LSQuarantine.h │ │ │ │ ├── LaunchServices.h │ │ │ │ ├── UTCoreTypes.h │ │ │ │ └── UTType.h │ │ │ ├── LaunchServices.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── IconsCore.h │ │ │ │ ├── LSConstants.h │ │ │ │ ├── LSInfo.h │ │ │ │ ├── LSInfoDeprecated.h │ │ │ │ ├── LSOpen.h │ │ │ │ ├── LSOpenDeprecated.h │ │ │ │ ├── LSQuarantine.h │ │ │ │ ├── LaunchServices.h │ │ │ │ ├── UTCoreTypes.h │ │ │ │ └── UTType.h │ │ │ │ └── LaunchServices.tbd │ │ ├── Metadata.framework │ │ │ ├── Headers │ │ │ │ ├── MDImporter.h │ │ │ │ ├── MDItem.h │ │ │ │ ├── MDLabel.h │ │ │ │ ├── MDQuery.h │ │ │ │ ├── MDSchema.h │ │ │ │ └── Metadata.h │ │ │ ├── Metadata.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── MDImporter.h │ │ │ │ ├── MDItem.h │ │ │ │ ├── MDLabel.h │ │ │ │ ├── MDQuery.h │ │ │ │ ├── MDSchema.h │ │ │ │ └── Metadata.h │ │ │ │ └── Metadata.tbd │ │ ├── OSServices.framework │ │ │ ├── Headers │ │ │ │ ├── CSIdentity.h │ │ │ │ ├── CSIdentityAuthority.h │ │ │ │ ├── CSIdentityBase.h │ │ │ │ ├── CSIdentityQuery.h │ │ │ │ ├── IconStorage.h │ │ │ │ ├── KeychainCore.h │ │ │ │ ├── OSServices.h │ │ │ │ ├── Power.h │ │ │ │ ├── SecurityCore.h │ │ │ │ ├── WSMethodInvocation.h │ │ │ │ ├── WSProtocolHandler.h │ │ │ │ └── WSTypes.h │ │ │ ├── OSServices.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── CSIdentity.h │ │ │ │ ├── CSIdentityAuthority.h │ │ │ │ ├── CSIdentityBase.h │ │ │ │ ├── CSIdentityQuery.h │ │ │ │ ├── IconStorage.h │ │ │ │ ├── KeychainCore.h │ │ │ │ ├── OSServices.h │ │ │ │ ├── Power.h │ │ │ │ ├── SecurityCore.h │ │ │ │ ├── WSMethodInvocation.h │ │ │ │ ├── WSProtocolHandler.h │ │ │ │ └── WSTypes.h │ │ │ │ └── OSServices.tbd │ │ ├── SearchKit.framework │ │ │ ├── Headers │ │ │ │ ├── SKAnalysis.h │ │ │ │ ├── SKDocument.h │ │ │ │ ├── SKIndex.h │ │ │ │ ├── SKSearch.h │ │ │ │ ├── SKSummary.h │ │ │ │ └── SearchKit.h │ │ │ ├── SearchKit.tbd │ │ │ └── Versions │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── SKAnalysis.h │ │ │ │ ├── SKDocument.h │ │ │ │ ├── SKIndex.h │ │ │ │ ├── SKSearch.h │ │ │ │ ├── SKSummary.h │ │ │ │ └── SearchKit.h │ │ │ │ └── SearchKit.tbd │ │ └── SharedFileList.framework │ │ │ ├── Headers │ │ │ ├── LSSharedFileList.h │ │ │ └── SharedFileList.h │ │ │ ├── SharedFileList.tbd │ │ │ └── Versions │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── LSSharedFileList.h │ │ │ └── SharedFileList.h │ │ │ └── SharedFileList.tbd │ │ └── Headers │ │ ├── Components.k.h │ │ └── CoreServices.h ├── CoreText.framework │ ├── CoreText.tbd │ ├── Headers │ │ ├── CTDefines.h │ │ ├── CTFont.h │ │ ├── CTFontCollection.h │ │ ├── CTFontDescriptor.h │ │ ├── CTFontManager.h │ │ ├── CTFontManagerErrors.h │ │ ├── CTFontTraits.h │ │ ├── CTFrame.h │ │ ├── CTFramesetter.h │ │ ├── CTGlyphInfo.h │ │ ├── CTLine.h │ │ ├── CTParagraphStyle.h │ │ ├── CTRubyAnnotation.h │ │ ├── CTRun.h │ │ ├── CTRunDelegate.h │ │ ├── CTStringAttributes.h │ │ ├── CTTextTab.h │ │ ├── CTTypesetter.h │ │ ├── CoreText.h │ │ ├── SFNTLayoutTypes.h │ │ └── SFNTTypes.h │ └── Versions │ │ └── Current │ │ ├── CoreText.tbd │ │ └── Headers │ │ ├── CTDefines.h │ │ ├── CTFont.h │ │ ├── CTFontCollection.h │ │ ├── CTFontDescriptor.h │ │ ├── CTFontManager.h │ │ ├── CTFontManagerErrors.h │ │ ├── CTFontTraits.h │ │ ├── CTFrame.h │ │ ├── CTFramesetter.h │ │ ├── CTGlyphInfo.h │ │ ├── CTLine.h │ │ ├── CTParagraphStyle.h │ │ ├── CTRubyAnnotation.h │ │ ├── CTRun.h │ │ ├── CTRunDelegate.h │ │ ├── CTStringAttributes.h │ │ ├── CTTextTab.h │ │ ├── CTTypesetter.h │ │ ├── CoreText.h │ │ ├── SFNTLayoutTypes.h │ │ └── SFNTTypes.h ├── CoreVideo.framework │ ├── CoreVideo.tbd │ ├── Headers │ │ ├── CVBase.h │ │ ├── CVBuffer.h │ │ ├── CVDisplayLink.h │ │ ├── CVHostTime.h │ │ ├── CVImageBuffer.h │ │ ├── CVMetalTexture.h │ │ ├── CVMetalTextureCache.h │ │ ├── CVOpenGLBuffer.h │ │ ├── CVOpenGLBufferPool.h │ │ ├── CVOpenGLTexture.h │ │ ├── CVOpenGLTextureCache.h │ │ ├── CVPixelBuffer.h │ │ ├── CVPixelBufferIOSurface.h │ │ ├── CVPixelBufferPool.h │ │ ├── CVPixelFormatDescription.h │ │ ├── CVReturn.h │ │ └── CoreVideo.h │ └── Versions │ │ └── Current │ │ ├── CoreVideo.tbd │ │ └── Headers │ │ ├── CVBase.h │ │ ├── CVBuffer.h │ │ ├── CVDisplayLink.h │ │ ├── CVHostTime.h │ │ ├── CVImageBuffer.h │ │ ├── CVMetalTexture.h │ │ ├── CVMetalTextureCache.h │ │ ├── CVOpenGLBuffer.h │ │ ├── CVOpenGLBufferPool.h │ │ ├── CVOpenGLTexture.h │ │ ├── CVOpenGLTextureCache.h │ │ ├── CVPixelBuffer.h │ │ ├── CVPixelBufferIOSurface.h │ │ ├── CVPixelBufferPool.h │ │ ├── CVPixelFormatDescription.h │ │ ├── CVReturn.h │ │ └── CoreVideo.h ├── DiskArbitration.framework │ ├── DiskArbitration.tbd │ ├── Headers │ │ ├── DADisk.h │ │ ├── DADissenter.h │ │ ├── DASession.h │ │ └── DiskArbitration.h │ └── Versions │ │ └── Current │ │ ├── DiskArbitration.tbd │ │ └── Headers │ │ ├── DADisk.h │ │ ├── DADissenter.h │ │ ├── DASession.h │ │ └── DiskArbitration.h ├── Foundation.framework │ ├── Foundation.tbd │ ├── Headers │ │ ├── Foundation.h │ │ ├── FoundationErrors.h │ │ ├── FoundationLegacySwiftCompatibility.h │ │ ├── NSAffineTransform.h │ │ ├── NSAppleEventDescriptor.h │ │ ├── NSAppleEventManager.h │ │ ├── NSAppleScript.h │ │ ├── NSArchiver.h │ │ ├── NSArray.h │ │ ├── NSAttributedString.h │ │ ├── NSAutoreleasePool.h │ │ ├── NSBackgroundActivityScheduler.h │ │ ├── NSBundle.h │ │ ├── NSByteCountFormatter.h │ │ ├── NSByteOrder.h │ │ ├── NSCache.h │ │ ├── NSCalendar.h │ │ ├── NSCalendarDate.h │ │ ├── NSCharacterSet.h │ │ ├── NSClassDescription.h │ │ ├── NSCoder.h │ │ ├── NSComparisonPredicate.h │ │ ├── NSCompoundPredicate.h │ │ ├── NSConnection.h │ │ ├── NSData.h │ │ ├── NSDate.h │ │ ├── NSDateComponentsFormatter.h │ │ ├── NSDateFormatter.h │ │ ├── NSDateInterval.h │ │ ├── NSDateIntervalFormatter.h │ │ ├── NSDebug.h │ │ ├── NSDecimal.h │ │ ├── NSDecimalNumber.h │ │ ├── NSDictionary.h │ │ ├── NSDistantObject.h │ │ ├── NSDistributedLock.h │ │ ├── NSDistributedNotificationCenter.h │ │ ├── NSEnergyFormatter.h │ │ ├── NSEnumerator.h │ │ ├── NSError.h │ │ ├── NSException.h │ │ ├── NSExpression.h │ │ ├── NSExtensionContext.h │ │ ├── NSExtensionItem.h │ │ ├── NSExtensionRequestHandling.h │ │ ├── NSFileCoordinator.h │ │ ├── NSFileHandle.h │ │ ├── NSFileManager.h │ │ ├── NSFilePresenter.h │ │ ├── NSFileVersion.h │ │ ├── NSFileWrapper.h │ │ ├── NSFormatter.h │ │ ├── NSGarbageCollector.h │ │ ├── NSGeometry.h │ │ ├── NSHFSFileTypes.h │ │ ├── NSHTTPCookie.h │ │ ├── NSHTTPCookieStorage.h │ │ ├── NSHashTable.h │ │ ├── NSHost.h │ │ ├── NSISO8601DateFormatter.h │ │ ├── NSIndexPath.h │ │ ├── NSIndexSet.h │ │ ├── NSInflectionRule.h │ │ ├── NSInvocation.h │ │ ├── NSItemProvider.h │ │ ├── NSItemProviderReadingWriting.h │ │ ├── NSJSONSerialization.h │ │ ├── NSKeyValueCoding.h │ │ ├── NSKeyValueObserving.h │ │ ├── NSKeyedArchiver.h │ │ ├── NSLengthFormatter.h │ │ ├── NSLinguisticTagger.h │ │ ├── NSListFormatter.h │ │ ├── NSLocale.h │ │ ├── NSLock.h │ │ ├── NSMapTable.h │ │ ├── NSMassFormatter.h │ │ ├── NSMeasurement.h │ │ ├── NSMeasurementFormatter.h │ │ ├── NSMetadata.h │ │ ├── NSMetadataAttributes.h │ │ ├── NSMethodSignature.h │ │ ├── NSMorphology.h │ │ ├── NSNetServices.h │ │ ├── NSNotification.h │ │ ├── NSNotificationQueue.h │ │ ├── NSNull.h │ │ ├── NSNumberFormatter.h │ │ ├── NSObjCRuntime.h │ │ ├── NSObject.h │ │ ├── NSObjectScripting.h │ │ ├── NSOperation.h │ │ ├── NSOrderedCollectionChange.h │ │ ├── NSOrderedCollectionDifference.h │ │ ├── NSOrderedSet.h │ │ ├── NSOrthography.h │ │ ├── NSPathUtilities.h │ │ ├── NSPersonNameComponents.h │ │ ├── NSPersonNameComponentsFormatter.h │ │ ├── NSPointerArray.h │ │ ├── NSPointerFunctions.h │ │ ├── NSPort.h │ │ ├── NSPortCoder.h │ │ ├── NSPortMessage.h │ │ ├── NSPortNameServer.h │ │ ├── NSPredicate.h │ │ ├── NSProcessInfo.h │ │ ├── NSProgress.h │ │ ├── NSPropertyList.h │ │ ├── NSProtocolChecker.h │ │ ├── NSProxy.h │ │ ├── NSRange.h │ │ ├── NSRegularExpression.h │ │ ├── NSRelativeDateTimeFormatter.h │ │ ├── NSRunLoop.h │ │ ├── NSScanner.h │ │ ├── NSScriptClassDescription.h │ │ ├── NSScriptCoercionHandler.h │ │ ├── NSScriptCommand.h │ │ ├── NSScriptCommandDescription.h │ │ ├── NSScriptExecutionContext.h │ │ ├── NSScriptKeyValueCoding.h │ │ ├── NSScriptObjectSpecifiers.h │ │ ├── NSScriptStandardSuiteCommands.h │ │ ├── NSScriptSuiteRegistry.h │ │ ├── NSScriptWhoseTests.h │ │ ├── NSSet.h │ │ ├── NSSortDescriptor.h │ │ ├── NSSpellServer.h │ │ ├── NSStream.h │ │ ├── NSString.h │ │ ├── NSTask.h │ │ ├── NSTermOfAddress.h │ │ ├── NSTextCheckingResult.h │ │ ├── NSThread.h │ │ ├── NSTimeZone.h │ │ ├── NSTimer.h │ │ ├── NSURL.h │ │ ├── NSURLAuthenticationChallenge.h │ │ ├── NSURLCache.h │ │ ├── NSURLConnection.h │ │ ├── NSURLCredential.h │ │ ├── NSURLCredentialStorage.h │ │ ├── NSURLDownload.h │ │ ├── NSURLError.h │ │ ├── NSURLHandle.h │ │ ├── NSURLProtectionSpace.h │ │ ├── NSURLProtocol.h │ │ ├── NSURLRequest.h │ │ ├── NSURLResponse.h │ │ ├── NSURLSession.h │ │ ├── NSUUID.h │ │ ├── NSUbiquitousKeyValueStore.h │ │ ├── NSUndoManager.h │ │ ├── NSUnit.h │ │ ├── NSUserActivity.h │ │ ├── NSUserDefaults.h │ │ ├── NSUserNotification.h │ │ ├── NSUserScriptTask.h │ │ ├── NSValue.h │ │ ├── NSValueTransformer.h │ │ ├── NSXMLDTD.h │ │ ├── NSXMLDTDNode.h │ │ ├── NSXMLDocument.h │ │ ├── NSXMLElement.h │ │ ├── NSXMLNode.h │ │ ├── NSXMLNodeOptions.h │ │ ├── NSXMLParser.h │ │ ├── NSXPCConnection.h │ │ └── NSZone.h │ └── Versions │ │ └── Current │ │ ├── Foundation.tbd │ │ └── Headers │ │ ├── Foundation.h │ │ ├── FoundationErrors.h │ │ ├── FoundationLegacySwiftCompatibility.h │ │ ├── NSAffineTransform.h │ │ ├── NSAppleEventDescriptor.h │ │ ├── NSAppleEventManager.h │ │ ├── NSAppleScript.h │ │ ├── NSArchiver.h │ │ ├── NSArray.h │ │ ├── NSAttributedString.h │ │ ├── NSAutoreleasePool.h │ │ ├── NSBackgroundActivityScheduler.h │ │ ├── NSBundle.h │ │ ├── NSByteCountFormatter.h │ │ ├── NSByteOrder.h │ │ ├── NSCache.h │ │ ├── NSCalendar.h │ │ ├── NSCalendarDate.h │ │ ├── NSCharacterSet.h │ │ ├── NSClassDescription.h │ │ ├── NSCoder.h │ │ ├── NSComparisonPredicate.h │ │ ├── NSCompoundPredicate.h │ │ ├── NSConnection.h │ │ ├── NSData.h │ │ ├── NSDate.h │ │ ├── NSDateComponentsFormatter.h │ │ ├── NSDateFormatter.h │ │ ├── NSDateInterval.h │ │ ├── NSDateIntervalFormatter.h │ │ ├── NSDebug.h │ │ ├── NSDecimal.h │ │ ├── NSDecimalNumber.h │ │ ├── NSDictionary.h │ │ ├── NSDistantObject.h │ │ ├── NSDistributedLock.h │ │ ├── NSDistributedNotificationCenter.h │ │ ├── NSEnergyFormatter.h │ │ ├── NSEnumerator.h │ │ ├── NSError.h │ │ ├── NSException.h │ │ ├── NSExpression.h │ │ ├── NSExtensionContext.h │ │ ├── NSExtensionItem.h │ │ ├── NSExtensionRequestHandling.h │ │ ├── NSFileCoordinator.h │ │ ├── NSFileHandle.h │ │ ├── NSFileManager.h │ │ ├── NSFilePresenter.h │ │ ├── NSFileVersion.h │ │ ├── NSFileWrapper.h │ │ ├── NSFormatter.h │ │ ├── NSGarbageCollector.h │ │ ├── NSGeometry.h │ │ ├── NSHFSFileTypes.h │ │ ├── NSHTTPCookie.h │ │ ├── NSHTTPCookieStorage.h │ │ ├── NSHashTable.h │ │ ├── NSHost.h │ │ ├── NSISO8601DateFormatter.h │ │ ├── NSIndexPath.h │ │ ├── NSIndexSet.h │ │ ├── NSInflectionRule.h │ │ ├── NSInvocation.h │ │ ├── NSItemProvider.h │ │ ├── NSItemProviderReadingWriting.h │ │ ├── NSJSONSerialization.h │ │ ├── NSKeyValueCoding.h │ │ ├── NSKeyValueObserving.h │ │ ├── NSKeyedArchiver.h │ │ ├── NSLengthFormatter.h │ │ ├── NSLinguisticTagger.h │ │ ├── NSListFormatter.h │ │ ├── NSLocale.h │ │ ├── NSLock.h │ │ ├── NSMapTable.h │ │ ├── NSMassFormatter.h │ │ ├── NSMeasurement.h │ │ ├── NSMeasurementFormatter.h │ │ ├── NSMetadata.h │ │ ├── NSMetadataAttributes.h │ │ ├── NSMethodSignature.h │ │ ├── NSMorphology.h │ │ ├── NSNetServices.h │ │ ├── NSNotification.h │ │ ├── NSNotificationQueue.h │ │ ├── NSNull.h │ │ ├── NSNumberFormatter.h │ │ ├── NSObjCRuntime.h │ │ ├── NSObject.h │ │ ├── NSObjectScripting.h │ │ ├── NSOperation.h │ │ ├── NSOrderedCollectionChange.h │ │ ├── NSOrderedCollectionDifference.h │ │ ├── NSOrderedSet.h │ │ ├── NSOrthography.h │ │ ├── NSPathUtilities.h │ │ ├── NSPersonNameComponents.h │ │ ├── NSPersonNameComponentsFormatter.h │ │ ├── NSPointerArray.h │ │ ├── NSPointerFunctions.h │ │ ├── NSPort.h │ │ ├── NSPortCoder.h │ │ ├── NSPortMessage.h │ │ ├── NSPortNameServer.h │ │ ├── NSPredicate.h │ │ ├── NSProcessInfo.h │ │ ├── NSProgress.h │ │ ├── NSPropertyList.h │ │ ├── NSProtocolChecker.h │ │ ├── NSProxy.h │ │ ├── NSRange.h │ │ ├── NSRegularExpression.h │ │ ├── NSRelativeDateTimeFormatter.h │ │ ├── NSRunLoop.h │ │ ├── NSScanner.h │ │ ├── NSScriptClassDescription.h │ │ ├── NSScriptCoercionHandler.h │ │ ├── NSScriptCommand.h │ │ ├── NSScriptCommandDescription.h │ │ ├── NSScriptExecutionContext.h │ │ ├── NSScriptKeyValueCoding.h │ │ ├── NSScriptObjectSpecifiers.h │ │ ├── NSScriptStandardSuiteCommands.h │ │ ├── NSScriptSuiteRegistry.h │ │ ├── NSScriptWhoseTests.h │ │ ├── NSSet.h │ │ ├── NSSortDescriptor.h │ │ ├── NSSpellServer.h │ │ ├── NSStream.h │ │ ├── NSString.h │ │ ├── NSTask.h │ │ ├── NSTermOfAddress.h │ │ ├── NSTextCheckingResult.h │ │ ├── NSThread.h │ │ ├── NSTimeZone.h │ │ ├── NSTimer.h │ │ ├── NSURL.h │ │ ├── NSURLAuthenticationChallenge.h │ │ ├── NSURLCache.h │ │ ├── NSURLConnection.h │ │ ├── NSURLCredential.h │ │ ├── NSURLCredentialStorage.h │ │ ├── NSURLDownload.h │ │ ├── NSURLError.h │ │ ├── NSURLHandle.h │ │ ├── NSURLProtectionSpace.h │ │ ├── NSURLProtocol.h │ │ ├── NSURLRequest.h │ │ ├── NSURLResponse.h │ │ ├── NSURLSession.h │ │ ├── NSUUID.h │ │ ├── NSUbiquitousKeyValueStore.h │ │ ├── NSUndoManager.h │ │ ├── NSUnit.h │ │ ├── NSUserActivity.h │ │ ├── NSUserDefaults.h │ │ ├── NSUserNotification.h │ │ ├── NSUserScriptTask.h │ │ ├── NSValue.h │ │ ├── NSValueTransformer.h │ │ ├── NSXMLDTD.h │ │ ├── NSXMLDTDNode.h │ │ ├── NSXMLDocument.h │ │ ├── NSXMLElement.h │ │ ├── NSXMLNode.h │ │ ├── NSXMLNodeOptions.h │ │ ├── NSXMLParser.h │ │ ├── NSXPCConnection.h │ │ └── NSZone.h ├── GameController.framework │ ├── GameController.tbd │ ├── Headers │ │ ├── GCAxisElement.h │ │ ├── GCAxisInput.h │ │ ├── GCButtonElement.h │ │ ├── GCColor.h │ │ ├── GCController.h │ │ ├── GCControllerAxisInput.h │ │ ├── GCControllerButtonInput.h │ │ ├── GCControllerDirectionPad.h │ │ ├── GCControllerElement.h │ │ ├── GCControllerInput.h │ │ ├── GCControllerTouchpad.h │ │ ├── GCDevice.h │ │ ├── GCDeviceBattery.h │ │ ├── GCDeviceCursor.h │ │ ├── GCDeviceHaptics.h │ │ ├── GCDeviceLight.h │ │ ├── GCDevicePhysicalInput.h │ │ ├── GCDevicePhysicalInputState.h │ │ ├── GCDevicePhysicalInputStateDiff.h │ │ ├── GCDirectionPadElement.h │ │ ├── GCDirectionalGamepad.h │ │ ├── GCDualSenseAdaptiveTrigger.h │ │ ├── GCDualSenseGamepad.h │ │ ├── GCDualShockGamepad.h │ │ ├── GCEventViewController.h │ │ ├── GCExtendedGamepad.h │ │ ├── GCExtendedGamepadSnapshot.h │ │ ├── GCExtern.h │ │ ├── GCGamepad.h │ │ ├── GCGamepadSnapshot.h │ │ ├── GCGearShifterElement.h │ │ ├── GCInputNames.h │ │ ├── GCKeyCodes.h │ │ ├── GCKeyNames.h │ │ ├── GCKeyboard.h │ │ ├── GCKeyboardInput.h │ │ ├── GCLinearInput.h │ │ ├── GCMicroGamepad.h │ │ ├── GCMicroGamepadSnapshot.h │ │ ├── GCMotion.h │ │ ├── GCMouse.h │ │ ├── GCMouseInput.h │ │ ├── GCPhysicalInputElement.h │ │ ├── GCPhysicalInputProfile.h │ │ ├── GCPhysicalInputSource.h │ │ ├── GCPressedStateInput.h │ │ ├── GCProductCategories.h │ │ ├── GCRacingWheel.h │ │ ├── GCRacingWheelInput.h │ │ ├── GCRelativeInput.h │ │ ├── GCSteeringWheelElement.h │ │ ├── GCSwitchElement.h │ │ ├── GCSwitchPositionInput.h │ │ ├── GCSyntheticDeviceKeys.h │ │ ├── GCTouchedStateInput.h │ │ ├── GCXboxGamepad.h │ │ └── GameController.h │ └── Versions │ │ └── Current │ │ ├── GameController.tbd │ │ └── Headers │ │ ├── GCAxisElement.h │ │ ├── GCAxisInput.h │ │ ├── GCButtonElement.h │ │ ├── GCColor.h │ │ ├── GCController.h │ │ ├── GCControllerAxisInput.h │ │ ├── GCControllerButtonInput.h │ │ ├── GCControllerDirectionPad.h │ │ ├── GCControllerElement.h │ │ ├── GCControllerInput.h │ │ ├── GCControllerTouchpad.h │ │ ├── GCDevice.h │ │ ├── GCDeviceBattery.h │ │ ├── GCDeviceCursor.h │ │ ├── GCDeviceHaptics.h │ │ ├── GCDeviceLight.h │ │ ├── GCDevicePhysicalInput.h │ │ ├── GCDevicePhysicalInputState.h │ │ ├── GCDevicePhysicalInputStateDiff.h │ │ ├── GCDirectionPadElement.h │ │ ├── GCDirectionalGamepad.h │ │ ├── GCDualSenseAdaptiveTrigger.h │ │ ├── GCDualSenseGamepad.h │ │ ├── GCDualShockGamepad.h │ │ ├── GCEventViewController.h │ │ ├── GCExtendedGamepad.h │ │ ├── GCExtendedGamepadSnapshot.h │ │ ├── GCExtern.h │ │ ├── GCGamepad.h │ │ ├── GCGamepadSnapshot.h │ │ ├── GCGearShifterElement.h │ │ ├── GCInputNames.h │ │ ├── GCKeyCodes.h │ │ ├── GCKeyNames.h │ │ ├── GCKeyboard.h │ │ ├── GCKeyboardInput.h │ │ ├── GCLinearInput.h │ │ ├── GCMicroGamepad.h │ │ ├── GCMicroGamepadSnapshot.h │ │ ├── GCMotion.h │ │ ├── GCMouse.h │ │ ├── GCMouseInput.h │ │ ├── GCPhysicalInputElement.h │ │ ├── GCPhysicalInputProfile.h │ │ ├── GCPhysicalInputSource.h │ │ ├── GCPressedStateInput.h │ │ ├── GCProductCategories.h │ │ ├── GCRacingWheel.h │ │ ├── GCRacingWheelInput.h │ │ ├── GCRelativeInput.h │ │ ├── GCSteeringWheelElement.h │ │ ├── GCSwitchElement.h │ │ ├── GCSwitchPositionInput.h │ │ ├── GCSyntheticDeviceKeys.h │ │ ├── GCTouchedStateInput.h │ │ ├── GCXboxGamepad.h │ │ └── GameController.h ├── IOKit.framework │ ├── Headers │ │ ├── AppleConvergedIPCKeys.h │ │ ├── IOBSD.h │ │ ├── IOCFBundle.h │ │ ├── IOCFPlugIn.h │ │ ├── IOCFSerialize.h │ │ ├── IOCFURLAccess.h │ │ ├── IOCFUnserialize.h │ │ ├── IODataQueueClient.h │ │ ├── IODataQueueShared.h │ │ ├── IOKitKeys.h │ │ ├── IOKitLib.h │ │ ├── IOKitServer.h │ │ ├── IOMapTypes.h │ │ ├── IOMessage.h │ │ ├── IORPC.h │ │ ├── IOReturn.h │ │ ├── IOSharedLock.h │ │ ├── IOTypes.h │ │ ├── IOUserServer.h │ │ ├── OSMessageNotification.h │ │ ├── audio │ │ │ ├── IOAudioDefines.h │ │ │ ├── IOAudioLib.h │ │ │ └── IOAudioTypes.h │ │ ├── avc │ │ │ ├── IOFireWireAVCConsts.h │ │ │ └── IOFireWireAVCLib.h │ │ ├── graphics │ │ │ ├── IOAccelClientConnect.h │ │ │ ├── IOAccelSurfaceConnect.h │ │ │ ├── IOAccelTypes.h │ │ │ ├── IOFramebufferShared.h │ │ │ ├── IOGraphicsEngine.h │ │ │ ├── IOGraphicsInterface.h │ │ │ ├── IOGraphicsInterfaceTypes.h │ │ │ ├── IOGraphicsLib.h │ │ │ └── IOGraphicsTypes.h │ │ ├── hid │ │ │ ├── IOHIDBase.h │ │ │ ├── IOHIDDevice.h │ │ │ ├── IOHIDDeviceKeys.h │ │ │ ├── IOHIDDevicePlugIn.h │ │ │ ├── IOHIDDeviceTypes.h │ │ │ ├── IOHIDElement.h │ │ │ ├── IOHIDEventServiceKeys.h │ │ │ ├── IOHIDEventServiceTypes.h │ │ │ ├── IOHIDKeys.h │ │ │ ├── IOHIDLib.h │ │ │ ├── IOHIDLibObsolete.h │ │ │ ├── IOHIDManager.h │ │ │ ├── IOHIDProperties.h │ │ │ ├── IOHIDQueue.h │ │ │ ├── IOHIDTransaction.h │ │ │ ├── IOHIDUsageTables.h │ │ │ └── IOHIDValue.h │ │ ├── hidsystem │ │ │ ├── IOHIDEventSystemClient.h │ │ │ ├── IOHIDLib.h │ │ │ ├── IOHIDParameter.h │ │ │ ├── IOHIDServiceClient.h │ │ │ ├── IOHIDShared.h │ │ │ ├── IOHIDTypes.h │ │ │ ├── IOHIDUserDevice.h │ │ │ ├── IOLLEvent.h │ │ │ ├── ev_keymap.h │ │ │ └── event_status_driver.h │ │ ├── i2c │ │ │ └── IOI2CInterface.h │ │ ├── iokitmig.h │ │ ├── kext │ │ │ └── KextManager.h │ │ ├── network │ │ │ ├── IOEthernetController.h │ │ │ ├── IOEthernetInterface.h │ │ │ ├── IOEthernetStats.h │ │ │ ├── IONetworkController.h │ │ │ ├── IONetworkData.h │ │ │ ├── IONetworkInterface.h │ │ │ ├── IONetworkLib.h │ │ │ ├── IONetworkMedium.h │ │ │ ├── IONetworkStack.h │ │ │ ├── IONetworkStats.h │ │ │ └── IONetworkUserClient.h │ │ ├── ps │ │ │ ├── IOPSKeys.h │ │ │ ├── IOPowerSources.h │ │ │ └── IOUPSPlugIn.h │ │ ├── sbp2 │ │ │ └── IOFireWireSBP2Lib.h │ │ ├── serial │ │ │ ├── IOSerialKeys.h │ │ │ └── ioss.h │ │ ├── stream │ │ │ ├── IOStreamLib.h │ │ │ └── IOStreamShared.h │ │ └── video │ │ │ ├── IOVideoControlDictionary.h │ │ │ ├── IOVideoDevice.h │ │ │ ├── IOVideoDeviceClientInit.h │ │ │ ├── IOVideoDeviceLib.h │ │ │ ├── IOVideoDeviceShared.h │ │ │ ├── IOVideoDeviceUserClient.h │ │ │ ├── IOVideoStream.h │ │ │ ├── IOVideoStreamDictionary.h │ │ │ ├── IOVideoStreamFormatDictionary.h │ │ │ └── IOVideoTypes.h │ ├── IOKit.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── AppleConvergedIPCKeys.h │ │ ├── IOBSD.h │ │ ├── IOCFBundle.h │ │ ├── IOCFPlugIn.h │ │ ├── IOCFSerialize.h │ │ ├── IOCFURLAccess.h │ │ ├── IOCFUnserialize.h │ │ ├── IODataQueueClient.h │ │ ├── IODataQueueShared.h │ │ ├── IOKitKeys.h │ │ ├── IOKitLib.h │ │ ├── IOKitServer.h │ │ ├── IOMapTypes.h │ │ ├── IOMessage.h │ │ ├── IORPC.h │ │ ├── IOReturn.h │ │ ├── IOSharedLock.h │ │ ├── IOTypes.h │ │ ├── IOUserServer.h │ │ ├── OSMessageNotification.h │ │ ├── audio │ │ │ ├── IOAudioDefines.h │ │ │ ├── IOAudioLib.h │ │ │ └── IOAudioTypes.h │ │ ├── avc │ │ │ ├── IOFireWireAVCConsts.h │ │ │ └── IOFireWireAVCLib.h │ │ ├── graphics │ │ │ ├── IOAccelClientConnect.h │ │ │ ├── IOAccelSurfaceConnect.h │ │ │ ├── IOAccelTypes.h │ │ │ ├── IOFramebufferShared.h │ │ │ ├── IOGraphicsEngine.h │ │ │ ├── IOGraphicsInterface.h │ │ │ ├── IOGraphicsInterfaceTypes.h │ │ │ ├── IOGraphicsLib.h │ │ │ └── IOGraphicsTypes.h │ │ ├── hid │ │ │ ├── IOHIDBase.h │ │ │ ├── IOHIDDevice.h │ │ │ ├── IOHIDDeviceKeys.h │ │ │ ├── IOHIDDevicePlugIn.h │ │ │ ├── IOHIDDeviceTypes.h │ │ │ ├── IOHIDElement.h │ │ │ ├── IOHIDEventServiceKeys.h │ │ │ ├── IOHIDEventServiceTypes.h │ │ │ ├── IOHIDKeys.h │ │ │ ├── IOHIDLib.h │ │ │ ├── IOHIDLibObsolete.h │ │ │ ├── IOHIDManager.h │ │ │ ├── IOHIDProperties.h │ │ │ ├── IOHIDQueue.h │ │ │ ├── IOHIDTransaction.h │ │ │ ├── IOHIDUsageTables.h │ │ │ └── IOHIDValue.h │ │ ├── hidsystem │ │ │ ├── IOHIDEventSystemClient.h │ │ │ ├── IOHIDLib.h │ │ │ ├── IOHIDParameter.h │ │ │ ├── IOHIDServiceClient.h │ │ │ ├── IOHIDShared.h │ │ │ ├── IOHIDTypes.h │ │ │ ├── IOHIDUserDevice.h │ │ │ ├── IOLLEvent.h │ │ │ ├── ev_keymap.h │ │ │ └── event_status_driver.h │ │ ├── i2c │ │ │ └── IOI2CInterface.h │ │ ├── iokitmig.h │ │ ├── kext │ │ │ └── KextManager.h │ │ ├── network │ │ │ ├── IOEthernetController.h │ │ │ ├── IOEthernetInterface.h │ │ │ ├── IOEthernetStats.h │ │ │ ├── IONetworkController.h │ │ │ ├── IONetworkData.h │ │ │ ├── IONetworkInterface.h │ │ │ ├── IONetworkLib.h │ │ │ ├── IONetworkMedium.h │ │ │ ├── IONetworkStack.h │ │ │ ├── IONetworkStats.h │ │ │ └── IONetworkUserClient.h │ │ ├── ps │ │ │ ├── IOPSKeys.h │ │ │ ├── IOPowerSources.h │ │ │ └── IOUPSPlugIn.h │ │ ├── sbp2 │ │ │ └── IOFireWireSBP2Lib.h │ │ ├── serial │ │ │ ├── IOSerialKeys.h │ │ │ └── ioss.h │ │ ├── stream │ │ │ ├── IOStreamLib.h │ │ │ └── IOStreamShared.h │ │ └── video │ │ │ ├── IOVideoControlDictionary.h │ │ │ ├── IOVideoDevice.h │ │ │ ├── IOVideoDeviceClientInit.h │ │ │ ├── IOVideoDeviceLib.h │ │ │ ├── IOVideoDeviceShared.h │ │ │ ├── IOVideoDeviceUserClient.h │ │ │ ├── IOVideoStream.h │ │ │ ├── IOVideoStreamDictionary.h │ │ │ ├── IOVideoStreamFormatDictionary.h │ │ │ └── IOVideoTypes.h │ │ └── IOKit.tbd ├── IOSurface.framework │ ├── Headers │ │ ├── IOSurface.h │ │ ├── IOSurfaceAPI.h │ │ ├── IOSurfaceBase.h │ │ ├── IOSurfaceObjC.h │ │ ├── IOSurfaceRef.h │ │ └── IOSurfaceTypes.h │ ├── IOSurface.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── IOSurface.h │ │ ├── IOSurfaceAPI.h │ │ ├── IOSurfaceBase.h │ │ ├── IOSurfaceObjC.h │ │ ├── IOSurfaceRef.h │ │ └── IOSurfaceTypes.h │ │ └── IOSurface.tbd ├── ImageIO.framework │ ├── Headers │ │ ├── CGImageAnimation.h │ │ ├── CGImageDestination.h │ │ ├── CGImageMetadata.h │ │ ├── CGImageProperties.h │ │ ├── CGImageSource.h │ │ ├── ImageIO.h │ │ └── ImageIOBase.h │ ├── ImageIO.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── CGImageAnimation.h │ │ ├── CGImageDestination.h │ │ ├── CGImageMetadata.h │ │ ├── CGImageProperties.h │ │ ├── CGImageSource.h │ │ ├── ImageIO.h │ │ └── ImageIOBase.h │ │ ├── ImageIO.tbd │ │ └── Resources │ │ ├── libGIF.tbd │ │ ├── libJP2.tbd │ │ ├── libJPEG.tbd │ │ ├── libPng.tbd │ │ ├── libRadiance.tbd │ │ └── libTIFF.tbd ├── Kernel.framework │ ├── Headers │ │ └── IOKit │ │ │ └── hidsystem │ │ │ ├── IOHIDDescriptorParser.h │ │ │ ├── IOHIDParameter.h │ │ │ ├── IOHIDShared.h │ │ │ ├── IOHIDSystem.h │ │ │ ├── IOHIDTypes.h │ │ │ ├── IOHIDUsageTables.h │ │ │ ├── IOHIDWorkLoop.h │ │ │ ├── IOHIDevice.h │ │ │ ├── IOHIKeyboard.h │ │ │ ├── IOHIKeyboardMapper.h │ │ │ ├── IOHIPointing.h │ │ │ ├── IOLLEvent.h │ │ │ └── ev_keymap.h │ └── Versions │ │ └── Current │ │ └── Headers │ │ └── IOKit │ │ └── hidsystem │ │ ├── IOHIDDescriptorParser.h │ │ ├── IOHIDParameter.h │ │ ├── IOHIDShared.h │ │ ├── IOHIDSystem.h │ │ ├── IOHIDTypes.h │ │ ├── IOHIDUsageTables.h │ │ ├── IOHIDWorkLoop.h │ │ ├── IOHIDevice.h │ │ ├── IOHIKeyboard.h │ │ ├── IOHIKeyboardMapper.h │ │ ├── IOHIPointing.h │ │ ├── IOLLEvent.h │ │ └── ev_keymap.h ├── Metal.framework │ ├── Headers │ │ ├── MTLAccelerationStructure.h │ │ ├── MTLAccelerationStructureCommandEncoder.h │ │ ├── MTLAccelerationStructureTypes.h │ │ ├── MTLArgument.h │ │ ├── MTLArgumentEncoder.h │ │ ├── MTLBinaryArchive.h │ │ ├── MTLBlitCommandEncoder.h │ │ ├── MTLBlitPass.h │ │ ├── MTLBuffer.h │ │ ├── MTLCaptureManager.h │ │ ├── MTLCaptureScope.h │ │ ├── MTLCommandBuffer.h │ │ ├── MTLCommandEncoder.h │ │ ├── MTLCommandQueue.h │ │ ├── MTLComputeCommandEncoder.h │ │ ├── MTLComputePass.h │ │ ├── MTLComputePipeline.h │ │ ├── MTLCounters.h │ │ ├── MTLDefines.h │ │ ├── MTLDepthStencil.h │ │ ├── MTLDevice.h │ │ ├── MTLDrawable.h │ │ ├── MTLDynamicLibrary.h │ │ ├── MTLEvent.h │ │ ├── MTLFence.h │ │ ├── MTLFunctionConstantValues.h │ │ ├── MTLFunctionDescriptor.h │ │ ├── MTLFunctionHandle.h │ │ ├── MTLFunctionLog.h │ │ ├── MTLFunctionStitching.h │ │ ├── MTLHeap.h │ │ ├── MTLIOCommandBuffer.h │ │ ├── MTLIOCommandQueue.h │ │ ├── MTLIOCompressor.h │ │ ├── MTLIndirectCommandBuffer.h │ │ ├── MTLIndirectCommandEncoder.h │ │ ├── MTLIntersectionFunctionTable.h │ │ ├── MTLLibrary.h │ │ ├── MTLLinkedFunctions.h │ │ ├── MTLParallelRenderCommandEncoder.h │ │ ├── MTLPipeline.h │ │ ├── MTLPixelFormat.h │ │ ├── MTLRasterizationRate.h │ │ ├── MTLRenderCommandEncoder.h │ │ ├── MTLRenderPass.h │ │ ├── MTLRenderPipeline.h │ │ ├── MTLResource.h │ │ ├── MTLResourceStateCommandEncoder.h │ │ ├── MTLResourceStatePass.h │ │ ├── MTLSampler.h │ │ ├── MTLStageInputOutputDescriptor.h │ │ ├── MTLTexture.h │ │ ├── MTLTypes.h │ │ ├── MTLVertexDescriptor.h │ │ ├── MTLVisibleFunctionTable.h │ │ └── Metal.h │ ├── Metal.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── MTLAccelerationStructure.h │ │ ├── MTLAccelerationStructureCommandEncoder.h │ │ ├── MTLAccelerationStructureTypes.h │ │ ├── MTLArgument.h │ │ ├── MTLArgumentEncoder.h │ │ ├── MTLBinaryArchive.h │ │ ├── MTLBlitCommandEncoder.h │ │ ├── MTLBlitPass.h │ │ ├── MTLBuffer.h │ │ ├── MTLCaptureManager.h │ │ ├── MTLCaptureScope.h │ │ ├── MTLCommandBuffer.h │ │ ├── MTLCommandEncoder.h │ │ ├── MTLCommandQueue.h │ │ ├── MTLComputeCommandEncoder.h │ │ ├── MTLComputePass.h │ │ ├── MTLComputePipeline.h │ │ ├── MTLCounters.h │ │ ├── MTLDefines.h │ │ ├── MTLDepthStencil.h │ │ ├── MTLDevice.h │ │ ├── MTLDrawable.h │ │ ├── MTLDynamicLibrary.h │ │ ├── MTLEvent.h │ │ ├── MTLFence.h │ │ ├── MTLFunctionConstantValues.h │ │ ├── MTLFunctionDescriptor.h │ │ ├── MTLFunctionHandle.h │ │ ├── MTLFunctionLog.h │ │ ├── MTLFunctionStitching.h │ │ ├── MTLHeap.h │ │ ├── MTLIOCommandBuffer.h │ │ ├── MTLIOCommandQueue.h │ │ ├── MTLIOCompressor.h │ │ ├── MTLIndirectCommandBuffer.h │ │ ├── MTLIndirectCommandEncoder.h │ │ ├── MTLIntersectionFunctionTable.h │ │ ├── MTLLibrary.h │ │ ├── MTLLinkedFunctions.h │ │ ├── MTLParallelRenderCommandEncoder.h │ │ ├── MTLPipeline.h │ │ ├── MTLPixelFormat.h │ │ ├── MTLRasterizationRate.h │ │ ├── MTLRenderCommandEncoder.h │ │ ├── MTLRenderPass.h │ │ ├── MTLRenderPipeline.h │ │ ├── MTLResource.h │ │ ├── MTLResourceStateCommandEncoder.h │ │ ├── MTLResourceStatePass.h │ │ ├── MTLSampler.h │ │ ├── MTLStageInputOutputDescriptor.h │ │ ├── MTLTexture.h │ │ ├── MTLTypes.h │ │ ├── MTLVertexDescriptor.h │ │ ├── MTLVisibleFunctionTable.h │ │ └── Metal.h │ │ └── Metal.tbd ├── MetalKit.framework │ ├── Headers │ │ ├── MTKDefines.h │ │ ├── MTKModel.h │ │ ├── MTKTextureLoader.h │ │ ├── MTKView.h │ │ └── MetalKit.h │ ├── MetalKit.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── MTKDefines.h │ │ ├── MTKModel.h │ │ ├── MTKTextureLoader.h │ │ ├── MTKView.h │ │ └── MetalKit.h │ │ └── MetalKit.tbd ├── OpenGL.framework │ ├── Headers │ │ ├── CGLContext.h │ │ ├── CGLCurrent.h │ │ ├── CGLDevice.h │ │ ├── CGLIOSurface.h │ │ ├── CGLMacro.h │ │ ├── CGLRenderers.h │ │ ├── CGLTypes.h │ │ ├── OpenGL.h │ │ ├── OpenGLAvailability.h │ │ ├── gl.h │ │ ├── gl3.h │ │ ├── gl3ext.h │ │ ├── glext.h │ │ ├── gliContext.h │ │ ├── gliDispatch.h │ │ ├── gltypes.h │ │ ├── glu.h │ │ ├── gluContext.h │ │ └── gluMacro.h │ ├── OpenGL.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── CGLContext.h │ │ ├── CGLCurrent.h │ │ ├── CGLDevice.h │ │ ├── CGLIOSurface.h │ │ ├── CGLMacro.h │ │ ├── CGLRenderers.h │ │ ├── CGLTypes.h │ │ ├── OpenGL.h │ │ ├── OpenGLAvailability.h │ │ ├── gl.h │ │ ├── gl3.h │ │ ├── gl3ext.h │ │ ├── glext.h │ │ ├── gliContext.h │ │ ├── gliDispatch.h │ │ ├── gltypes.h │ │ ├── glu.h │ │ ├── gluContext.h │ │ └── gluMacro.h │ │ ├── Libraries │ │ ├── 3600 │ │ │ └── libCoreVMClient.mono.tbd │ │ ├── 3425AMD │ │ │ └── libCoreVMClient.mono.tbd │ │ ├── libCVMSPluginSupport.tbd │ │ ├── libCoreFSCache.tbd │ │ ├── libCoreVMClient.mono.tbd │ │ ├── libCoreVMClient.tbd │ │ ├── libGFXShared.tbd │ │ ├── libGL.tbd │ │ ├── libGLImage.tbd │ │ ├── libGLProgrammability.tbd │ │ ├── libGLU.tbd │ │ ├── libGLVMPlugin.tbd │ │ └── libGLVMPlugin32023.tbd │ │ └── OpenGL.tbd ├── QuartzCore.framework │ ├── Headers │ │ ├── CAAnimation.h │ │ ├── CABase.h │ │ ├── CAConstraintLayoutManager.h │ │ ├── CADisplayLink.h │ │ ├── CAEDRMetadata.h │ │ ├── CAEmitterCell.h │ │ ├── CAEmitterLayer.h │ │ ├── CAFrameRateRange.h │ │ ├── CAGradientLayer.h │ │ ├── CALayer.h │ │ ├── CAMediaTiming.h │ │ ├── CAMediaTimingFunction.h │ │ ├── CAMetalDisplayLink.h │ │ ├── CAMetalLayer.h │ │ ├── CAOpenGLLayer.h │ │ ├── CARemoteLayerClient.h │ │ ├── CARemoteLayerServer.h │ │ ├── CARenderer.h │ │ ├── CAReplicatorLayer.h │ │ ├── CAScrollLayer.h │ │ ├── CAShapeLayer.h │ │ ├── CATextLayer.h │ │ ├── CATiledLayer.h │ │ ├── CATransaction.h │ │ ├── CATransform3D.h │ │ ├── CATransformLayer.h │ │ ├── CAValueFunction.h │ │ ├── CIColor.h │ │ ├── CIContext.h │ │ ├── CIFilter.h │ │ ├── CIFilterGenerator.h │ │ ├── CIFilterShape.h │ │ ├── CIImage.h │ │ ├── CIImageAccumulator.h │ │ ├── CIImageProvider.h │ │ ├── CIKernel.h │ │ ├── CIPlugIn.h │ │ ├── CIPlugInInterface.h │ │ ├── CIRAWFilter.h │ │ ├── CISampler.h │ │ ├── CIVector.h │ │ ├── CVBase.h │ │ ├── CVBuffer.h │ │ ├── CVDisplayLink.h │ │ ├── CVHostTime.h │ │ ├── CVImageBuffer.h │ │ ├── CVOpenGLBuffer.h │ │ ├── CVOpenGLBufferPool.h │ │ ├── CVOpenGLTexture.h │ │ ├── CVOpenGLTextureCache.h │ │ ├── CVPixelBuffer.h │ │ ├── CVPixelBufferPool.h │ │ ├── CVPixelFormatDescription.h │ │ ├── CVReturn.h │ │ ├── CoreAnimation.h │ │ ├── CoreImage.h │ │ ├── CoreVideo.h │ │ └── QuartzCore.h │ ├── QuartzCore.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── CAAnimation.h │ │ ├── CABase.h │ │ ├── CAConstraintLayoutManager.h │ │ ├── CADisplayLink.h │ │ ├── CAEDRMetadata.h │ │ ├── CAEmitterCell.h │ │ ├── CAEmitterLayer.h │ │ ├── CAFrameRateRange.h │ │ ├── CAGradientLayer.h │ │ ├── CALayer.h │ │ ├── CAMediaTiming.h │ │ ├── CAMediaTimingFunction.h │ │ ├── CAMetalDisplayLink.h │ │ ├── CAMetalLayer.h │ │ ├── CAOpenGLLayer.h │ │ ├── CARemoteLayerClient.h │ │ ├── CARemoteLayerServer.h │ │ ├── CARenderer.h │ │ ├── CAReplicatorLayer.h │ │ ├── CAScrollLayer.h │ │ ├── CAShapeLayer.h │ │ ├── CATextLayer.h │ │ ├── CATiledLayer.h │ │ ├── CATransaction.h │ │ ├── CATransform3D.h │ │ ├── CATransformLayer.h │ │ ├── CAValueFunction.h │ │ ├── CIColor.h │ │ ├── CIContext.h │ │ ├── CIFilter.h │ │ ├── CIFilterGenerator.h │ │ ├── CIFilterShape.h │ │ ├── CIImage.h │ │ ├── CIImageAccumulator.h │ │ ├── CIImageProvider.h │ │ ├── CIKernel.h │ │ ├── CIPlugIn.h │ │ ├── CIPlugInInterface.h │ │ ├── CIRAWFilter.h │ │ ├── CISampler.h │ │ ├── CIVector.h │ │ ├── CVBase.h │ │ ├── CVBuffer.h │ │ ├── CVDisplayLink.h │ │ ├── CVHostTime.h │ │ ├── CVImageBuffer.h │ │ ├── CVOpenGLBuffer.h │ │ ├── CVOpenGLBufferPool.h │ │ ├── CVOpenGLTexture.h │ │ ├── CVOpenGLTextureCache.h │ │ ├── CVPixelBuffer.h │ │ ├── CVPixelBufferPool.h │ │ ├── CVPixelFormatDescription.h │ │ ├── CVReturn.h │ │ ├── CoreAnimation.h │ │ ├── CoreImage.h │ │ ├── CoreVideo.h │ │ └── QuartzCore.h │ │ └── QuartzCore.tbd ├── Security.framework │ ├── Headers │ │ ├── AuthSession.h │ │ ├── Authorization.h │ │ ├── AuthorizationDB.h │ │ ├── AuthorizationPlugin.h │ │ ├── AuthorizationTags.h │ │ ├── CMSDecoder.h │ │ ├── CMSEncoder.h │ │ ├── CSCommon.h │ │ ├── CipherSuite.h │ │ ├── CodeSigning.h │ │ ├── SecACL.h │ │ ├── SecAccess.h │ │ ├── SecAccessControl.h │ │ ├── SecAsn1Coder.h │ │ ├── SecAsn1Templates.h │ │ ├── SecAsn1Types.h │ │ ├── SecBase.h │ │ ├── SecCertificate.h │ │ ├── SecCertificateOIDs.h │ │ ├── SecCode.h │ │ ├── SecCodeHost.h │ │ ├── SecCustomTransform.h │ │ ├── SecDecodeTransform.h │ │ ├── SecDigestTransform.h │ │ ├── SecEncodeTransform.h │ │ ├── SecEncryptTransform.h │ │ ├── SecIdentity.h │ │ ├── SecIdentitySearch.h │ │ ├── SecImportExport.h │ │ ├── SecItem.h │ │ ├── SecKey.h │ │ ├── SecKeychain.h │ │ ├── SecKeychainItem.h │ │ ├── SecKeychainSearch.h │ │ ├── SecPolicy.h │ │ ├── SecPolicySearch.h │ │ ├── SecProtocolMetadata.h │ │ ├── SecProtocolObject.h │ │ ├── SecProtocolOptions.h │ │ ├── SecProtocolTypes.h │ │ ├── SecRandom.h │ │ ├── SecReadTransform.h │ │ ├── SecRequirement.h │ │ ├── SecSharedCredential.h │ │ ├── SecSignVerifyTransform.h │ │ ├── SecStaticCode.h │ │ ├── SecTask.h │ │ ├── SecTransform.h │ │ ├── SecTransformReadTransform.h │ │ ├── SecTrust.h │ │ ├── SecTrustSettings.h │ │ ├── SecTrustedApplication.h │ │ ├── SecureDownload.h │ │ ├── SecureTransport.h │ │ ├── Security.h │ │ ├── certextensions.h │ │ ├── cssm.h │ │ ├── cssmaci.h │ │ ├── cssmapi.h │ │ ├── cssmapple.h │ │ ├── cssmcli.h │ │ ├── cssmconfig.h │ │ ├── cssmcspi.h │ │ ├── cssmdli.h │ │ ├── cssmerr.h │ │ ├── cssmkrapi.h │ │ ├── cssmkrspi.h │ │ ├── cssmspi.h │ │ ├── cssmtpi.h │ │ ├── cssmtype.h │ │ ├── eisl.h │ │ ├── emmspi.h │ │ ├── emmtype.h │ │ ├── mds.h │ │ ├── mds_schema.h │ │ ├── oids.h │ │ ├── oidsalg.h │ │ ├── oidsattr.h │ │ ├── oidsbase.h │ │ ├── oidscert.h │ │ ├── oidscrl.h │ │ └── x509defs.h │ ├── Security.tbd │ └── Versions │ │ └── Current │ │ ├── Headers │ │ ├── AuthSession.h │ │ ├── Authorization.h │ │ ├── AuthorizationDB.h │ │ ├── AuthorizationPlugin.h │ │ ├── AuthorizationTags.h │ │ ├── CMSDecoder.h │ │ ├── CMSEncoder.h │ │ ├── CSCommon.h │ │ ├── CipherSuite.h │ │ ├── CodeSigning.h │ │ ├── SecACL.h │ │ ├── SecAccess.h │ │ ├── SecAccessControl.h │ │ ├── SecAsn1Coder.h │ │ ├── SecAsn1Templates.h │ │ ├── SecAsn1Types.h │ │ ├── SecBase.h │ │ ├── SecCertificate.h │ │ ├── SecCertificateOIDs.h │ │ ├── SecCode.h │ │ ├── SecCodeHost.h │ │ ├── SecCustomTransform.h │ │ ├── SecDecodeTransform.h │ │ ├── SecDigestTransform.h │ │ ├── SecEncodeTransform.h │ │ ├── SecEncryptTransform.h │ │ ├── SecIdentity.h │ │ ├── SecIdentitySearch.h │ │ ├── SecImportExport.h │ │ ├── SecItem.h │ │ ├── SecKey.h │ │ ├── SecKeychain.h │ │ ├── SecKeychainItem.h │ │ ├── SecKeychainSearch.h │ │ ├── SecPolicy.h │ │ ├── SecPolicySearch.h │ │ ├── SecProtocolMetadata.h │ │ ├── SecProtocolObject.h │ │ ├── SecProtocolOptions.h │ │ ├── SecProtocolTypes.h │ │ ├── SecRandom.h │ │ ├── SecReadTransform.h │ │ ├── SecRequirement.h │ │ ├── SecSharedCredential.h │ │ ├── SecSignVerifyTransform.h │ │ ├── SecStaticCode.h │ │ ├── SecTask.h │ │ ├── SecTransform.h │ │ ├── SecTransformReadTransform.h │ │ ├── SecTrust.h │ │ ├── SecTrustSettings.h │ │ ├── SecTrustedApplication.h │ │ ├── SecureDownload.h │ │ ├── SecureTransport.h │ │ ├── Security.h │ │ ├── certextensions.h │ │ ├── cssm.h │ │ ├── cssmaci.h │ │ ├── cssmapi.h │ │ ├── cssmapple.h │ │ ├── cssmcli.h │ │ ├── cssmconfig.h │ │ ├── cssmcspi.h │ │ ├── cssmdli.h │ │ ├── cssmerr.h │ │ ├── cssmkrapi.h │ │ ├── cssmkrspi.h │ │ ├── cssmspi.h │ │ ├── cssmtpi.h │ │ ├── cssmtype.h │ │ ├── eisl.h │ │ ├── emmspi.h │ │ ├── emmtype.h │ │ ├── mds.h │ │ ├── mds_schema.h │ │ ├── oids.h │ │ ├── oidsalg.h │ │ ├── oidsattr.h │ │ ├── oidsbase.h │ │ ├── oidscert.h │ │ ├── oidscrl.h │ │ └── x509defs.h │ │ └── Security.tbd └── Symbols.framework │ ├── Headers │ ├── NSSymbolEffect.h │ └── Symbols.h │ ├── Symbols.tbd │ └── Versions │ └── Current │ ├── Headers │ ├── NSSymbolEffect.h │ └── Symbols.h │ └── Symbols.tbd ├── LICENSE ├── README.md ├── include ├── AppleArchive │ ├── AAArchiveStream.h │ ├── AAByteStream.h │ ├── AACustomArchiveStream.h │ ├── AACustomByteStream.h │ ├── AADefs.h │ ├── AAEntryACLBlob.h │ ├── AAEntryAttributes.h │ ├── AAEntryMessage.h │ ├── AAEntryXATBlob.h │ ├── AAFieldKeys.h │ ├── AAFlagSet.h │ ├── AAHeader.h │ ├── AAPathList.h │ ├── AEAAuthData.h │ ├── AEAContext.h │ ├── AEADefs.h │ ├── AEAStreams.h │ ├── AppleArchive.h │ └── AppleEncryptedArchive.h ├── AppleEXR.h ├── AppleTextureEncoder.h ├── AssertMacros.h ├── Availability.h ├── AvailabilityInternal.h ├── AvailabilityInternalLegacy.h ├── AvailabilityMacros.h ├── AvailabilityVersions.h ├── Block.h ├── CMakeLists.txt ├── CommonCrypto │ ├── CommonCrypto.h │ ├── CommonCryptoError.h │ ├── CommonCryptor.h │ ├── CommonDigest.h │ ├── CommonHMAC.h │ ├── CommonKeyDerivation.h │ ├── CommonRandom.h │ └── CommonSymmetricKeywrap.h ├── ConditionalMacros.h ├── EndpointSecurity │ ├── ESClient.h │ ├── ESMessage.h │ ├── ESTypes.h │ └── EndpointSecurity.h ├── MacTypes.h ├── NSSystemDirectories.h ├── Spatial │ ├── Base.h │ ├── SPAffineTransform3D.h │ ├── SPAngle.h │ ├── SPPoint3D.h │ ├── SPPose3D.h │ ├── SPProjectiveTransform3D.h │ ├── SPRay3D.h │ ├── SPRect3D.h │ ├── SPRotation3D.h │ ├── SPRotationAxis3D.h │ ├── SPSize3D.h │ ├── SPVector3D.h │ ├── Spatial.h │ └── Structures.h ├── TargetConditionals.h ├── Xplugin.h ├── __libunwind_config.h ├── __wctype.h ├── _ctermid.h ├── _ctype.h ├── _locale.h ├── _regex.h ├── _stdio.h ├── _types.h ├── _types │ ├── _intmax_t.h │ ├── _nl_item.h │ ├── _uint16_t.h │ ├── _uint32_t.h │ ├── _uint64_t.h │ ├── _uint8_t.h │ ├── _uintmax_t.h │ ├── _wctrans_t.h │ └── _wctype_t.h ├── _wctype.h ├── _xlocale.h ├── aio.h ├── aliasdb.h ├── alloca.h ├── apr-1 │ ├── apr.h │ ├── apr_allocator.h │ ├── apr_anylock.h │ ├── apr_atomic.h │ ├── apr_base64.h │ ├── apr_buckets.h │ ├── apr_crypto.h │ ├── apr_date.h │ ├── apr_dbd.h │ ├── apr_dbm.h │ ├── apr_dso.h │ ├── apr_env.h │ ├── apr_errno.h │ ├── apr_escape.h │ ├── apr_file_info.h │ ├── apr_file_io.h │ ├── apr_fnmatch.h │ ├── apr_general.h │ ├── apr_getopt.h │ ├── apr_global_mutex.h │ ├── apr_hash.h │ ├── apr_hooks.h │ ├── apr_inherit.h │ ├── apr_ldap.h │ ├── apr_ldap_init.h │ ├── apr_ldap_option.h │ ├── apr_ldap_rebind.h │ ├── apr_ldap_url.h │ ├── apr_lib.h │ ├── apr_md4.h │ ├── apr_md5.h │ ├── apr_memcache.h │ ├── apr_mmap.h │ ├── apr_network_io.h │ ├── apr_optional.h │ ├── apr_optional_hooks.h │ ├── apr_poll.h │ ├── apr_pools.h │ ├── apr_portable.h │ ├── apr_proc_mutex.h │ ├── apr_queue.h │ ├── apr_random.h │ ├── apr_reslist.h │ ├── apr_ring.h │ ├── apr_rmm.h │ ├── apr_sdbm.h │ ├── apr_sha1.h │ ├── apr_shm.h │ ├── apr_signal.h │ ├── apr_skiplist.h │ ├── apr_strings.h │ ├── apr_strmatch.h │ ├── apr_support.h │ ├── apr_tables.h │ ├── apr_thread_cond.h │ ├── apr_thread_mutex.h │ ├── apr_thread_pool.h │ ├── apr_thread_proc.h │ ├── apr_thread_rwlock.h │ ├── apr_time.h │ ├── apr_uri.h │ ├── apr_user.h │ ├── apr_uuid.h │ ├── apr_version.h │ ├── apr_want.h │ ├── apr_xlate.h │ ├── apr_xml.h │ ├── apu.h │ ├── apu_errno.h │ ├── apu_version.h │ └── apu_want.h ├── ar.h ├── architecture │ ├── alignment.h │ ├── arm │ │ ├── asm_help.h │ │ ├── byte_order.h │ │ ├── cframe.h │ │ └── reg_help.h │ ├── byte_order.h │ └── i386 │ │ ├── alignment.h │ │ ├── asm_help.h │ │ ├── byte_order.h │ │ ├── cpu.h │ │ ├── desc.h │ │ ├── fpu.h │ │ ├── frame.h │ │ ├── io.h │ │ ├── pio.h │ │ ├── reg_help.h │ │ ├── sel.h │ │ ├── table.h │ │ └── tss.h ├── arm │ ├── _limits.h │ ├── _mcontext.h │ ├── _param.h │ ├── _types.h │ ├── arch.h │ ├── endian.h │ ├── fasttrap_isa.h │ ├── limits.h │ ├── param.h │ ├── profile.h │ ├── signal.h │ ├── types.h │ └── vmparam.h ├── arm64 │ └── hv │ │ └── hv_kern_types.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── telnet.h │ └── tftp.h ├── asl.h ├── assert.h ├── atm │ └── atm_types.h ├── bank │ └── bank_types.h ├── bitstring.h ├── bootparams.h ├── bootstrap.h ├── bsm │ ├── audit.h │ ├── audit_domain.h │ ├── audit_errno.h │ ├── audit_fcntl.h │ ├── audit_filter.h │ ├── audit_internal.h │ ├── audit_kevents.h │ ├── audit_record.h │ ├── audit_session.h │ ├── audit_socket_type.h │ ├── audit_uevents.h │ └── libbsm.h ├── bzlib.h ├── c++ │ └── v1 │ │ ├── __algorithm │ │ ├── adjacent_find.h │ │ ├── all_of.h │ │ ├── any_of.h │ │ ├── binary_search.h │ │ ├── clamp.h │ │ ├── comp.h │ │ ├── comp_ref_type.h │ │ ├── copy.h │ │ ├── copy_backward.h │ │ ├── copy_if.h │ │ ├── copy_move_common.h │ │ ├── copy_n.h │ │ ├── count.h │ │ ├── count_if.h │ │ ├── equal.h │ │ ├── equal_range.h │ │ ├── fill.h │ │ ├── fill_n.h │ │ ├── find.h │ │ ├── find_end.h │ │ ├── find_first_of.h │ │ ├── find_if.h │ │ ├── find_if_not.h │ │ ├── for_each.h │ │ ├── for_each_n.h │ │ ├── generate.h │ │ ├── generate_n.h │ │ ├── half_positive.h │ │ ├── in_found_result.h │ │ ├── in_fun_result.h │ │ ├── in_in_out_result.h │ │ ├── in_in_result.h │ │ ├── in_out_out_result.h │ │ ├── in_out_result.h │ │ ├── includes.h │ │ ├── inplace_merge.h │ │ ├── is_heap.h │ │ ├── is_heap_until.h │ │ ├── is_partitioned.h │ │ ├── is_permutation.h │ │ ├── is_sorted.h │ │ ├── is_sorted_until.h │ │ ├── iter_swap.h │ │ ├── iterator_operations.h │ │ ├── lexicographical_compare.h │ │ ├── lower_bound.h │ │ ├── make_heap.h │ │ ├── make_projected.h │ │ ├── max.h │ │ ├── max_element.h │ │ ├── merge.h │ │ ├── min.h │ │ ├── min_element.h │ │ ├── min_max_result.h │ │ ├── minmax.h │ │ ├── minmax_element.h │ │ ├── mismatch.h │ │ ├── move.h │ │ ├── move_backward.h │ │ ├── next_permutation.h │ │ ├── none_of.h │ │ ├── nth_element.h │ │ ├── partial_sort.h │ │ ├── partial_sort_copy.h │ │ ├── partition.h │ │ ├── partition_copy.h │ │ ├── partition_point.h │ │ ├── pop_heap.h │ │ ├── prev_permutation.h │ │ ├── push_heap.h │ │ ├── ranges_adjacent_find.h │ │ ├── ranges_all_of.h │ │ ├── ranges_any_of.h │ │ ├── ranges_binary_search.h │ │ ├── ranges_clamp.h │ │ ├── ranges_copy.h │ │ ├── ranges_copy_backward.h │ │ ├── ranges_copy_if.h │ │ ├── ranges_copy_n.h │ │ ├── ranges_count.h │ │ ├── ranges_count_if.h │ │ ├── ranges_equal.h │ │ ├── ranges_equal_range.h │ │ ├── ranges_fill.h │ │ ├── ranges_fill_n.h │ │ ├── ranges_find.h │ │ ├── ranges_find_end.h │ │ ├── ranges_find_first_of.h │ │ ├── ranges_find_if.h │ │ ├── ranges_find_if_not.h │ │ ├── ranges_for_each.h │ │ ├── ranges_for_each_n.h │ │ ├── ranges_generate.h │ │ ├── ranges_generate_n.h │ │ ├── ranges_includes.h │ │ ├── ranges_inplace_merge.h │ │ ├── ranges_is_heap.h │ │ ├── ranges_is_heap_until.h │ │ ├── ranges_is_partitioned.h │ │ ├── ranges_is_permutation.h │ │ ├── ranges_is_sorted.h │ │ ├── ranges_is_sorted_until.h │ │ ├── ranges_iterator_concept.h │ │ ├── ranges_lexicographical_compare.h │ │ ├── ranges_lower_bound.h │ │ ├── ranges_make_heap.h │ │ ├── ranges_max.h │ │ ├── ranges_max_element.h │ │ ├── ranges_merge.h │ │ ├── ranges_min.h │ │ ├── ranges_min_element.h │ │ ├── ranges_minmax.h │ │ ├── ranges_minmax_element.h │ │ ├── ranges_mismatch.h │ │ ├── ranges_move.h │ │ ├── ranges_move_backward.h │ │ ├── ranges_next_permutation.h │ │ ├── ranges_none_of.h │ │ ├── ranges_nth_element.h │ │ ├── ranges_partial_sort.h │ │ ├── ranges_partial_sort_copy.h │ │ ├── ranges_partition.h │ │ ├── ranges_partition_copy.h │ │ ├── ranges_partition_point.h │ │ ├── ranges_pop_heap.h │ │ ├── ranges_prev_permutation.h │ │ ├── ranges_push_heap.h │ │ ├── ranges_remove.h │ │ ├── ranges_remove_copy.h │ │ ├── ranges_remove_copy_if.h │ │ ├── ranges_remove_if.h │ │ ├── ranges_replace.h │ │ ├── ranges_replace_copy.h │ │ ├── ranges_replace_copy_if.h │ │ ├── ranges_replace_if.h │ │ ├── ranges_reverse.h │ │ ├── ranges_reverse_copy.h │ │ ├── ranges_rotate.h │ │ ├── ranges_rotate_copy.h │ │ ├── ranges_sample.h │ │ ├── ranges_search.h │ │ ├── ranges_search_n.h │ │ ├── ranges_set_difference.h │ │ ├── ranges_set_intersection.h │ │ ├── ranges_set_symmetric_difference.h │ │ ├── ranges_set_union.h │ │ ├── ranges_shuffle.h │ │ ├── ranges_sort.h │ │ ├── ranges_sort_heap.h │ │ ├── ranges_stable_partition.h │ │ ├── ranges_stable_sort.h │ │ ├── ranges_swap_ranges.h │ │ ├── ranges_transform.h │ │ ├── ranges_unique.h │ │ ├── ranges_unique_copy.h │ │ ├── ranges_upper_bound.h │ │ ├── remove.h │ │ ├── remove_copy.h │ │ ├── remove_copy_if.h │ │ ├── remove_if.h │ │ ├── replace.h │ │ ├── replace_copy.h │ │ ├── replace_copy_if.h │ │ ├── replace_if.h │ │ ├── reverse.h │ │ ├── reverse_copy.h │ │ ├── rotate.h │ │ ├── rotate_copy.h │ │ ├── sample.h │ │ ├── search.h │ │ ├── search_n.h │ │ ├── set_difference.h │ │ ├── set_intersection.h │ │ ├── set_symmetric_difference.h │ │ ├── set_union.h │ │ ├── shift_left.h │ │ ├── shift_right.h │ │ ├── shuffle.h │ │ ├── sift_down.h │ │ ├── sort.h │ │ ├── sort_heap.h │ │ ├── stable_partition.h │ │ ├── stable_sort.h │ │ ├── swap_ranges.h │ │ ├── transform.h │ │ ├── uniform_random_bit_generator_adaptor.h │ │ ├── unique.h │ │ ├── unique_copy.h │ │ ├── unwrap_iter.h │ │ ├── unwrap_range.h │ │ └── upper_bound.h │ │ ├── __assert │ │ ├── __availability │ │ ├── __bit │ │ ├── bit_cast.h │ │ ├── bit_ceil.h │ │ ├── bit_floor.h │ │ ├── bit_log2.h │ │ ├── bit_width.h │ │ ├── blsr.h │ │ ├── byteswap.h │ │ ├── countl.h │ │ ├── countr.h │ │ ├── endian.h │ │ ├── has_single_bit.h │ │ ├── popcount.h │ │ └── rotate.h │ │ ├── __bit_reference │ │ ├── __bsd_locale_defaults.h │ │ ├── __bsd_locale_fallbacks.h │ │ ├── __charconv │ │ ├── chars_format.h │ │ ├── from_chars_result.h │ │ ├── tables.h │ │ ├── to_chars_base_10.h │ │ └── to_chars_result.h │ │ ├── __chrono │ │ ├── calendar.h │ │ ├── convert_to_timespec.h │ │ ├── convert_to_tm.h │ │ ├── day.h │ │ ├── duration.h │ │ ├── file_clock.h │ │ ├── formatter.h │ │ ├── hh_mm_ss.h │ │ ├── high_resolution_clock.h │ │ ├── literals.h │ │ ├── month.h │ │ ├── month_weekday.h │ │ ├── monthday.h │ │ ├── ostream.h │ │ ├── parser_std_format_spec.h │ │ ├── statically_widen.h │ │ ├── steady_clock.h │ │ ├── system_clock.h │ │ ├── time_point.h │ │ ├── weekday.h │ │ ├── year.h │ │ ├── year_month.h │ │ ├── year_month_day.h │ │ └── year_month_weekday.h │ │ ├── __compare │ │ ├── common_comparison_category.h │ │ ├── compare_partial_order_fallback.h │ │ ├── compare_strong_order_fallback.h │ │ ├── compare_three_way.h │ │ ├── compare_three_way_result.h │ │ ├── compare_weak_order_fallback.h │ │ ├── is_eq.h │ │ ├── ordering.h │ │ ├── partial_order.h │ │ ├── strong_order.h │ │ ├── synth_three_way.h │ │ ├── three_way_comparable.h │ │ └── weak_order.h │ │ ├── __concepts │ │ ├── arithmetic.h │ │ ├── assignable.h │ │ ├── boolean_testable.h │ │ ├── class_or_enum.h │ │ ├── common_reference_with.h │ │ ├── common_with.h │ │ ├── constructible.h │ │ ├── convertible_to.h │ │ ├── copyable.h │ │ ├── derived_from.h │ │ ├── destructible.h │ │ ├── different_from.h │ │ ├── equality_comparable.h │ │ ├── invocable.h │ │ ├── movable.h │ │ ├── predicate.h │ │ ├── regular.h │ │ ├── relation.h │ │ ├── same_as.h │ │ ├── semiregular.h │ │ ├── swappable.h │ │ └── totally_ordered.h │ │ ├── __config │ │ ├── __config_site │ │ ├── __coroutine │ │ ├── coroutine_handle.h │ │ ├── coroutine_traits.h │ │ ├── noop_coroutine_handle.h │ │ └── trivial_awaitables.h │ │ ├── __cxxabi_config.h │ │ ├── __debug │ │ ├── __debug_utils │ │ └── randomize_range.h │ │ ├── __errc │ │ ├── __expected │ │ ├── bad_expected_access.h │ │ ├── expected.h │ │ ├── unexpect.h │ │ └── unexpected.h │ │ ├── __filesystem │ │ ├── copy_options.h │ │ ├── directory_entry.h │ │ ├── directory_iterator.h │ │ ├── directory_options.h │ │ ├── file_status.h │ │ ├── file_time_type.h │ │ ├── file_type.h │ │ ├── filesystem_error.h │ │ ├── operations.h │ │ ├── path.h │ │ ├── path_iterator.h │ │ ├── perm_options.h │ │ ├── perms.h │ │ ├── recursive_directory_iterator.h │ │ ├── space_info.h │ │ └── u8path.h │ │ ├── __format │ │ ├── buffer.h │ │ ├── concepts.h │ │ ├── container_adaptor.h │ │ ├── enable_insertable.h │ │ ├── escaped_output_table.h │ │ ├── extended_grapheme_cluster_table.h │ │ ├── format_arg.h │ │ ├── format_arg_store.h │ │ ├── format_args.h │ │ ├── format_context.h │ │ ├── format_error.h │ │ ├── format_functions.h │ │ ├── format_fwd.h │ │ ├── format_parse_context.h │ │ ├── format_string.h │ │ ├── format_to_n_result.h │ │ ├── formatter.h │ │ ├── formatter_bool.h │ │ ├── formatter_char.h │ │ ├── formatter_floating_point.h │ │ ├── formatter_integer.h │ │ ├── formatter_integral.h │ │ ├── formatter_output.h │ │ ├── formatter_pointer.h │ │ ├── formatter_string.h │ │ ├── formatter_tuple.h │ │ ├── parser_std_format_spec.h │ │ ├── range_default_formatter.h │ │ ├── range_formatter.h │ │ └── unicode.h │ │ ├── __functional │ │ ├── binary_function.h │ │ ├── binary_negate.h │ │ ├── bind.h │ │ ├── bind_back.h │ │ ├── bind_front.h │ │ ├── binder1st.h │ │ ├── binder2nd.h │ │ ├── boyer_moore_searcher.h │ │ ├── compose.h │ │ ├── default_searcher.h │ │ ├── function.h │ │ ├── hash.h │ │ ├── identity.h │ │ ├── invoke.h │ │ ├── is_transparent.h │ │ ├── mem_fn.h │ │ ├── mem_fun_ref.h │ │ ├── not_fn.h │ │ ├── operations.h │ │ ├── perfect_forward.h │ │ ├── pointer_to_binary_function.h │ │ ├── pointer_to_unary_function.h │ │ ├── ranges_operations.h │ │ ├── reference_wrapper.h │ │ ├── unary_function.h │ │ ├── unary_negate.h │ │ ├── unwrap_ref.h │ │ └── weak_result_type.h │ │ ├── __fwd │ │ ├── array.h │ │ ├── get.h │ │ ├── hash.h │ │ ├── memory_resource.h │ │ ├── pair.h │ │ ├── span.h │ │ ├── string.h │ │ ├── string_view.h │ │ ├── subrange.h │ │ └── tuple.h │ │ ├── __hash_table │ │ ├── __ios │ │ └── fpos.h │ │ ├── __iterator │ │ ├── access.h │ │ ├── advance.h │ │ ├── back_insert_iterator.h │ │ ├── bounded_iter.h │ │ ├── common_iterator.h │ │ ├── concepts.h │ │ ├── counted_iterator.h │ │ ├── data.h │ │ ├── default_sentinel.h │ │ ├── distance.h │ │ ├── empty.h │ │ ├── erase_if_container.h │ │ ├── front_insert_iterator.h │ │ ├── incrementable_traits.h │ │ ├── indirectly_comparable.h │ │ ├── insert_iterator.h │ │ ├── istream_iterator.h │ │ ├── istreambuf_iterator.h │ │ ├── iter_move.h │ │ ├── iter_swap.h │ │ ├── iterator.h │ │ ├── iterator_traits.h │ │ ├── iterator_with_data.h │ │ ├── mergeable.h │ │ ├── move_iterator.h │ │ ├── move_sentinel.h │ │ ├── next.h │ │ ├── ostream_iterator.h │ │ ├── ostreambuf_iterator.h │ │ ├── permutable.h │ │ ├── prev.h │ │ ├── projected.h │ │ ├── readable_traits.h │ │ ├── reverse_access.h │ │ ├── reverse_iterator.h │ │ ├── segmented_iterator.h │ │ ├── size.h │ │ ├── sortable.h │ │ ├── unreachable_sentinel.h │ │ └── wrap_iter.h │ │ ├── __locale │ │ ├── __mbstate_t.h │ │ ├── __memory │ │ ├── addressof.h │ │ ├── align.h │ │ ├── allocate_at_least.h │ │ ├── allocation_guard.h │ │ ├── allocator.h │ │ ├── allocator_arg_t.h │ │ ├── allocator_destructor.h │ │ ├── allocator_traits.h │ │ ├── assume_aligned.h │ │ ├── auto_ptr.h │ │ ├── builtin_new_allocator.h │ │ ├── compressed_pair.h │ │ ├── concepts.h │ │ ├── construct_at.h │ │ ├── destruct_n.h │ │ ├── pointer_traits.h │ │ ├── ranges_construct_at.h │ │ ├── ranges_uninitialized_algorithms.h │ │ ├── raw_storage_iterator.h │ │ ├── shared_ptr.h │ │ ├── swap_allocator.h │ │ ├── temp_value.h │ │ ├── temporary_buffer.h │ │ ├── uninitialized_algorithms.h │ │ ├── unique_ptr.h │ │ ├── uses_allocator.h │ │ ├── uses_allocator_construction.h │ │ └── voidify.h │ │ ├── __memory_resource │ │ ├── memory_resource.h │ │ ├── monotonic_buffer_resource.h │ │ ├── polymorphic_allocator.h │ │ ├── pool_options.h │ │ ├── synchronized_pool_resource.h │ │ └── unsynchronized_pool_resource.h │ │ ├── __mutex_base │ │ ├── __node_handle │ │ ├── __numeric │ │ ├── accumulate.h │ │ ├── adjacent_difference.h │ │ ├── exclusive_scan.h │ │ ├── gcd_lcm.h │ │ ├── inclusive_scan.h │ │ ├── inner_product.h │ │ ├── iota.h │ │ ├── midpoint.h │ │ ├── partial_sum.h │ │ ├── reduce.h │ │ ├── transform_exclusive_scan.h │ │ ├── transform_inclusive_scan.h │ │ └── transform_reduce.h │ │ ├── __random │ │ ├── bernoulli_distribution.h │ │ ├── binomial_distribution.h │ │ ├── cauchy_distribution.h │ │ ├── chi_squared_distribution.h │ │ ├── clamp_to_integral.h │ │ ├── default_random_engine.h │ │ ├── discard_block_engine.h │ │ ├── discrete_distribution.h │ │ ├── exponential_distribution.h │ │ ├── extreme_value_distribution.h │ │ ├── fisher_f_distribution.h │ │ ├── gamma_distribution.h │ │ ├── generate_canonical.h │ │ ├── geometric_distribution.h │ │ ├── independent_bits_engine.h │ │ ├── is_seed_sequence.h │ │ ├── is_valid.h │ │ ├── knuth_b.h │ │ ├── linear_congruential_engine.h │ │ ├── log2.h │ │ ├── lognormal_distribution.h │ │ ├── mersenne_twister_engine.h │ │ ├── negative_binomial_distribution.h │ │ ├── normal_distribution.h │ │ ├── piecewise_constant_distribution.h │ │ ├── piecewise_linear_distribution.h │ │ ├── poisson_distribution.h │ │ ├── random_device.h │ │ ├── ranlux.h │ │ ├── seed_seq.h │ │ ├── shuffle_order_engine.h │ │ ├── student_t_distribution.h │ │ ├── subtract_with_carry_engine.h │ │ ├── uniform_int_distribution.h │ │ ├── uniform_random_bit_generator.h │ │ ├── uniform_real_distribution.h │ │ └── weibull_distribution.h │ │ ├── __ranges │ │ ├── access.h │ │ ├── all.h │ │ ├── as_rvalue_view.h │ │ ├── common_view.h │ │ ├── concepts.h │ │ ├── copyable_box.h │ │ ├── counted.h │ │ ├── dangling.h │ │ ├── data.h │ │ ├── drop_view.h │ │ ├── drop_while_view.h │ │ ├── elements_view.h │ │ ├── empty.h │ │ ├── empty_view.h │ │ ├── enable_borrowed_range.h │ │ ├── enable_view.h │ │ ├── filter_view.h │ │ ├── iota_view.h │ │ ├── istream_view.h │ │ ├── join_view.h │ │ ├── lazy_split_view.h │ │ ├── non_propagating_cache.h │ │ ├── owning_view.h │ │ ├── range_adaptor.h │ │ ├── rbegin.h │ │ ├── ref_view.h │ │ ├── rend.h │ │ ├── reverse_view.h │ │ ├── single_view.h │ │ ├── size.h │ │ ├── split_view.h │ │ ├── subrange.h │ │ ├── take_view.h │ │ ├── take_while_view.h │ │ ├── transform_view.h │ │ ├── view_interface.h │ │ ├── views.h │ │ └── zip_view.h │ │ ├── __split_buffer │ │ ├── __std_stream │ │ ├── __string │ │ ├── char_traits.h │ │ └── extern_template_lists.h │ │ ├── __support │ │ ├── android │ │ │ └── locale_bionic.h │ │ ├── fuchsia │ │ │ └── xlocale.h │ │ ├── ibm │ │ │ ├── gettod_zos.h │ │ │ ├── locale_mgmt_zos.h │ │ │ ├── nanosleep.h │ │ │ └── xlocale.h │ │ ├── musl │ │ │ └── xlocale.h │ │ ├── newlib │ │ │ └── xlocale.h │ │ ├── openbsd │ │ │ └── xlocale.h │ │ ├── sepos │ │ │ ├── locale_shims.h │ │ │ └── xlocale.h │ │ ├── solaris │ │ │ ├── floatingpoint.h │ │ │ ├── wchar.h │ │ │ └── xlocale.h │ │ ├── win32 │ │ │ └── locale_win32.h │ │ └── xlocale │ │ │ ├── __nop_locale_mgmt.h │ │ │ ├── __posix_l_fallback.h │ │ │ └── __strtonum_fallback.h │ │ ├── __thread │ │ ├── poll_with_backoff.h │ │ └── timed_backoff_policy.h │ │ ├── __threading_support │ │ ├── __tree │ │ ├── __tuple_dir │ │ ├── apply_cv.h │ │ ├── make_tuple_types.h │ │ ├── pair_like.h │ │ ├── sfinae_helpers.h │ │ ├── tuple_element.h │ │ ├── tuple_indices.h │ │ ├── tuple_like.h │ │ ├── tuple_like_ext.h │ │ ├── tuple_size.h │ │ └── tuple_types.h │ │ ├── __type_traits │ │ ├── add_const.h │ │ ├── add_cv.h │ │ ├── add_lvalue_reference.h │ │ ├── add_pointer.h │ │ ├── add_rvalue_reference.h │ │ ├── add_volatile.h │ │ ├── aligned_storage.h │ │ ├── aligned_union.h │ │ ├── alignment_of.h │ │ ├── apply_cv.h │ │ ├── can_extract_key.h │ │ ├── common_reference.h │ │ ├── common_type.h │ │ ├── conditional.h │ │ ├── conjunction.h │ │ ├── copy_cv.h │ │ ├── copy_cvref.h │ │ ├── decay.h │ │ ├── dependent_type.h │ │ ├── disjunction.h │ │ ├── enable_if.h │ │ ├── extent.h │ │ ├── has_unique_object_representation.h │ │ ├── has_virtual_destructor.h │ │ ├── integral_constant.h │ │ ├── is_abstract.h │ │ ├── is_aggregate.h │ │ ├── is_allocator.h │ │ ├── is_always_bitcastable.h │ │ ├── is_arithmetic.h │ │ ├── is_array.h │ │ ├── is_assignable.h │ │ ├── is_base_of.h │ │ ├── is_bounded_array.h │ │ ├── is_callable.h │ │ ├── is_char_like_type.h │ │ ├── is_class.h │ │ ├── is_compound.h │ │ ├── is_const.h │ │ ├── is_constant_evaluated.h │ │ ├── is_constructible.h │ │ ├── is_convertible.h │ │ ├── is_copy_assignable.h │ │ ├── is_copy_constructible.h │ │ ├── is_core_convertible.h │ │ ├── is_default_constructible.h │ │ ├── is_destructible.h │ │ ├── is_empty.h │ │ ├── is_enum.h │ │ ├── is_final.h │ │ ├── is_floating_point.h │ │ ├── is_function.h │ │ ├── is_fundamental.h │ │ ├── is_implicitly_default_constructible.h │ │ ├── is_integral.h │ │ ├── is_literal_type.h │ │ ├── is_member_function_pointer.h │ │ ├── is_member_object_pointer.h │ │ ├── is_member_pointer.h │ │ ├── is_move_assignable.h │ │ ├── is_move_constructible.h │ │ ├── is_nothrow_assignable.h │ │ ├── is_nothrow_constructible.h │ │ ├── is_nothrow_convertible.h │ │ ├── is_nothrow_copy_assignable.h │ │ ├── is_nothrow_copy_constructible.h │ │ ├── is_nothrow_default_constructible.h │ │ ├── is_nothrow_destructible.h │ │ ├── is_nothrow_move_assignable.h │ │ ├── is_nothrow_move_constructible.h │ │ ├── is_null_pointer.h │ │ ├── is_object.h │ │ ├── is_pod.h │ │ ├── is_pointer.h │ │ ├── is_polymorphic.h │ │ ├── is_primary_template.h │ │ ├── is_reference.h │ │ ├── is_reference_wrapper.h │ │ ├── is_referenceable.h │ │ ├── is_same.h │ │ ├── is_scalar.h │ │ ├── is_scoped_enum.h │ │ ├── is_signed.h │ │ ├── is_signed_integer.h │ │ ├── is_specialization.h │ │ ├── is_standard_layout.h │ │ ├── is_swappable.h │ │ ├── is_trivial.h │ │ ├── is_trivially_assignable.h │ │ ├── is_trivially_constructible.h │ │ ├── is_trivially_copy_assignable.h │ │ ├── is_trivially_copy_constructible.h │ │ ├── is_trivially_copyable.h │ │ ├── is_trivially_default_constructible.h │ │ ├── is_trivially_destructible.h │ │ ├── is_trivially_move_assignable.h │ │ ├── is_trivially_move_constructible.h │ │ ├── is_unbounded_array.h │ │ ├── is_union.h │ │ ├── is_unsigned.h │ │ ├── is_unsigned_integer.h │ │ ├── is_valid_expansion.h │ │ ├── is_void.h │ │ ├── is_volatile.h │ │ ├── lazy.h │ │ ├── make_32_64_or_128_bit.h │ │ ├── make_const_lvalue_ref.h │ │ ├── make_signed.h │ │ ├── make_unsigned.h │ │ ├── maybe_const.h │ │ ├── nat.h │ │ ├── negation.h │ │ ├── noexcept_move_assign_container.h │ │ ├── promote.h │ │ ├── rank.h │ │ ├── remove_all_extents.h │ │ ├── remove_const.h │ │ ├── remove_const_ref.h │ │ ├── remove_cv.h │ │ ├── remove_cvref.h │ │ ├── remove_extent.h │ │ ├── remove_pointer.h │ │ ├── remove_reference.h │ │ ├── remove_volatile.h │ │ ├── result_of.h │ │ ├── strip_signature.h │ │ ├── type_identity.h │ │ ├── type_list.h │ │ ├── underlying_type.h │ │ └── void_t.h │ │ ├── __undef_macros │ │ ├── __utility │ │ ├── as_const.h │ │ ├── auto_cast.h │ │ ├── cmp.h │ │ ├── convert_to_integral.h │ │ ├── declval.h │ │ ├── exception_guard.h │ │ ├── exchange.h │ │ ├── forward.h │ │ ├── forward_like.h │ │ ├── in_place.h │ │ ├── integer_sequence.h │ │ ├── move.h │ │ ├── pair.h │ │ ├── piecewise_construct.h │ │ ├── priority_tag.h │ │ ├── rel_ops.h │ │ ├── swap.h │ │ ├── to_underlying.h │ │ └── unreachable.h │ │ ├── __variant │ │ └── monostate.h │ │ ├── __verbose_abort │ │ ├── algorithm │ │ ├── any │ │ ├── array │ │ ├── atomic │ │ ├── barrier │ │ ├── bit │ │ ├── bitset │ │ ├── cassert │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfenv │ │ ├── cfloat │ │ ├── charconv │ │ ├── chrono │ │ ├── cinttypes │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── codecvt │ │ ├── compare │ │ ├── complex │ │ ├── complex.h │ │ ├── concepts │ │ ├── condition_variable │ │ ├── coroutine │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctgmath │ │ ├── ctime │ │ ├── ctype.h │ │ ├── cuchar │ │ ├── cwchar │ │ ├── cwctype │ │ ├── cxxabi.h │ │ ├── deque │ │ ├── errno.h │ │ ├── exception │ │ ├── execution │ │ ├── expected │ │ ├── experimental │ │ ├── __config │ │ ├── __memory │ │ ├── algorithm │ │ ├── coroutine │ │ ├── deque │ │ ├── forward_list │ │ ├── functional │ │ ├── iterator │ │ ├── list │ │ ├── map │ │ ├── memory_resource │ │ ├── propagate_const │ │ ├── regex │ │ ├── set │ │ ├── simd │ │ ├── string │ │ ├── type_traits │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ └── vector │ │ ├── ext │ │ ├── __hash │ │ ├── hash_map │ │ └── hash_set │ │ ├── fenv.h │ │ ├── filesystem │ │ ├── float.h │ │ ├── format │ │ ├── forward_list │ │ ├── fstream │ │ ├── functional │ │ ├── future │ │ ├── initializer_list │ │ ├── inttypes.h │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── iterator │ │ ├── latch │ │ ├── libcxx.imp │ │ ├── limits │ │ ├── limits.h │ │ ├── list │ │ ├── locale │ │ ├── locale.h │ │ ├── map │ │ ├── math.h │ │ ├── memory │ │ ├── memory_resource │ │ ├── mutex │ │ ├── new │ │ ├── numbers │ │ ├── numeric │ │ ├── optional │ │ ├── ostream │ │ ├── queue │ │ ├── random │ │ ├── ranges │ │ ├── ratio │ │ ├── regex │ │ ├── scoped_allocator │ │ ├── semaphore │ │ ├── set │ │ ├── setjmp.h │ │ ├── shared_mutex │ │ ├── source_location │ │ ├── span │ │ ├── sstream │ │ ├── stack │ │ ├── stdatomic.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdexcept │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── streambuf │ │ ├── string │ │ ├── string.h │ │ ├── string_view │ │ ├── strstream │ │ ├── system_error │ │ ├── tgmath.h │ │ ├── thread │ │ ├── tuple │ │ ├── type_traits │ │ ├── typeindex │ │ ├── typeinfo │ │ ├── uchar.h │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ ├── valarray │ │ ├── variant │ │ ├── vector │ │ ├── version │ │ ├── wchar.h │ │ └── wctype.h ├── cache.h ├── cache_callbacks.h ├── checkint.h ├── com_err.h ├── complex.h ├── compression.h ├── copyfile.h ├── corpses │ └── task_corpse.h ├── cpio.h ├── crt_externs.h ├── ctype.h ├── cups │ ├── adminutil.h │ ├── array.h │ ├── backend.h │ ├── cups.h │ ├── dir.h │ ├── file.h │ ├── http.h │ ├── ipp.h │ ├── language.h │ ├── ppd.h │ ├── pwg.h │ ├── raster.h │ ├── sidechannel.h │ ├── transcode.h │ └── versioning.h ├── curl │ ├── curl.h │ ├── curlver.h │ ├── easy.h │ ├── header.h │ ├── mprintf.h │ ├── multi.h │ ├── options.h │ ├── system.h │ ├── typecheck-gcc.h │ ├── urlapi.h │ └── websockets.h ├── curses.h ├── db.h ├── default_pager │ └── default_pager_types.h ├── device │ ├── device.defs │ ├── device_port.h │ ├── device_types.defs │ └── device_types.h ├── dirent.h ├── disktab.h ├── dispatch │ ├── base.h │ ├── block.h │ ├── data.h │ ├── dispatch.h │ ├── dispatch_swift_shims.h │ ├── group.h │ ├── introspection.h │ ├── io.h │ ├── object.h │ ├── once.h │ ├── queue.h │ ├── semaphore.h │ ├── source.h │ ├── time.h │ └── workloop.h ├── dlfcn.h ├── dns.h ├── dns_sd.h ├── dns_util.h ├── dtrace.h ├── editline │ └── readline.h ├── err.h ├── errno.h ├── eti.h ├── execinfo.h ├── expat.h ├── expat_external.h ├── fcntl.h ├── fenv.h ├── ffi │ ├── ffi.h │ ├── ffitarget.h │ ├── ffitarget_arm64.h │ ├── ffitarget_armv7.h │ ├── ffitarget_x86.h │ └── tramp.h ├── float.h ├── fmtmsg.h ├── fnmatch.h ├── form.h ├── fsproperties.h ├── fstab.h ├── fts.h ├── ftw.h ├── get_compat.h ├── gethostuuid.h ├── getopt.h ├── glob.h ├── grp.h ├── gssapi.h ├── gssapi │ ├── gssapi.h │ ├── gssapi_generic.h │ └── gssapi_krb5.h ├── hfs │ ├── hfs_format.h │ ├── hfs_mount.h │ └── hfs_unistr.h ├── histedit.h ├── i386 │ ├── _limits.h │ ├── _mcontext.h │ ├── _param.h │ ├── _types.h │ ├── eflags.h │ ├── endian.h │ ├── fasttrap_isa.h │ ├── limits.h │ ├── param.h │ ├── profile.h │ ├── signal.h │ ├── types.h │ ├── user_ldt.h │ └── vmparam.h ├── iconv.h ├── ifaddrs.h ├── inttypes.h ├── iso646.h ├── kern │ ├── exc_guard.h │ ├── exc_resource.h │ ├── kcdata.h │ └── kern_cdata.h ├── krb5.h ├── krb5 │ ├── krb5.h │ ├── locate_plugin.h │ └── preauth_plugin.h ├── langinfo.h ├── launch.h ├── lber.h ├── lber_types.h ├── ldap.h ├── ldap_cdefs.h ├── ldap_features.h ├── ldap_schema.h ├── ldap_utf8.h ├── ldif.h ├── libDER │ ├── DERItem.h │ └── libDER_config.h ├── libc.h ├── libcharset.h ├── libexslt │ ├── exslt.h │ ├── exsltconfig.h │ └── exsltexports.h ├── libgen.h ├── libkern │ ├── OSAtomic.h │ ├── OSAtomicDeprecated.h │ ├── OSAtomicQueue.h │ ├── OSByteOrder.h │ ├── OSCacheControl.h │ ├── OSDebug.h │ ├── OSKextLib.h │ ├── OSReturn.h │ ├── OSSpinLockDeprecated.h │ ├── OSThermalNotification.h │ ├── OSTypes.h │ ├── _OSByteOrder.h │ ├── arm │ │ └── OSByteOrder.h │ ├── i386 │ │ ├── OSByteOrder.h │ │ └── _OSByteOrder.h │ └── machine │ │ └── OSByteOrder.h ├── libmanagedconfigurationfiles.h ├── libproc.h ├── libunwind.h ├── libxml │ ├── DOCBparser.h │ ├── HTMLparser.h │ ├── HTMLtree.h │ ├── SAX.h │ ├── SAX2.h │ ├── c14n.h │ ├── catalog.h │ ├── chvalid.h │ ├── debugXML.h │ ├── dict.h │ ├── encoding.h │ ├── entities.h │ ├── globals.h │ ├── hash.h │ ├── list.h │ ├── nanoftp.h │ ├── nanohttp.h │ ├── parser.h │ ├── parserInternals.h │ ├── pattern.h │ ├── relaxng.h │ ├── schemasInternals.h │ ├── schematron.h │ ├── threads.h │ ├── tree.h │ ├── uri.h │ ├── valid.h │ ├── xinclude.h │ ├── xlink.h │ ├── xmlIO.h │ ├── xmlautomata.h │ ├── xmlerror.h │ ├── xmlexports.h │ ├── xmlmemory.h │ ├── xmlmodule.h │ ├── xmlreader.h │ ├── xmlregexp.h │ ├── xmlsave.h │ ├── xmlschemas.h │ ├── xmlschemastypes.h │ ├── xmlstring.h │ ├── xmlunicode.h │ ├── xmlversion.h │ ├── xmlwriter.h │ ├── xpath.h │ ├── xpathInternals.h │ └── xpointer.h ├── libxml2 │ └── libxml │ │ ├── DOCBparser.h │ │ ├── HTMLparser.h │ │ ├── HTMLtree.h │ │ ├── SAX.h │ │ ├── SAX2.h │ │ ├── c14n.h │ │ ├── catalog.h │ │ ├── chvalid.h │ │ ├── debugXML.h │ │ ├── dict.h │ │ ├── encoding.h │ │ ├── entities.h │ │ ├── globals.h │ │ ├── hash.h │ │ ├── list.h │ │ ├── nanoftp.h │ │ ├── nanohttp.h │ │ ├── parser.h │ │ ├── parserInternals.h │ │ ├── pattern.h │ │ ├── relaxng.h │ │ ├── schemasInternals.h │ │ ├── schematron.h │ │ ├── threads.h │ │ ├── tree.h │ │ ├── uri.h │ │ ├── valid.h │ │ ├── xinclude.h │ │ ├── xlink.h │ │ ├── xmlIO.h │ │ ├── xmlautomata.h │ │ ├── xmlerror.h │ │ ├── xmlexports.h │ │ ├── xmlmemory.h │ │ ├── xmlmodule.h │ │ ├── xmlreader.h │ │ ├── xmlregexp.h │ │ ├── xmlsave.h │ │ ├── xmlschemas.h │ │ ├── xmlschemastypes.h │ │ ├── xmlstring.h │ │ ├── xmlunicode.h │ │ ├── xmlversion.h │ │ ├── xmlwriter.h │ │ ├── xpath.h │ │ ├── xpathInternals.h │ │ └── xpointer.h ├── libxslt │ ├── attributes.h │ ├── documents.h │ ├── extensions.h │ ├── extra.h │ ├── functions.h │ ├── imports.h │ ├── keys.h │ ├── namespaces.h │ ├── numbersInternals.h │ ├── pattern.h │ ├── preproc.h │ ├── security.h │ ├── templates.h │ ├── transform.h │ ├── variables.h │ ├── xslt.h │ ├── xsltInternals.h │ ├── xsltconfig.h │ ├── xsltexports.h │ ├── xsltlocale.h │ └── xsltutils.h ├── limits.h ├── localcharset.h ├── locale.h ├── mach-o │ ├── arch.h │ ├── arm │ │ └── reloc.h │ ├── arm64 │ │ └── reloc.h │ ├── compact_unwind_encoding.h │ ├── dyld.h │ ├── dyld_images.h │ ├── fat.h │ ├── fixup-chains.h │ ├── getsect.h │ ├── i386 │ │ └── swap.h │ ├── ldsyms.h │ ├── loader.h │ ├── nlist.h │ ├── ranlib.h │ ├── reloc.h │ ├── stab.h │ ├── swap.h │ ├── utils.h │ └── x86_64 │ │ └── reloc.h ├── mach │ ├── arm │ │ ├── _structs.h │ │ ├── asm.h │ │ ├── boolean.h │ │ ├── exception.h │ │ ├── kern_return.h │ │ ├── ndr_def.h │ │ ├── processor_info.h │ │ ├── rpc.h │ │ ├── sdt_isa.h │ │ ├── syscall_sw.h │ │ ├── thread_state.h │ │ ├── thread_status.h │ │ ├── traps.h │ │ ├── vm_param.h │ │ └── vm_types.h │ ├── arm64 │ │ └── asm.h │ ├── audit_triggers.defs │ ├── audit_triggers_types.h │ ├── boolean.h │ ├── bootstrap.h │ ├── clock.defs │ ├── clock.h │ ├── clock_priv.defs │ ├── clock_priv.h │ ├── clock_reply.defs │ ├── clock_reply.h │ ├── clock_types.defs │ ├── clock_types.h │ ├── dyld_kernel.h │ ├── dyld_pager.h │ ├── error.h │ ├── exc.defs │ ├── exc.h │ ├── exception.h │ ├── exception_types.h │ ├── host_info.h │ ├── host_notify.h │ ├── host_notify_reply.defs │ ├── host_priv.defs │ ├── host_priv.h │ ├── host_reboot.h │ ├── host_security.defs │ ├── host_security.h │ ├── host_special_ports.h │ ├── i386 │ │ ├── _structs.h │ │ ├── asm.h │ │ ├── boolean.h │ │ ├── exception.h │ │ ├── fp_reg.h │ │ ├── kern_return.h │ │ ├── ndr_def.h │ │ ├── processor_info.h │ │ ├── rpc.h │ │ ├── sdt_isa.h │ │ ├── thread_state.h │ │ ├── thread_status.h │ │ ├── vm_param.h │ │ └── vm_types.h │ ├── kern_return.h │ ├── kmod.h │ ├── mach.h │ ├── mach_error.h │ ├── mach_eventlink.h │ ├── mach_exc.defs │ ├── mach_host.defs │ ├── mach_host.h │ ├── mach_init.h │ ├── mach_interface.h │ ├── mach_param.h │ ├── mach_port.defs │ ├── mach_port.h │ ├── mach_right.h │ ├── mach_syscalls.h │ ├── mach_time.h │ ├── mach_traps.h │ ├── mach_types.defs │ ├── mach_types.h │ ├── mach_vm.defs │ ├── mach_vm.h │ ├── mach_voucher.defs │ ├── mach_voucher.h │ ├── mach_voucher_attr_control.defs │ ├── mach_voucher_types.h │ ├── machine.h │ ├── machine │ │ ├── _structs.h │ │ ├── asm.h │ │ ├── boolean.h │ │ ├── exception.h │ │ ├── kern_return.h │ │ ├── machine_types.defs │ │ ├── ndr_def.h │ │ ├── processor_info.h │ │ ├── rpc.h │ │ ├── sdt.h │ │ ├── sdt_isa.h │ │ ├── thread_state.h │ │ ├── thread_status.h │ │ ├── vm_param.h │ │ └── vm_types.h │ ├── memory_entry.defs │ ├── memory_entry.h │ ├── memory_error_notification.defs │ ├── memory_object_types.h │ ├── message.h │ ├── mig.h │ ├── mig_errors.h │ ├── mig_strncpy_zerofill_support.h │ ├── mig_voucher_support.h │ ├── ndr.h │ ├── notify.defs │ ├── notify.h │ ├── policy.h │ ├── port.h │ ├── port_obj.h │ ├── processor.defs │ ├── processor.h │ ├── processor_info.h │ ├── processor_set.defs │ ├── processor_set.h │ ├── rpc.h │ ├── sdt.h │ ├── semaphore.h │ ├── shared_memory_server.h │ ├── shared_region.h │ ├── std_types.defs │ ├── std_types.h │ ├── sync.h │ ├── sync_policy.h │ ├── task.defs │ ├── task.h │ ├── task_access.defs │ ├── task_info.h │ ├── task_inspect.h │ ├── task_policy.h │ ├── task_special_ports.h │ ├── telemetry_notification.defs │ ├── thread_act.defs │ ├── thread_act.h │ ├── thread_info.h │ ├── thread_policy.h │ ├── thread_special_ports.h │ ├── thread_state.h │ ├── thread_status.h │ ├── thread_switch.h │ ├── time_value.h │ ├── vm_attributes.h │ ├── vm_behavior.h │ ├── vm_inherit.h │ ├── vm_map.defs │ ├── vm_map.h │ ├── vm_page_size.h │ ├── vm_param.h │ ├── vm_prot.h │ ├── vm_purgable.h │ ├── vm_region.h │ ├── vm_statistics.h │ ├── vm_sync.h │ ├── vm_task.h │ └── vm_types.h ├── mach_debug │ ├── hash_info.h │ ├── ipc_info.h │ ├── lockgroup_info.h │ ├── mach_debug.h │ ├── mach_debug_types.defs │ ├── mach_debug_types.h │ ├── page_info.h │ ├── vm_info.h │ └── zone_info.h ├── machine │ ├── _limits.h │ ├── _mcontext.h │ ├── _param.h │ ├── _types.h │ ├── byte_order.h │ ├── endian.h │ ├── fasttrap_isa.h │ ├── limits.h │ ├── param.h │ ├── profile.h │ ├── signal.h │ ├── types.h │ └── vmparam.h ├── malloc │ ├── _malloc.h │ ├── _malloc_type.h │ └── malloc.h ├── math.h ├── membership.h ├── memory.h ├── menu.h ├── miscfs │ ├── devfs │ │ └── devfs.h │ ├── specfs │ │ └── specdev.h │ └── union │ │ └── union.h ├── monetary.h ├── monitor.h ├── mpool.h ├── nameser.h ├── nc_tparm.h ├── ncurses.h ├── ncurses_dll.h ├── ndbm.h ├── net-snmp │ ├── agent │ │ ├── agent_callbacks.h │ │ ├── agent_handler.h │ │ ├── agent_index.h │ │ ├── agent_module_config.h │ │ ├── agent_read_config.h │ │ ├── agent_registry.h │ │ ├── agent_sysORTable.h │ │ ├── agent_trap.h │ │ ├── all_helpers.h │ │ ├── auto_nlist.h │ │ ├── baby_steps.h │ │ ├── bulk_to_next.h │ │ ├── cache_handler.h │ │ ├── debug_handler.h │ │ ├── ds_agent.h │ │ ├── instance.h │ │ ├── mfd.h │ │ ├── mib_module_config.h │ │ ├── mib_module_includes.h │ │ ├── mib_modules.h │ │ ├── mode_end_call.h │ │ ├── multiplexer.h │ │ ├── net-snmp-agent-includes.h │ │ ├── null.h │ │ ├── old_api.h │ │ ├── read_only.h │ │ ├── row_merge.h │ │ ├── scalar.h │ │ ├── scalar_group.h │ │ ├── serialize.h │ │ ├── set_helper.h │ │ ├── snmp_agent.h │ │ ├── snmp_get_statistic.h │ │ ├── snmp_vars.h │ │ ├── stash_cache.h │ │ ├── stash_to_next.h │ │ ├── struct.h │ │ ├── sysORTable.h │ │ ├── table.h │ │ ├── table_array.h │ │ ├── table_container.h │ │ ├── table_data.h │ │ ├── table_dataset.h │ │ ├── table_iterator.h │ │ ├── table_tdata.h │ │ ├── util_funcs.h │ │ ├── util_funcs │ │ │ ├── Exit.h │ │ │ ├── MIB_STATS_CACHE_TIMEOUT.h │ │ │ ├── header_generic.h │ │ │ ├── header_simple_table.h │ │ │ └── restart.h │ │ ├── var_struct.h │ │ └── watcher.h │ ├── config_api.h │ ├── definitions.h │ ├── library │ │ ├── README │ │ ├── asn1.h │ │ ├── callback.h │ │ ├── cert_util.h │ │ ├── check_varbind.h │ │ ├── cmu_compat.h │ │ ├── container.h │ │ ├── container_binary_array.h │ │ ├── container_iterator.h │ │ ├── container_list_ssll.h │ │ ├── container_null.h │ │ ├── data_list.h │ │ ├── default_store.h │ │ ├── dir_utils.h │ │ ├── factory.h │ │ ├── fd_event_manager.h │ │ ├── file_utils.h │ │ ├── getopt.h │ │ ├── int64.h │ │ ├── keytools.h │ │ ├── large_fd_set.h │ │ ├── lcd_time.h │ │ ├── md5.h │ │ ├── mib.h │ │ ├── mt_support.h │ │ ├── oid.h │ │ ├── oid_stash.h │ │ ├── parse.h │ │ ├── read_config.h │ │ ├── scapi.h │ │ ├── snmp-tc.h │ │ ├── snmp.h │ │ ├── snmpAliasDomain.h │ │ ├── snmpCallbackDomain.h │ │ ├── snmpIPv4BaseDomain.h │ │ ├── snmpIPv6BaseDomain.h │ │ ├── snmpSocketBaseDomain.h │ │ ├── snmpTCPBaseDomain.h │ │ ├── snmpTCPDomain.h │ │ ├── snmpTCPIPv6Domain.h │ │ ├── snmpUDPBaseDomain.h │ │ ├── snmpUDPDomain.h │ │ ├── snmpUDPIPv4BaseDomain.h │ │ ├── snmpUDPIPv6Domain.h │ │ ├── snmpUnixDomain.h │ │ ├── snmp_alarm.h │ │ ├── snmp_api.h │ │ ├── snmp_assert.h │ │ ├── snmp_client.h │ │ ├── snmp_debug.h │ │ ├── snmp_enum.h │ │ ├── snmp_impl.h │ │ ├── snmp_logging.h │ │ ├── snmp_parse_args.h │ │ ├── snmp_secmod.h │ │ ├── snmp_service.h │ │ ├── snmp_transport.h │ │ ├── snmpusm.h │ │ ├── snmpv3-security-includes.h │ │ ├── snmpv3.h │ │ ├── system.h │ │ ├── text_utils.h │ │ ├── tools.h │ │ ├── transform_oids.h │ │ ├── types.h │ │ ├── ucd_compat.h │ │ ├── vacm.h │ │ ├── winpipe.h │ │ └── winservice.h │ ├── machine │ │ └── generic.h │ ├── mib_api.h │ ├── net-snmp-config.h │ ├── net-snmp-includes.h │ ├── output_api.h │ ├── pdu_api.h │ ├── session_api.h │ ├── snmpv3_api.h │ ├── system │ │ ├── aix.h │ │ ├── bsd.h │ │ ├── bsdi.h │ │ ├── bsdi3.h │ │ ├── bsdi4.h │ │ ├── cygwin.h │ │ ├── darwin.h │ │ ├── darwin10.h │ │ ├── darwin11.h │ │ ├── darwin12.h │ │ ├── darwin13.h │ │ ├── darwin14.h │ │ ├── darwin15.h │ │ ├── darwin16.h │ │ ├── darwin17.h │ │ ├── darwin18.h │ │ ├── darwin19.h │ │ ├── darwin20.h │ │ ├── darwin21.h │ │ ├── darwin22.h │ │ ├── darwin23.h │ │ ├── darwin7.h │ │ ├── darwin8.h │ │ ├── darwin9.h │ │ ├── dragonfly.h │ │ ├── dynix.h │ │ ├── freebsd.h │ │ ├── freebsd10.h │ │ ├── freebsd2.h │ │ ├── freebsd3.h │ │ ├── freebsd4.h │ │ ├── freebsd5.h │ │ ├── freebsd6.h │ │ ├── freebsd7.h │ │ ├── freebsd8.h │ │ ├── freebsd9.h │ │ ├── generic.h │ │ ├── hpux.h │ │ ├── irix.h │ │ ├── linux.h │ │ ├── mingw32.h │ │ ├── mips.h │ │ ├── netbsd.h │ │ ├── openbsd.h │ │ ├── openbsd4.h │ │ ├── openbsd5.h │ │ ├── osf5.h │ │ ├── solaris.h │ │ ├── solaris2.3.h │ │ ├── solaris2.4.h │ │ ├── solaris2.5.h │ │ ├── solaris2.6.h │ │ ├── sunos.h │ │ ├── svr5.h │ │ ├── sysv.h │ │ └── ultrix4.h │ ├── types.h │ ├── utilities.h │ ├── varbind_api.h │ └── version.h ├── net │ ├── bpf.h │ ├── dlil.h │ ├── ethernet.h │ ├── if.h │ ├── if_arp.h │ ├── if_dl.h │ ├── if_llc.h │ ├── if_media.h │ ├── if_mib.h │ ├── if_types.h │ ├── if_utun.h │ ├── if_var.h │ ├── if_var_status.h │ ├── kext_net.h │ ├── ndrv.h │ ├── net_kev.h │ ├── pfkeyv2.h │ └── route.h ├── netdb.h ├── netinet │ ├── bootp.h │ ├── icmp6.h │ ├── icmp_var.h │ ├── if_ether.h │ ├── igmp.h │ ├── igmp_var.h │ ├── in.h │ ├── in_pcb.h │ ├── in_systm.h │ ├── in_var.h │ ├── ip.h │ ├── ip6.h │ ├── ip_icmp.h │ ├── ip_var.h │ ├── tcp.h │ ├── tcp_fsm.h │ ├── tcp_seq.h │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── udp.h │ └── udp_var.h ├── netinet6 │ ├── ah.h │ ├── esp.h │ ├── in6.h │ ├── in6_var.h │ ├── ipcomp.h │ ├── ipsec.h │ ├── nd6.h │ ├── raw_ip6.h │ └── scope6_var.h ├── netkey │ └── keysock.h ├── networkext │ └── ne_socket.h ├── nfs │ ├── nfs.h │ ├── nfsproto.h │ ├── rpcv2.h │ └── xdr_subs.h ├── nl_types.h ├── nlist.h ├── notify.h ├── notify_keys.h ├── ntsid.h ├── objc │ ├── List.h │ ├── NSObjCRuntime.h │ ├── NSObject.h │ ├── Object.h │ ├── Protocol.h │ ├── hashtable.h │ ├── hashtable2.h │ ├── message.h │ ├── objc-api.h │ ├── objc-auto.h │ ├── objc-class.h │ ├── objc-exception.h │ ├── objc-load.h │ ├── objc-runtime.h │ ├── objc-sync.h │ ├── objc.h │ └── runtime.h ├── odmodule │ ├── odconnection.h │ ├── odconstants.h │ ├── odcore.h │ ├── odcredential.h │ ├── odcstr.h │ ├── odmodule.h │ ├── odmoduleconfig.h │ ├── odrequest.h │ └── odtypes.h ├── os │ ├── _workgroup.h │ ├── activity.h │ ├── atomic.h │ ├── availability.h │ ├── base.h │ ├── clock.h │ ├── lock.h │ ├── log.h │ ├── object.h │ ├── overflow.h │ ├── proc.h │ ├── signpost.h │ ├── trace.h │ ├── trace_base.h │ ├── workgroup.h │ ├── workgroup_base.h │ ├── workgroup_interval.h │ ├── workgroup_object.h │ └── workgroup_parallel.h ├── panel.h ├── paths.h ├── pcap-bpf.h ├── pcap-namedb.h ├── pcap.h ├── pcap │ ├── bluetooth.h │ ├── bpf.h │ ├── can_socketcan.h │ ├── compiler-tests.h │ ├── dlt.h │ ├── funcattrs.h │ ├── ipnet.h │ ├── namedb.h │ ├── nflog.h │ ├── pcap-inttypes.h │ ├── pcap.h │ ├── sll.h │ ├── socket.h │ ├── usb.h │ └── vlan.h ├── pexpert │ ├── boot.h │ ├── i386 │ │ ├── boot.h │ │ ├── efi.h │ │ └── protos.h │ ├── machine │ │ ├── boot.h │ │ └── protos.h │ ├── pexpert.h │ └── protos.h ├── poll.h ├── printerdb.h ├── printf.h ├── profile.h ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h ├── pthread.h ├── pthread │ ├── introspection.h │ ├── pthread.h │ ├── pthread_impl.h │ ├── pthread_spis.h │ ├── qos.h │ ├── sched.h │ ├── spawn.h │ └── stack_np.h ├── pthread_impl.h ├── pthread_spis.h ├── pwd.h ├── ranlib.h ├── readline │ ├── history.h │ └── readline.h ├── readpassphrase.h ├── regex.h ├── removefile.h ├── resolv.h ├── rpc │ ├── auth.h │ ├── auth_unix.h │ ├── clnt.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rpc.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h ├── rpcsvc │ ├── bootparam_prot.h │ ├── bootparam_prot.x │ ├── klm_prot.h │ ├── klm_prot.x │ ├── mount.h │ ├── mount.x │ ├── nfs_prot.h │ ├── nfs_prot.x │ ├── nlm_prot.h │ ├── nlm_prot.x │ ├── rex.h │ ├── rex.x │ ├── rnusers.h │ ├── rnusers.x │ ├── rquota.h │ ├── rquota.x │ ├── rstat.h │ ├── rstat.x │ ├── rusers.h │ ├── rusers.x │ ├── rwall.h │ ├── rwall.x │ ├── sm_inter.h │ ├── sm_inter.x │ ├── spray.h │ ├── spray.x │ ├── yp.h │ ├── yp.x │ ├── yp_prot.h │ ├── ypclnt.h │ ├── yppasswd.h │ └── yppasswd.x ├── rune.h ├── runetype.h ├── sandbox.h ├── sasl │ ├── gai.h │ ├── hmac-md5.h │ ├── md5.h │ ├── md5global.h │ ├── prop.h │ ├── sasl.h │ ├── saslplug.h │ └── saslutil.h ├── sched.h ├── search.h ├── secure │ ├── _common.h │ ├── _stdio.h │ ├── _string.h │ └── _strings.h ├── security │ ├── audit │ │ └── audit_ioctl.h │ ├── openpam.h │ ├── openpam_attr.h │ ├── openpam_version.h │ ├── pam_appl.h │ ├── pam_constants.h │ ├── pam_modules.h │ └── pam_types.h ├── semaphore.h ├── servers │ ├── bootstrap.h │ ├── bootstrap_defs.h │ ├── key_defs.h │ ├── ls_defs.h │ ├── netname.h │ ├── netname_defs.h │ └── nm_defs.h ├── setjmp.h ├── sgtty.h ├── signal.h ├── simd │ ├── base.h │ ├── common.h │ ├── conversion.h │ ├── extern.h │ ├── geometry.h │ ├── logic.h │ ├── math.h │ ├── matrix.h │ ├── matrix_types.h │ ├── packed.h │ ├── quaternion.h │ ├── simd.h │ ├── types.h │ ├── vector.h │ ├── vector_make.h │ └── vector_types.h ├── slapi-plugin.h ├── spawn.h ├── sqlite3.h ├── sqlite3ext.h ├── stab.h ├── standards.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── strhash.h ├── string.h ├── string_x86.h ├── stringlist.h ├── strings.h ├── struct.h ├── sys │ ├── _endian.h │ ├── _posix_availability.h │ ├── _pthread │ │ ├── _pthread_attr_t.h │ │ ├── _pthread_cond_t.h │ │ ├── _pthread_condattr_t.h │ │ ├── _pthread_key_t.h │ │ ├── _pthread_mutex_t.h │ │ ├── _pthread_mutexattr_t.h │ │ ├── _pthread_once_t.h │ │ ├── _pthread_rwlock_t.h │ │ ├── _pthread_rwlockattr_t.h │ │ ├── _pthread_t.h │ │ └── _pthread_types.h │ ├── _select.h │ ├── _structs.h │ ├── _symbol_aliasing.h │ ├── _types.h │ ├── _types │ │ ├── _blkcnt_t.h │ │ ├── _blksize_t.h │ │ ├── _caddr_t.h │ │ ├── _clock_t.h │ │ ├── _ct_rune_t.h │ │ ├── _dev_t.h │ │ ├── _errno_t.h │ │ ├── _fd_clr.h │ │ ├── _fd_copy.h │ │ ├── _fd_def.h │ │ ├── _fd_isset.h │ │ ├── _fd_set.h │ │ ├── _fd_setsize.h │ │ ├── _fd_zero.h │ │ ├── _filesec_t.h │ │ ├── _fsblkcnt_t.h │ │ ├── _fsfilcnt_t.h │ │ ├── _fsid_t.h │ │ ├── _fsobj_id_t.h │ │ ├── _gid_t.h │ │ ├── _graftdmg_un.h │ │ ├── _guid_t.h │ │ ├── _id_t.h │ │ ├── _in_addr_t.h │ │ ├── _in_port_t.h │ │ ├── _ino64_t.h │ │ ├── _ino_t.h │ │ ├── _int16_t.h │ │ ├── _int32_t.h │ │ ├── _int64_t.h │ │ ├── _int8_t.h │ │ ├── _intptr_t.h │ │ ├── _iovec_t.h │ │ ├── _key_t.h │ │ ├── _mach_port_t.h │ │ ├── _mbstate_t.h │ │ ├── _mode_t.h │ │ ├── _mount_t.h │ │ ├── _nlink_t.h │ │ ├── _null.h │ │ ├── _o_dsync.h │ │ ├── _o_sync.h │ │ ├── _off_t.h │ │ ├── _offsetof.h │ │ ├── _os_inline.h │ │ ├── _pid_t.h │ │ ├── _posix_vdisable.h │ │ ├── _ptrdiff_t.h │ │ ├── _rsize_t.h │ │ ├── _rune_t.h │ │ ├── _s_ifmt.h │ │ ├── _sa_family_t.h │ │ ├── _seek_set.h │ │ ├── _sigaltstack.h │ │ ├── _sigset_t.h │ │ ├── _size_t.h │ │ ├── _socklen_t.h │ │ ├── _ssize_t.h │ │ ├── _suseconds_t.h │ │ ├── _time_t.h │ │ ├── _timespec.h │ │ ├── _timeval.h │ │ ├── _timeval32.h │ │ ├── _timeval64.h │ │ ├── _u_char.h │ │ ├── _u_int.h │ │ ├── _u_int16_t.h │ │ ├── _u_int32_t.h │ │ ├── _u_int64_t.h │ │ ├── _u_int8_t.h │ │ ├── _u_short.h │ │ ├── _ucontext.h │ │ ├── _ucontext64.h │ │ ├── _uid_t.h │ │ ├── _uintptr_t.h │ │ ├── _useconds_t.h │ │ ├── _uuid_t.h │ │ ├── _va_list.h │ │ ├── _vnode_t.h │ │ ├── _wchar_t.h │ │ └── _wint_t.h │ ├── acct.h │ ├── acl.h │ ├── aio.h │ ├── appleapiopts.h │ ├── attr.h │ ├── buf.h │ ├── cdefs.h │ ├── clonefile.h │ ├── commpage.h │ ├── conf.h │ ├── constrained_ctypes.h │ ├── dir.h │ ├── dirent.h │ ├── disk.h │ ├── dkstat.h │ ├── domain.h │ ├── dtrace.h │ ├── dtrace_glue.h │ ├── dtrace_impl.h │ ├── errno.h │ ├── ev.h │ ├── event.h │ ├── fasttrap.h │ ├── fasttrap_isa.h │ ├── fcntl.h │ ├── file.h │ ├── filedesc.h │ ├── filio.h │ ├── fsgetpath.h │ ├── gmon.h │ ├── ioccom.h │ ├── ioctl.h │ ├── ioctl_compat.h │ ├── ipc.h │ ├── kauth.h │ ├── kdebug.h │ ├── kdebug_signpost.h │ ├── kern_control.h │ ├── kern_event.h │ ├── kernel.h │ ├── kernel_types.h │ ├── lctx.h │ ├── loadable_fs.h │ ├── lock.h │ ├── lockf.h │ ├── lockstat.h │ ├── log_data.h │ ├── malloc.h │ ├── mbuf.h │ ├── mman.h │ ├── mount.h │ ├── msg.h │ ├── msgbuf.h │ ├── netport.h │ ├── param.h │ ├── paths.h │ ├── pipe.h │ ├── poll.h │ ├── posix_sem.h │ ├── posix_shm.h │ ├── proc.h │ ├── proc_info.h │ ├── protosw.h │ ├── ptrace.h │ ├── qos.h │ ├── queue.h │ ├── quota.h │ ├── random.h │ ├── rbtree.h │ ├── reboot.h │ ├── resource.h │ ├── resourcevar.h │ ├── sbuf.h │ ├── sdt.h │ ├── select.h │ ├── sem.h │ ├── semaphore.h │ ├── shm.h │ ├── signal.h │ ├── signalvar.h │ ├── snapshot.h │ ├── socket.h │ ├── socketvar.h │ ├── sockio.h │ ├── spawn.h │ ├── stat.h │ ├── statvfs.h │ ├── stdio.h │ ├── sys_domain.h │ ├── syscall.h │ ├── sysctl.h │ ├── syslimits.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timex.h │ ├── trace.h │ ├── tty.h │ ├── ttychars.h │ ├── ttycom.h │ ├── ttydefaults.h │ ├── ttydev.h │ ├── types.h │ ├── ubc.h │ ├── ucontext.h │ ├── ucred.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── unpcb.h │ ├── user.h │ ├── utfconv.h │ ├── utsname.h │ ├── vadvise.h │ ├── vcmd.h │ ├── vm.h │ ├── vmmeter.h │ ├── vmparam.h │ ├── vnode.h │ ├── vnode_if.h │ ├── vsock.h │ ├── vstat.h │ ├── wait.h │ └── xattr.h ├── sysdir.h ├── sysexits.h ├── syslog.h ├── tar.h ├── term.h ├── term_entry.h ├── termcap.h ├── termios.h ├── tgmath.h ├── tic.h ├── tidy │ ├── buffio.h │ ├── platform.h │ ├── tidy.h │ └── tidyenum.h ├── time.h ├── timeconv.h ├── ttyent.h ├── tzfile.h ├── ucontext.h ├── ulimit.h ├── unctrl.h ├── unicode │ ├── localpointer.h │ ├── parseerr.h │ ├── platform.h │ ├── ptypes.h │ ├── putil.h │ ├── stringoptions.h │ ├── uchar.h │ ├── uconfig.h │ ├── ucpmap.h │ ├── uidna.h │ ├── uiter.h │ ├── umachine.h │ ├── uregex.h │ ├── urename.h │ ├── ustring.h │ ├── utext.h │ ├── utf.h │ ├── utf16.h │ ├── utf8.h │ ├── utf_old.h │ ├── utypes.h │ ├── uvernum.h │ └── uversion.h ├── unistd.h ├── unwind.h ├── unwind_arm_ehabi.h ├── unwind_itanium.h ├── usbuf.h ├── util.h ├── utime.h ├── utmp.h ├── utmpx.h ├── uuid │ └── uuid.h ├── vfs │ └── vfs_support.h ├── vis.h ├── voucher │ └── ipc_pthread_priority_types.h ├── vproc.h ├── wchar.h ├── wctype.h ├── wordexp.h ├── xar │ └── xar.h ├── xattr_flags.h ├── xcselect.h ├── xlocale.h ├── xlocale │ ├── __wctype.h │ ├── _ctype.h │ ├── _inttypes.h │ ├── _langinfo.h │ ├── _monetary.h │ ├── _regex.h │ ├── _stdio.h │ ├── _stdlib.h │ ├── _string.h │ ├── _time.h │ ├── _wchar.h │ └── _wctype.h ├── xpc │ ├── activity.h │ ├── availability.h │ ├── base.h │ ├── connection.h │ ├── debug.h │ ├── endpoint.h │ ├── listener.h │ ├── rich_error.h │ ├── session.h │ └── xpc.h ├── zconf.h └── zlib.h ├── lib ├── libobjc.A.tbd └── libobjc.tbd ├── update.sh └── verify.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/.gitignore -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Headers/AUCocoaUIView.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Headers/AUComponent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Headers/AUParameters.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Headers/MusicDevice.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Versions/Current/Headers/AUComponent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Versions/Current/Headers/AUParameters.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/AudioUnit.framework/Versions/Current/Headers/MusicDevice.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIColor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIContext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIFilter.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIFilterGenerator.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIFilterShape.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIKernel.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIPlugIn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIPlugInInterface.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIRAWFilter.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CISampler.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CIVector.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVBase.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVDisplayLink.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVHostTime.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVImageBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVOpenGLBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVOpenGLBufferPool.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVOpenGLTexture.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVOpenGLTextureCache.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVPixelBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVPixelBufferPool.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Headers/CVReturn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIColor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIContext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIFilter.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIFilterShape.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIKernel.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIPlugIn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIRAWFilter.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CISampler.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CIVector.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVBase.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVDisplayLink.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVHostTime.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVImageBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVPixelBuffer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Frameworks/QuartzCore.framework/Versions/Current/Headers/CVReturn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/README.md -------------------------------------------------------------------------------- /include/AppleEXR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/AppleEXR.h -------------------------------------------------------------------------------- /include/AssertMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/AssertMacros.h -------------------------------------------------------------------------------- /include/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Availability.h -------------------------------------------------------------------------------- /include/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Block.h -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/ConditionalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ConditionalMacros.h -------------------------------------------------------------------------------- /include/MacTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/MacTypes.h -------------------------------------------------------------------------------- /include/Spatial/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/Base.h -------------------------------------------------------------------------------- /include/Spatial/SPAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPAngle.h -------------------------------------------------------------------------------- /include/Spatial/SPPoint3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPPoint3D.h -------------------------------------------------------------------------------- /include/Spatial/SPPose3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPPose3D.h -------------------------------------------------------------------------------- /include/Spatial/SPRay3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPRay3D.h -------------------------------------------------------------------------------- /include/Spatial/SPRect3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPRect3D.h -------------------------------------------------------------------------------- /include/Spatial/SPSize3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/SPSize3D.h -------------------------------------------------------------------------------- /include/Spatial/Spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Spatial/Spatial.h -------------------------------------------------------------------------------- /include/Xplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/Xplugin.h -------------------------------------------------------------------------------- /include/__wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/__wctype.h -------------------------------------------------------------------------------- /include/_ctermid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_ctermid.h -------------------------------------------------------------------------------- /include/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_ctype.h -------------------------------------------------------------------------------- /include/_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_locale.h -------------------------------------------------------------------------------- /include/_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_regex.h -------------------------------------------------------------------------------- /include/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_stdio.h -------------------------------------------------------------------------------- /include/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types.h -------------------------------------------------------------------------------- /include/_types/_intmax_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_intmax_t.h -------------------------------------------------------------------------------- /include/_types/_nl_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_nl_item.h -------------------------------------------------------------------------------- /include/_types/_uint16_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_uint16_t.h -------------------------------------------------------------------------------- /include/_types/_uint32_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_uint32_t.h -------------------------------------------------------------------------------- /include/_types/_uint64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_uint64_t.h -------------------------------------------------------------------------------- /include/_types/_uint8_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_uint8_t.h -------------------------------------------------------------------------------- /include/_types/_uintmax_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_uintmax_t.h -------------------------------------------------------------------------------- /include/_types/_wctrans_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_wctrans_t.h -------------------------------------------------------------------------------- /include/_types/_wctype_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_types/_wctype_t.h -------------------------------------------------------------------------------- /include/_wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_wctype.h -------------------------------------------------------------------------------- /include/_xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/_xlocale.h -------------------------------------------------------------------------------- /include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/aio.h -------------------------------------------------------------------------------- /include/aliasdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/aliasdb.h -------------------------------------------------------------------------------- /include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/alloca.h -------------------------------------------------------------------------------- /include/apr-1/apr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr.h -------------------------------------------------------------------------------- /include/apr-1/apr_anylock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_anylock.h -------------------------------------------------------------------------------- /include/apr-1/apr_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_atomic.h -------------------------------------------------------------------------------- /include/apr-1/apr_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_base64.h -------------------------------------------------------------------------------- /include/apr-1/apr_buckets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_buckets.h -------------------------------------------------------------------------------- /include/apr-1/apr_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_crypto.h -------------------------------------------------------------------------------- /include/apr-1/apr_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_date.h -------------------------------------------------------------------------------- /include/apr-1/apr_dbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_dbd.h -------------------------------------------------------------------------------- /include/apr-1/apr_dbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_dbm.h -------------------------------------------------------------------------------- /include/apr-1/apr_dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_dso.h -------------------------------------------------------------------------------- /include/apr-1/apr_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_env.h -------------------------------------------------------------------------------- /include/apr-1/apr_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_errno.h -------------------------------------------------------------------------------- /include/apr-1/apr_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_escape.h -------------------------------------------------------------------------------- /include/apr-1/apr_file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_file_io.h -------------------------------------------------------------------------------- /include/apr-1/apr_fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_fnmatch.h -------------------------------------------------------------------------------- /include/apr-1/apr_general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_general.h -------------------------------------------------------------------------------- /include/apr-1/apr_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_getopt.h -------------------------------------------------------------------------------- /include/apr-1/apr_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_hash.h -------------------------------------------------------------------------------- /include/apr-1/apr_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_hooks.h -------------------------------------------------------------------------------- /include/apr-1/apr_inherit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_inherit.h -------------------------------------------------------------------------------- /include/apr-1/apr_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_ldap.h -------------------------------------------------------------------------------- /include/apr-1/apr_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_lib.h -------------------------------------------------------------------------------- /include/apr-1/apr_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_md4.h -------------------------------------------------------------------------------- /include/apr-1/apr_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_md5.h -------------------------------------------------------------------------------- /include/apr-1/apr_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_mmap.h -------------------------------------------------------------------------------- /include/apr-1/apr_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_poll.h -------------------------------------------------------------------------------- /include/apr-1/apr_pools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_pools.h -------------------------------------------------------------------------------- /include/apr-1/apr_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_queue.h -------------------------------------------------------------------------------- /include/apr-1/apr_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_random.h -------------------------------------------------------------------------------- /include/apr-1/apr_reslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_reslist.h -------------------------------------------------------------------------------- /include/apr-1/apr_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_ring.h -------------------------------------------------------------------------------- /include/apr-1/apr_rmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_rmm.h -------------------------------------------------------------------------------- /include/apr-1/apr_sdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_sdbm.h -------------------------------------------------------------------------------- /include/apr-1/apr_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_sha1.h -------------------------------------------------------------------------------- /include/apr-1/apr_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_shm.h -------------------------------------------------------------------------------- /include/apr-1/apr_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_signal.h -------------------------------------------------------------------------------- /include/apr-1/apr_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_strings.h -------------------------------------------------------------------------------- /include/apr-1/apr_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_support.h -------------------------------------------------------------------------------- /include/apr-1/apr_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_tables.h -------------------------------------------------------------------------------- /include/apr-1/apr_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_time.h -------------------------------------------------------------------------------- /include/apr-1/apr_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_uri.h -------------------------------------------------------------------------------- /include/apr-1/apr_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_user.h -------------------------------------------------------------------------------- /include/apr-1/apr_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_uuid.h -------------------------------------------------------------------------------- /include/apr-1/apr_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_version.h -------------------------------------------------------------------------------- /include/apr-1/apr_want.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_want.h -------------------------------------------------------------------------------- /include/apr-1/apr_xlate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_xlate.h -------------------------------------------------------------------------------- /include/apr-1/apr_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apr_xml.h -------------------------------------------------------------------------------- /include/apr-1/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apu.h -------------------------------------------------------------------------------- /include/apr-1/apu_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apu_errno.h -------------------------------------------------------------------------------- /include/apr-1/apu_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apu_version.h -------------------------------------------------------------------------------- /include/apr-1/apu_want.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/apr-1/apu_want.h -------------------------------------------------------------------------------- /include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ar.h -------------------------------------------------------------------------------- /include/arm/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/_limits.h -------------------------------------------------------------------------------- /include/arm/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/_mcontext.h -------------------------------------------------------------------------------- /include/arm/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/_param.h -------------------------------------------------------------------------------- /include/arm/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/_types.h -------------------------------------------------------------------------------- /include/arm/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/arch.h -------------------------------------------------------------------------------- /include/arm/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/endian.h -------------------------------------------------------------------------------- /include/arm/fasttrap_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/fasttrap_isa.h -------------------------------------------------------------------------------- /include/arm/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/limits.h -------------------------------------------------------------------------------- /include/arm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/param.h -------------------------------------------------------------------------------- /include/arm/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/profile.h -------------------------------------------------------------------------------- /include/arm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/signal.h -------------------------------------------------------------------------------- /include/arm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/types.h -------------------------------------------------------------------------------- /include/arm/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arm/vmparam.h -------------------------------------------------------------------------------- /include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arpa/ftp.h -------------------------------------------------------------------------------- /include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arpa/inet.h -------------------------------------------------------------------------------- /include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arpa/nameser.h -------------------------------------------------------------------------------- /include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arpa/telnet.h -------------------------------------------------------------------------------- /include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/arpa/tftp.h -------------------------------------------------------------------------------- /include/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/asl.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/atm/atm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/atm/atm_types.h -------------------------------------------------------------------------------- /include/bank/bank_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bank/bank_types.h -------------------------------------------------------------------------------- /include/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bitstring.h -------------------------------------------------------------------------------- /include/bootparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bootparams.h -------------------------------------------------------------------------------- /include/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bootstrap.h -------------------------------------------------------------------------------- /include/bsm/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit.h -------------------------------------------------------------------------------- /include/bsm/audit_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_domain.h -------------------------------------------------------------------------------- /include/bsm/audit_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_errno.h -------------------------------------------------------------------------------- /include/bsm/audit_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_fcntl.h -------------------------------------------------------------------------------- /include/bsm/audit_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_filter.h -------------------------------------------------------------------------------- /include/bsm/audit_kevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_kevents.h -------------------------------------------------------------------------------- /include/bsm/audit_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_record.h -------------------------------------------------------------------------------- /include/bsm/audit_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_session.h -------------------------------------------------------------------------------- /include/bsm/audit_uevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/audit_uevents.h -------------------------------------------------------------------------------- /include/bsm/libbsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bsm/libbsm.h -------------------------------------------------------------------------------- /include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/bzlib.h -------------------------------------------------------------------------------- /include/c++/v1/__assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__assert -------------------------------------------------------------------------------- /include/c++/v1/__bit/blsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__bit/blsr.h -------------------------------------------------------------------------------- /include/c++/v1/__config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__config -------------------------------------------------------------------------------- /include/c++/v1/__debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__debug -------------------------------------------------------------------------------- /include/c++/v1/__errc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__errc -------------------------------------------------------------------------------- /include/c++/v1/__fwd/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__fwd/get.h -------------------------------------------------------------------------------- /include/c++/v1/__fwd/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__fwd/hash.h -------------------------------------------------------------------------------- /include/c++/v1/__fwd/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__fwd/pair.h -------------------------------------------------------------------------------- /include/c++/v1/__fwd/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__fwd/span.h -------------------------------------------------------------------------------- /include/c++/v1/__hash_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__hash_table -------------------------------------------------------------------------------- /include/c++/v1/__ios/fpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__ios/fpos.h -------------------------------------------------------------------------------- /include/c++/v1/__locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__locale -------------------------------------------------------------------------------- /include/c++/v1/__mutex_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__mutex_base -------------------------------------------------------------------------------- /include/c++/v1/__std_stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__std_stream -------------------------------------------------------------------------------- /include/c++/v1/__tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/__tree -------------------------------------------------------------------------------- /include/c++/v1/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/algorithm -------------------------------------------------------------------------------- /include/c++/v1/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/any -------------------------------------------------------------------------------- /include/c++/v1/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/array -------------------------------------------------------------------------------- /include/c++/v1/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/atomic -------------------------------------------------------------------------------- /include/c++/v1/barrier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/barrier -------------------------------------------------------------------------------- /include/c++/v1/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/bit -------------------------------------------------------------------------------- /include/c++/v1/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/bitset -------------------------------------------------------------------------------- /include/c++/v1/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cassert -------------------------------------------------------------------------------- /include/c++/v1/ccomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ccomplex -------------------------------------------------------------------------------- /include/c++/v1/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cctype -------------------------------------------------------------------------------- /include/c++/v1/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cerrno -------------------------------------------------------------------------------- /include/c++/v1/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cfenv -------------------------------------------------------------------------------- /include/c++/v1/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cfloat -------------------------------------------------------------------------------- /include/c++/v1/charconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/charconv -------------------------------------------------------------------------------- /include/c++/v1/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/chrono -------------------------------------------------------------------------------- /include/c++/v1/cinttypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cinttypes -------------------------------------------------------------------------------- /include/c++/v1/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ciso646 -------------------------------------------------------------------------------- /include/c++/v1/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/climits -------------------------------------------------------------------------------- /include/c++/v1/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/clocale -------------------------------------------------------------------------------- /include/c++/v1/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cmath -------------------------------------------------------------------------------- /include/c++/v1/codecvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/codecvt -------------------------------------------------------------------------------- /include/c++/v1/compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/compare -------------------------------------------------------------------------------- /include/c++/v1/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/complex -------------------------------------------------------------------------------- /include/c++/v1/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/complex.h -------------------------------------------------------------------------------- /include/c++/v1/concepts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/concepts -------------------------------------------------------------------------------- /include/c++/v1/coroutine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/coroutine -------------------------------------------------------------------------------- /include/c++/v1/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/csetjmp -------------------------------------------------------------------------------- /include/c++/v1/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/csignal -------------------------------------------------------------------------------- /include/c++/v1/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstdarg -------------------------------------------------------------------------------- /include/c++/v1/cstdbool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstdbool -------------------------------------------------------------------------------- /include/c++/v1/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstddef -------------------------------------------------------------------------------- /include/c++/v1/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstdint -------------------------------------------------------------------------------- /include/c++/v1/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstdio -------------------------------------------------------------------------------- /include/c++/v1/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstdlib -------------------------------------------------------------------------------- /include/c++/v1/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cstring -------------------------------------------------------------------------------- /include/c++/v1/ctgmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ctgmath -------------------------------------------------------------------------------- /include/c++/v1/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ctime -------------------------------------------------------------------------------- /include/c++/v1/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ctype.h -------------------------------------------------------------------------------- /include/c++/v1/cuchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cuchar -------------------------------------------------------------------------------- /include/c++/v1/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cwchar -------------------------------------------------------------------------------- /include/c++/v1/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cwctype -------------------------------------------------------------------------------- /include/c++/v1/cxxabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/cxxabi.h -------------------------------------------------------------------------------- /include/c++/v1/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/deque -------------------------------------------------------------------------------- /include/c++/v1/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/errno.h -------------------------------------------------------------------------------- /include/c++/v1/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/exception -------------------------------------------------------------------------------- /include/c++/v1/execution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/execution -------------------------------------------------------------------------------- /include/c++/v1/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/expected -------------------------------------------------------------------------------- /include/c++/v1/ext/__hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ext/__hash -------------------------------------------------------------------------------- /include/c++/v1/ext/hash_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ext/hash_map -------------------------------------------------------------------------------- /include/c++/v1/ext/hash_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ext/hash_set -------------------------------------------------------------------------------- /include/c++/v1/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/fenv.h -------------------------------------------------------------------------------- /include/c++/v1/filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/filesystem -------------------------------------------------------------------------------- /include/c++/v1/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/float.h -------------------------------------------------------------------------------- /include/c++/v1/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/format -------------------------------------------------------------------------------- /include/c++/v1/forward_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/forward_list -------------------------------------------------------------------------------- /include/c++/v1/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/fstream -------------------------------------------------------------------------------- /include/c++/v1/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/functional -------------------------------------------------------------------------------- /include/c++/v1/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/future -------------------------------------------------------------------------------- /include/c++/v1/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/inttypes.h -------------------------------------------------------------------------------- /include/c++/v1/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/iomanip -------------------------------------------------------------------------------- /include/c++/v1/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ios -------------------------------------------------------------------------------- /include/c++/v1/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/iosfwd -------------------------------------------------------------------------------- /include/c++/v1/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/iostream -------------------------------------------------------------------------------- /include/c++/v1/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/istream -------------------------------------------------------------------------------- /include/c++/v1/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/iterator -------------------------------------------------------------------------------- /include/c++/v1/latch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/latch -------------------------------------------------------------------------------- /include/c++/v1/libcxx.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/libcxx.imp -------------------------------------------------------------------------------- /include/c++/v1/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/limits -------------------------------------------------------------------------------- /include/c++/v1/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/limits.h -------------------------------------------------------------------------------- /include/c++/v1/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/list -------------------------------------------------------------------------------- /include/c++/v1/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/locale -------------------------------------------------------------------------------- /include/c++/v1/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/locale.h -------------------------------------------------------------------------------- /include/c++/v1/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/map -------------------------------------------------------------------------------- /include/c++/v1/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/math.h -------------------------------------------------------------------------------- /include/c++/v1/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/memory -------------------------------------------------------------------------------- /include/c++/v1/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/mutex -------------------------------------------------------------------------------- /include/c++/v1/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/new -------------------------------------------------------------------------------- /include/c++/v1/numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/numbers -------------------------------------------------------------------------------- /include/c++/v1/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/numeric -------------------------------------------------------------------------------- /include/c++/v1/optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/optional -------------------------------------------------------------------------------- /include/c++/v1/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ostream -------------------------------------------------------------------------------- /include/c++/v1/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/queue -------------------------------------------------------------------------------- /include/c++/v1/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/random -------------------------------------------------------------------------------- /include/c++/v1/ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ranges -------------------------------------------------------------------------------- /include/c++/v1/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/ratio -------------------------------------------------------------------------------- /include/c++/v1/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/regex -------------------------------------------------------------------------------- /include/c++/v1/semaphore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/semaphore -------------------------------------------------------------------------------- /include/c++/v1/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/set -------------------------------------------------------------------------------- /include/c++/v1/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/setjmp.h -------------------------------------------------------------------------------- /include/c++/v1/shared_mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/shared_mutex -------------------------------------------------------------------------------- /include/c++/v1/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/span -------------------------------------------------------------------------------- /include/c++/v1/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/sstream -------------------------------------------------------------------------------- /include/c++/v1/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stack -------------------------------------------------------------------------------- /include/c++/v1/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stdbool.h -------------------------------------------------------------------------------- /include/c++/v1/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stddef.h -------------------------------------------------------------------------------- /include/c++/v1/stdexcept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stdexcept -------------------------------------------------------------------------------- /include/c++/v1/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stdint.h -------------------------------------------------------------------------------- /include/c++/v1/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stdio.h -------------------------------------------------------------------------------- /include/c++/v1/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/stdlib.h -------------------------------------------------------------------------------- /include/c++/v1/streambuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/streambuf -------------------------------------------------------------------------------- /include/c++/v1/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/string -------------------------------------------------------------------------------- /include/c++/v1/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/string.h -------------------------------------------------------------------------------- /include/c++/v1/strstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/strstream -------------------------------------------------------------------------------- /include/c++/v1/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/tgmath.h -------------------------------------------------------------------------------- /include/c++/v1/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/thread -------------------------------------------------------------------------------- /include/c++/v1/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/tuple -------------------------------------------------------------------------------- /include/c++/v1/typeindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/typeindex -------------------------------------------------------------------------------- /include/c++/v1/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/typeinfo -------------------------------------------------------------------------------- /include/c++/v1/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/uchar.h -------------------------------------------------------------------------------- /include/c++/v1/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/utility -------------------------------------------------------------------------------- /include/c++/v1/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/valarray -------------------------------------------------------------------------------- /include/c++/v1/variant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/variant -------------------------------------------------------------------------------- /include/c++/v1/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/vector -------------------------------------------------------------------------------- /include/c++/v1/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/version -------------------------------------------------------------------------------- /include/c++/v1/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/wchar.h -------------------------------------------------------------------------------- /include/c++/v1/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/c++/v1/wctype.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/checkint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/checkint.h -------------------------------------------------------------------------------- /include/com_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/com_err.h -------------------------------------------------------------------------------- /include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/complex.h -------------------------------------------------------------------------------- /include/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/compression.h -------------------------------------------------------------------------------- /include/copyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/copyfile.h -------------------------------------------------------------------------------- /include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cpio.h -------------------------------------------------------------------------------- /include/crt_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/crt_externs.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/cups/adminutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/adminutil.h -------------------------------------------------------------------------------- /include/cups/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/array.h -------------------------------------------------------------------------------- /include/cups/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/backend.h -------------------------------------------------------------------------------- /include/cups/cups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/cups.h -------------------------------------------------------------------------------- /include/cups/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/dir.h -------------------------------------------------------------------------------- /include/cups/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/file.h -------------------------------------------------------------------------------- /include/cups/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/http.h -------------------------------------------------------------------------------- /include/cups/ipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/ipp.h -------------------------------------------------------------------------------- /include/cups/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/language.h -------------------------------------------------------------------------------- /include/cups/ppd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/ppd.h -------------------------------------------------------------------------------- /include/cups/pwg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/pwg.h -------------------------------------------------------------------------------- /include/cups/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/raster.h -------------------------------------------------------------------------------- /include/cups/transcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/cups/transcode.h -------------------------------------------------------------------------------- /include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/curl.h -------------------------------------------------------------------------------- /include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/curlver.h -------------------------------------------------------------------------------- /include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/easy.h -------------------------------------------------------------------------------- /include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/header.h -------------------------------------------------------------------------------- /include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/mprintf.h -------------------------------------------------------------------------------- /include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/multi.h -------------------------------------------------------------------------------- /include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/options.h -------------------------------------------------------------------------------- /include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/system.h -------------------------------------------------------------------------------- /include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curl/urlapi.h -------------------------------------------------------------------------------- /include/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/curses.h -------------------------------------------------------------------------------- /include/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/db.h -------------------------------------------------------------------------------- /include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dirent.h -------------------------------------------------------------------------------- /include/disktab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/disktab.h -------------------------------------------------------------------------------- /include/dispatch/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/base.h -------------------------------------------------------------------------------- /include/dispatch/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/block.h -------------------------------------------------------------------------------- /include/dispatch/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/data.h -------------------------------------------------------------------------------- /include/dispatch/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/group.h -------------------------------------------------------------------------------- /include/dispatch/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/io.h -------------------------------------------------------------------------------- /include/dispatch/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/once.h -------------------------------------------------------------------------------- /include/dispatch/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/queue.h -------------------------------------------------------------------------------- /include/dispatch/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dispatch/time.h -------------------------------------------------------------------------------- /include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dlfcn.h -------------------------------------------------------------------------------- /include/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dns.h -------------------------------------------------------------------------------- /include/dns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dns_sd.h -------------------------------------------------------------------------------- /include/dns_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dns_util.h -------------------------------------------------------------------------------- /include/dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/dtrace.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/err.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/eti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/eti.h -------------------------------------------------------------------------------- /include/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/execinfo.h -------------------------------------------------------------------------------- /include/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/expat.h -------------------------------------------------------------------------------- /include/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/expat_external.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fcntl.h -------------------------------------------------------------------------------- /include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fenv.h -------------------------------------------------------------------------------- /include/ffi/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ffi/ffi.h -------------------------------------------------------------------------------- /include/ffi/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ffi/ffitarget.h -------------------------------------------------------------------------------- /include/ffi/tramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ffi/tramp.h -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/float.h -------------------------------------------------------------------------------- /include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fmtmsg.h -------------------------------------------------------------------------------- /include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fnmatch.h -------------------------------------------------------------------------------- /include/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/form.h -------------------------------------------------------------------------------- /include/fsproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fsproperties.h -------------------------------------------------------------------------------- /include/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fstab.h -------------------------------------------------------------------------------- /include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/fts.h -------------------------------------------------------------------------------- /include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ftw.h -------------------------------------------------------------------------------- /include/get_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/get_compat.h -------------------------------------------------------------------------------- /include/gethostuuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/gethostuuid.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/gssapi.h -------------------------------------------------------------------------------- /include/gssapi/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/gssapi/gssapi.h -------------------------------------------------------------------------------- /include/hfs/hfs_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/hfs/hfs_format.h -------------------------------------------------------------------------------- /include/hfs/hfs_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/hfs/hfs_mount.h -------------------------------------------------------------------------------- /include/hfs/hfs_unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/hfs/hfs_unistr.h -------------------------------------------------------------------------------- /include/histedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/histedit.h -------------------------------------------------------------------------------- /include/i386/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/_limits.h -------------------------------------------------------------------------------- /include/i386/_mcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/_mcontext.h -------------------------------------------------------------------------------- /include/i386/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/_param.h -------------------------------------------------------------------------------- /include/i386/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/_types.h -------------------------------------------------------------------------------- /include/i386/eflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/eflags.h -------------------------------------------------------------------------------- /include/i386/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/endian.h -------------------------------------------------------------------------------- /include/i386/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/limits.h -------------------------------------------------------------------------------- /include/i386/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/param.h -------------------------------------------------------------------------------- /include/i386/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/profile.h -------------------------------------------------------------------------------- /include/i386/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/signal.h -------------------------------------------------------------------------------- /include/i386/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/types.h -------------------------------------------------------------------------------- /include/i386/user_ldt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/user_ldt.h -------------------------------------------------------------------------------- /include/i386/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/i386/vmparam.h -------------------------------------------------------------------------------- /include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/iconv.h -------------------------------------------------------------------------------- /include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ifaddrs.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/iso646.h -------------------------------------------------------------------------------- /include/kern/exc_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/kern/exc_guard.h -------------------------------------------------------------------------------- /include/kern/kcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/kern/kcdata.h -------------------------------------------------------------------------------- /include/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/krb5.h -------------------------------------------------------------------------------- /include/krb5/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/krb5/krb5.h -------------------------------------------------------------------------------- /include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/langinfo.h -------------------------------------------------------------------------------- /include/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/launch.h -------------------------------------------------------------------------------- /include/lber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/lber.h -------------------------------------------------------------------------------- /include/lber_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/lber_types.h -------------------------------------------------------------------------------- /include/ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldap.h -------------------------------------------------------------------------------- /include/ldap_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldap_cdefs.h -------------------------------------------------------------------------------- /include/ldap_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldap_features.h -------------------------------------------------------------------------------- /include/ldap_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldap_schema.h -------------------------------------------------------------------------------- /include/ldap_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldap_utf8.h -------------------------------------------------------------------------------- /include/ldif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ldif.h -------------------------------------------------------------------------------- /include/libDER/DERItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libDER/DERItem.h -------------------------------------------------------------------------------- /include/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libc.h -------------------------------------------------------------------------------- /include/libcharset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libcharset.h -------------------------------------------------------------------------------- /include/libexslt/exslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libexslt/exslt.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/libproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libproc.h -------------------------------------------------------------------------------- /include/libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libunwind.h -------------------------------------------------------------------------------- /include/libxml/SAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/SAX.h -------------------------------------------------------------------------------- /include/libxml/SAX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/SAX2.h -------------------------------------------------------------------------------- /include/libxml/c14n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/c14n.h -------------------------------------------------------------------------------- /include/libxml/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/catalog.h -------------------------------------------------------------------------------- /include/libxml/chvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/chvalid.h -------------------------------------------------------------------------------- /include/libxml/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/dict.h -------------------------------------------------------------------------------- /include/libxml/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/globals.h -------------------------------------------------------------------------------- /include/libxml/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/hash.h -------------------------------------------------------------------------------- /include/libxml/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/list.h -------------------------------------------------------------------------------- /include/libxml/nanoftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/nanoftp.h -------------------------------------------------------------------------------- /include/libxml/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/parser.h -------------------------------------------------------------------------------- /include/libxml/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/pattern.h -------------------------------------------------------------------------------- /include/libxml/relaxng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/relaxng.h -------------------------------------------------------------------------------- /include/libxml/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/threads.h -------------------------------------------------------------------------------- /include/libxml/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/tree.h -------------------------------------------------------------------------------- /include/libxml/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/uri.h -------------------------------------------------------------------------------- /include/libxml/valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/valid.h -------------------------------------------------------------------------------- /include/libxml/xlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/xlink.h -------------------------------------------------------------------------------- /include/libxml/xmlIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/xmlIO.h -------------------------------------------------------------------------------- /include/libxml/xmlsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/xmlsave.h -------------------------------------------------------------------------------- /include/libxml/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxml/xpath.h -------------------------------------------------------------------------------- /include/libxslt/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxslt/extra.h -------------------------------------------------------------------------------- /include/libxslt/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxslt/keys.h -------------------------------------------------------------------------------- /include/libxslt/xslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/libxslt/xslt.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/localcharset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/localcharset.h -------------------------------------------------------------------------------- /include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/locale.h -------------------------------------------------------------------------------- /include/mach-o/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/arch.h -------------------------------------------------------------------------------- /include/mach-o/dyld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/dyld.h -------------------------------------------------------------------------------- /include/mach-o/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/fat.h -------------------------------------------------------------------------------- /include/mach-o/getsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/getsect.h -------------------------------------------------------------------------------- /include/mach-o/ldsyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/ldsyms.h -------------------------------------------------------------------------------- /include/mach-o/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/loader.h -------------------------------------------------------------------------------- /include/mach-o/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/nlist.h -------------------------------------------------------------------------------- /include/mach-o/ranlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/ranlib.h -------------------------------------------------------------------------------- /include/mach-o/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/reloc.h -------------------------------------------------------------------------------- /include/mach-o/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/stab.h -------------------------------------------------------------------------------- /include/mach-o/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/swap.h -------------------------------------------------------------------------------- /include/mach-o/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach-o/utils.h -------------------------------------------------------------------------------- /include/mach/arm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/arm/asm.h -------------------------------------------------------------------------------- /include/mach/arm/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/arm/rpc.h -------------------------------------------------------------------------------- /include/mach/arm/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/arm/traps.h -------------------------------------------------------------------------------- /include/mach/arm64/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/arm64/asm.h -------------------------------------------------------------------------------- /include/mach/audit_triggers_types.h: -------------------------------------------------------------------------------- 1 | typedef const char* string_t; 2 | -------------------------------------------------------------------------------- /include/mach/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/boolean.h -------------------------------------------------------------------------------- /include/mach/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/bootstrap.h -------------------------------------------------------------------------------- /include/mach/clock.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/clock.defs -------------------------------------------------------------------------------- /include/mach/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/clock.h -------------------------------------------------------------------------------- /include/mach/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/error.h -------------------------------------------------------------------------------- /include/mach/exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/exc.defs -------------------------------------------------------------------------------- /include/mach/exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/exc.h -------------------------------------------------------------------------------- /include/mach/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/exception.h -------------------------------------------------------------------------------- /include/mach/host_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/host_info.h -------------------------------------------------------------------------------- /include/mach/host_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/host_priv.h -------------------------------------------------------------------------------- /include/mach/i386/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/i386/asm.h -------------------------------------------------------------------------------- /include/mach/i386/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/i386/rpc.h -------------------------------------------------------------------------------- /include/mach/kmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/kmod.h -------------------------------------------------------------------------------- /include/mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach.h -------------------------------------------------------------------------------- /include/mach/mach_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach_host.h -------------------------------------------------------------------------------- /include/mach/mach_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach_init.h -------------------------------------------------------------------------------- /include/mach/mach_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach_port.h -------------------------------------------------------------------------------- /include/mach/mach_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach_time.h -------------------------------------------------------------------------------- /include/mach/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mach_vm.h -------------------------------------------------------------------------------- /include/mach/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/machine.h -------------------------------------------------------------------------------- /include/mach/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/message.h -------------------------------------------------------------------------------- /include/mach/mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/mig.h -------------------------------------------------------------------------------- /include/mach/ndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/ndr.h -------------------------------------------------------------------------------- /include/mach/notify.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/notify.defs -------------------------------------------------------------------------------- /include/mach/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/notify.h -------------------------------------------------------------------------------- /include/mach/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/policy.h -------------------------------------------------------------------------------- /include/mach/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/port.h -------------------------------------------------------------------------------- /include/mach/port_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/port_obj.h -------------------------------------------------------------------------------- /include/mach/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/processor.h -------------------------------------------------------------------------------- /include/mach/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/rpc.h -------------------------------------------------------------------------------- /include/mach/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/sdt.h -------------------------------------------------------------------------------- /include/mach/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/semaphore.h -------------------------------------------------------------------------------- /include/mach/std_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/std_types.h -------------------------------------------------------------------------------- /include/mach/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/sync.h -------------------------------------------------------------------------------- /include/mach/task.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/task.defs -------------------------------------------------------------------------------- /include/mach/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/task.h -------------------------------------------------------------------------------- /include/mach/task_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/task_info.h -------------------------------------------------------------------------------- /include/mach/vm_map.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_map.defs -------------------------------------------------------------------------------- /include/mach/vm_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_map.h -------------------------------------------------------------------------------- /include/mach/vm_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_param.h -------------------------------------------------------------------------------- /include/mach/vm_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_prot.h -------------------------------------------------------------------------------- /include/mach/vm_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_region.h -------------------------------------------------------------------------------- /include/mach/vm_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_sync.h -------------------------------------------------------------------------------- /include/mach/vm_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_task.h -------------------------------------------------------------------------------- /include/mach/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mach/vm_types.h -------------------------------------------------------------------------------- /include/machine/_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/_param.h -------------------------------------------------------------------------------- /include/machine/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/_types.h -------------------------------------------------------------------------------- /include/machine/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/endian.h -------------------------------------------------------------------------------- /include/machine/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/limits.h -------------------------------------------------------------------------------- /include/machine/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/param.h -------------------------------------------------------------------------------- /include/machine/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/signal.h -------------------------------------------------------------------------------- /include/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/machine/types.h -------------------------------------------------------------------------------- /include/malloc/_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/malloc/_malloc.h -------------------------------------------------------------------------------- /include/malloc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/malloc/malloc.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/math.h -------------------------------------------------------------------------------- /include/membership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/membership.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/monetary.h -------------------------------------------------------------------------------- /include/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/monitor.h -------------------------------------------------------------------------------- /include/mpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/mpool.h -------------------------------------------------------------------------------- /include/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nameser.h -------------------------------------------------------------------------------- /include/nc_tparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nc_tparm.h -------------------------------------------------------------------------------- /include/ncurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ncurses.h -------------------------------------------------------------------------------- /include/ncurses_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ncurses_dll.h -------------------------------------------------------------------------------- /include/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ndbm.h -------------------------------------------------------------------------------- /include/net-snmp/machine/generic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * chip specific definitions go here 3 | */ 4 | -------------------------------------------------------------------------------- /include/net-snmp/system/bsdi.h: -------------------------------------------------------------------------------- 1 | #include "bsd.h" 2 | 3 | #define CHECK_RT_FLAGS 1 4 | -------------------------------------------------------------------------------- /include/net-snmp/system/mips.h: -------------------------------------------------------------------------------- 1 | 2 | #define NETSNMP_DONT_USE_NLIST 1 3 | 4 | #undef bsdlike 5 | -------------------------------------------------------------------------------- /include/net-snmp/system/solaris2.3.h: -------------------------------------------------------------------------------- 1 | #include "solaris2.5.h" 2 | -------------------------------------------------------------------------------- /include/net-snmp/system/solaris2.4.h: -------------------------------------------------------------------------------- 1 | #include "solaris2.5.h" 2 | -------------------------------------------------------------------------------- /include/net-snmp/system/solaris2.6.h: -------------------------------------------------------------------------------- 1 | #include "solaris.h" 2 | #undef NETSNMP_DONT_USE_NLIST 3 | -------------------------------------------------------------------------------- /include/net-snmp/system/sysv.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define SYSV 1 3 | -------------------------------------------------------------------------------- /include/net-snmp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net-snmp/types.h -------------------------------------------------------------------------------- /include/net/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/bpf.h -------------------------------------------------------------------------------- /include/net/dlil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/dlil.h -------------------------------------------------------------------------------- /include/net/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/ethernet.h -------------------------------------------------------------------------------- /include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if.h -------------------------------------------------------------------------------- /include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_arp.h -------------------------------------------------------------------------------- /include/net/if_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_dl.h -------------------------------------------------------------------------------- /include/net/if_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_llc.h -------------------------------------------------------------------------------- /include/net/if_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_media.h -------------------------------------------------------------------------------- /include/net/if_mib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_mib.h -------------------------------------------------------------------------------- /include/net/if_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_types.h -------------------------------------------------------------------------------- /include/net/if_utun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_utun.h -------------------------------------------------------------------------------- /include/net/if_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/if_var.h -------------------------------------------------------------------------------- /include/net/kext_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/kext_net.h -------------------------------------------------------------------------------- /include/net/ndrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/ndrv.h -------------------------------------------------------------------------------- /include/net/net_kev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/net_kev.h -------------------------------------------------------------------------------- /include/net/pfkeyv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/pfkeyv2.h -------------------------------------------------------------------------------- /include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/net/route.h -------------------------------------------------------------------------------- /include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netdb.h -------------------------------------------------------------------------------- /include/netinet/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/bootp.h -------------------------------------------------------------------------------- /include/netinet/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/icmp6.h -------------------------------------------------------------------------------- /include/netinet/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/igmp.h -------------------------------------------------------------------------------- /include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/in.h -------------------------------------------------------------------------------- /include/netinet/in_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/in_pcb.h -------------------------------------------------------------------------------- /include/netinet/in_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/in_var.h -------------------------------------------------------------------------------- /include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/ip.h -------------------------------------------------------------------------------- /include/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/ip6.h -------------------------------------------------------------------------------- /include/netinet/ip_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/ip_var.h -------------------------------------------------------------------------------- /include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/tcp.h -------------------------------------------------------------------------------- /include/netinet/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/tcpip.h -------------------------------------------------------------------------------- /include/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet/udp.h -------------------------------------------------------------------------------- /include/netinet6/ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet6/ah.h -------------------------------------------------------------------------------- /include/netinet6/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet6/esp.h -------------------------------------------------------------------------------- /include/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet6/in6.h -------------------------------------------------------------------------------- /include/netinet6/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet6/ipsec.h -------------------------------------------------------------------------------- /include/netinet6/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netinet6/nd6.h -------------------------------------------------------------------------------- /include/netkey/keysock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/netkey/keysock.h -------------------------------------------------------------------------------- /include/nfs/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nfs/nfs.h -------------------------------------------------------------------------------- /include/nfs/nfsproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nfs/nfsproto.h -------------------------------------------------------------------------------- /include/nfs/rpcv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nfs/rpcv2.h -------------------------------------------------------------------------------- /include/nfs/xdr_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nfs/xdr_subs.h -------------------------------------------------------------------------------- /include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nl_types.h -------------------------------------------------------------------------------- /include/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/nlist.h -------------------------------------------------------------------------------- /include/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/notify.h -------------------------------------------------------------------------------- /include/notify_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/notify_keys.h -------------------------------------------------------------------------------- /include/ntsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ntsid.h -------------------------------------------------------------------------------- /include/objc/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/List.h -------------------------------------------------------------------------------- /include/objc/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/NSObject.h -------------------------------------------------------------------------------- /include/objc/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/Object.h -------------------------------------------------------------------------------- /include/objc/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/Protocol.h -------------------------------------------------------------------------------- /include/objc/hashtable.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /include/objc/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/message.h -------------------------------------------------------------------------------- /include/objc/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/objc-api.h -------------------------------------------------------------------------------- /include/objc/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/objc-auto.h -------------------------------------------------------------------------------- /include/objc/objc-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/objc-load.h -------------------------------------------------------------------------------- /include/objc/objc-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/objc-sync.h -------------------------------------------------------------------------------- /include/objc/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/objc.h -------------------------------------------------------------------------------- /include/objc/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/objc/runtime.h -------------------------------------------------------------------------------- /include/os/_workgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/_workgroup.h -------------------------------------------------------------------------------- /include/os/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/activity.h -------------------------------------------------------------------------------- /include/os/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/atomic.h -------------------------------------------------------------------------------- /include/os/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/base.h -------------------------------------------------------------------------------- /include/os/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/clock.h -------------------------------------------------------------------------------- /include/os/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/lock.h -------------------------------------------------------------------------------- /include/os/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/log.h -------------------------------------------------------------------------------- /include/os/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/object.h -------------------------------------------------------------------------------- /include/os/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/overflow.h -------------------------------------------------------------------------------- /include/os/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/proc.h -------------------------------------------------------------------------------- /include/os/signpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/signpost.h -------------------------------------------------------------------------------- /include/os/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/trace.h -------------------------------------------------------------------------------- /include/os/trace_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/trace_base.h -------------------------------------------------------------------------------- /include/os/workgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/os/workgroup.h -------------------------------------------------------------------------------- /include/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/panel.h -------------------------------------------------------------------------------- /include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/paths.h -------------------------------------------------------------------------------- /include/pcap-bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap-bpf.h -------------------------------------------------------------------------------- /include/pcap-namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap-namedb.h -------------------------------------------------------------------------------- /include/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap.h -------------------------------------------------------------------------------- /include/pcap/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/bluetooth.h -------------------------------------------------------------------------------- /include/pcap/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/bpf.h -------------------------------------------------------------------------------- /include/pcap/dlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/dlt.h -------------------------------------------------------------------------------- /include/pcap/funcattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/funcattrs.h -------------------------------------------------------------------------------- /include/pcap/ipnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/ipnet.h -------------------------------------------------------------------------------- /include/pcap/namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/namedb.h -------------------------------------------------------------------------------- /include/pcap/nflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/nflog.h -------------------------------------------------------------------------------- /include/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/pcap.h -------------------------------------------------------------------------------- /include/pcap/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/sll.h -------------------------------------------------------------------------------- /include/pcap/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/socket.h -------------------------------------------------------------------------------- /include/pcap/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/usb.h -------------------------------------------------------------------------------- /include/pcap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pcap/vlan.h -------------------------------------------------------------------------------- /include/pexpert/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pexpert/boot.h -------------------------------------------------------------------------------- /include/pexpert/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pexpert/protos.h -------------------------------------------------------------------------------- /include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/poll.h -------------------------------------------------------------------------------- /include/printerdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/printerdb.h -------------------------------------------------------------------------------- /include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/printf.h -------------------------------------------------------------------------------- /include/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/profile.h -------------------------------------------------------------------------------- /include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread.h -------------------------------------------------------------------------------- /include/pthread/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread/qos.h -------------------------------------------------------------------------------- /include/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread/sched.h -------------------------------------------------------------------------------- /include/pthread/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread/spawn.h -------------------------------------------------------------------------------- /include/pthread_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread_impl.h -------------------------------------------------------------------------------- /include/pthread_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pthread_spis.h -------------------------------------------------------------------------------- /include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/pwd.h -------------------------------------------------------------------------------- /include/ranlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ranlib.h -------------------------------------------------------------------------------- /include/readpassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/readpassphrase.h -------------------------------------------------------------------------------- /include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/regex.h -------------------------------------------------------------------------------- /include/removefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/removefile.h -------------------------------------------------------------------------------- /include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/resolv.h -------------------------------------------------------------------------------- /include/rpc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/auth.h -------------------------------------------------------------------------------- /include/rpc/auth_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/auth_unix.h -------------------------------------------------------------------------------- /include/rpc/clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/clnt.h -------------------------------------------------------------------------------- /include/rpc/pmap_clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/pmap_clnt.h -------------------------------------------------------------------------------- /include/rpc/pmap_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/pmap_prot.h -------------------------------------------------------------------------------- /include/rpc/pmap_rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/pmap_rmt.h -------------------------------------------------------------------------------- /include/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/rpc.h -------------------------------------------------------------------------------- /include/rpc/rpc_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/rpc_msg.h -------------------------------------------------------------------------------- /include/rpc/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/svc.h -------------------------------------------------------------------------------- /include/rpc/svc_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/svc_auth.h -------------------------------------------------------------------------------- /include/rpc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/types.h -------------------------------------------------------------------------------- /include/rpc/xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpc/xdr.h -------------------------------------------------------------------------------- /include/rpcsvc/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/mount.h -------------------------------------------------------------------------------- /include/rpcsvc/mount.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/mount.x -------------------------------------------------------------------------------- /include/rpcsvc/rex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rex.h -------------------------------------------------------------------------------- /include/rpcsvc/rex.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rex.x -------------------------------------------------------------------------------- /include/rpcsvc/rnusers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rnusers.h -------------------------------------------------------------------------------- /include/rpcsvc/rnusers.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rnusers.x -------------------------------------------------------------------------------- /include/rpcsvc/rquota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rquota.h -------------------------------------------------------------------------------- /include/rpcsvc/rquota.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rquota.x -------------------------------------------------------------------------------- /include/rpcsvc/rstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rstat.h -------------------------------------------------------------------------------- /include/rpcsvc/rstat.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rstat.x -------------------------------------------------------------------------------- /include/rpcsvc/rusers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rusers.h -------------------------------------------------------------------------------- /include/rpcsvc/rusers.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rusers.x -------------------------------------------------------------------------------- /include/rpcsvc/rwall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rwall.h -------------------------------------------------------------------------------- /include/rpcsvc/rwall.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/rwall.x -------------------------------------------------------------------------------- /include/rpcsvc/spray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/spray.h -------------------------------------------------------------------------------- /include/rpcsvc/spray.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/spray.x -------------------------------------------------------------------------------- /include/rpcsvc/yp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/yp.h -------------------------------------------------------------------------------- /include/rpcsvc/yp.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/yp.x -------------------------------------------------------------------------------- /include/rpcsvc/yp_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/yp_prot.h -------------------------------------------------------------------------------- /include/rpcsvc/ypclnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rpcsvc/ypclnt.h -------------------------------------------------------------------------------- /include/rune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/rune.h -------------------------------------------------------------------------------- /include/runetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/runetype.h -------------------------------------------------------------------------------- /include/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sandbox.h -------------------------------------------------------------------------------- /include/sasl/gai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/gai.h -------------------------------------------------------------------------------- /include/sasl/hmac-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/hmac-md5.h -------------------------------------------------------------------------------- /include/sasl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/md5.h -------------------------------------------------------------------------------- /include/sasl/md5global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/md5global.h -------------------------------------------------------------------------------- /include/sasl/prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/prop.h -------------------------------------------------------------------------------- /include/sasl/sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/sasl.h -------------------------------------------------------------------------------- /include/sasl/saslplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/saslplug.h -------------------------------------------------------------------------------- /include/sasl/saslutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sasl/saslutil.h -------------------------------------------------------------------------------- /include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sched.h -------------------------------------------------------------------------------- /include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/search.h -------------------------------------------------------------------------------- /include/secure/_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/secure/_common.h -------------------------------------------------------------------------------- /include/secure/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/secure/_stdio.h -------------------------------------------------------------------------------- /include/secure/_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/secure/_string.h -------------------------------------------------------------------------------- /include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/semaphore.h -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sgtty.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/simd/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/base.h -------------------------------------------------------------------------------- /include/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/common.h -------------------------------------------------------------------------------- /include/simd/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/extern.h -------------------------------------------------------------------------------- /include/simd/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/geometry.h -------------------------------------------------------------------------------- /include/simd/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/logic.h -------------------------------------------------------------------------------- /include/simd/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/math.h -------------------------------------------------------------------------------- /include/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/matrix.h -------------------------------------------------------------------------------- /include/simd/packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/packed.h -------------------------------------------------------------------------------- /include/simd/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/simd.h -------------------------------------------------------------------------------- /include/simd/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/types.h -------------------------------------------------------------------------------- /include/simd/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/simd/vector.h -------------------------------------------------------------------------------- /include/slapi-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/slapi-plugin.h -------------------------------------------------------------------------------- /include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/spawn.h -------------------------------------------------------------------------------- /include/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sqlite3.h -------------------------------------------------------------------------------- /include/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sqlite3ext.h -------------------------------------------------------------------------------- /include/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stab.h -------------------------------------------------------------------------------- /include/standards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/standards.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/strhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/strhash.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/string.h -------------------------------------------------------------------------------- /include/string_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/string_x86.h -------------------------------------------------------------------------------- /include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/stringlist.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/struct.h -------------------------------------------------------------------------------- /include/sys/_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/_endian.h -------------------------------------------------------------------------------- /include/sys/_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/_select.h -------------------------------------------------------------------------------- /include/sys/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/_structs.h -------------------------------------------------------------------------------- /include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/_types.h -------------------------------------------------------------------------------- /include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/acct.h -------------------------------------------------------------------------------- /include/sys/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/acl.h -------------------------------------------------------------------------------- /include/sys/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/aio.h -------------------------------------------------------------------------------- /include/sys/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/attr.h -------------------------------------------------------------------------------- /include/sys/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/buf.h -------------------------------------------------------------------------------- /include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/cdefs.h -------------------------------------------------------------------------------- /include/sys/clonefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/clonefile.h -------------------------------------------------------------------------------- /include/sys/commpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/commpage.h -------------------------------------------------------------------------------- /include/sys/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/conf.h -------------------------------------------------------------------------------- /include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/dir.h -------------------------------------------------------------------------------- /include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/dirent.h -------------------------------------------------------------------------------- /include/sys/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/disk.h -------------------------------------------------------------------------------- /include/sys/dkstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/dkstat.h -------------------------------------------------------------------------------- /include/sys/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/domain.h -------------------------------------------------------------------------------- /include/sys/dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/dtrace.h -------------------------------------------------------------------------------- /include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/errno.h -------------------------------------------------------------------------------- /include/sys/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ev.h -------------------------------------------------------------------------------- /include/sys/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/event.h -------------------------------------------------------------------------------- /include/sys/fasttrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/fasttrap.h -------------------------------------------------------------------------------- /include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/fcntl.h -------------------------------------------------------------------------------- /include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/file.h -------------------------------------------------------------------------------- /include/sys/filedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/filedesc.h -------------------------------------------------------------------------------- /include/sys/filio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/filio.h -------------------------------------------------------------------------------- /include/sys/fsgetpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/fsgetpath.h -------------------------------------------------------------------------------- /include/sys/gmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/gmon.h -------------------------------------------------------------------------------- /include/sys/ioccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ioccom.h -------------------------------------------------------------------------------- /include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ioctl.h -------------------------------------------------------------------------------- /include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ipc.h -------------------------------------------------------------------------------- /include/sys/kauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/kauth.h -------------------------------------------------------------------------------- /include/sys/kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/kdebug.h -------------------------------------------------------------------------------- /include/sys/kern_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/kern_event.h -------------------------------------------------------------------------------- /include/sys/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/kernel.h -------------------------------------------------------------------------------- /include/sys/lctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/lctx.h -------------------------------------------------------------------------------- /include/sys/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/lock.h -------------------------------------------------------------------------------- /include/sys/lockf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/lockf.h -------------------------------------------------------------------------------- /include/sys/lockstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/lockstat.h -------------------------------------------------------------------------------- /include/sys/log_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/log_data.h -------------------------------------------------------------------------------- /include/sys/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/malloc.h -------------------------------------------------------------------------------- /include/sys/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/mbuf.h -------------------------------------------------------------------------------- /include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/mman.h -------------------------------------------------------------------------------- /include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/mount.h -------------------------------------------------------------------------------- /include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/msg.h -------------------------------------------------------------------------------- /include/sys/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/msgbuf.h -------------------------------------------------------------------------------- /include/sys/netport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/netport.h -------------------------------------------------------------------------------- /include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/param.h -------------------------------------------------------------------------------- /include/sys/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/paths.h -------------------------------------------------------------------------------- /include/sys/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/pipe.h -------------------------------------------------------------------------------- /include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/poll.h -------------------------------------------------------------------------------- /include/sys/posix_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/posix_sem.h -------------------------------------------------------------------------------- /include/sys/posix_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/posix_shm.h -------------------------------------------------------------------------------- /include/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/proc.h -------------------------------------------------------------------------------- /include/sys/proc_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/proc_info.h -------------------------------------------------------------------------------- /include/sys/protosw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/protosw.h -------------------------------------------------------------------------------- /include/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ptrace.h -------------------------------------------------------------------------------- /include/sys/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/qos.h -------------------------------------------------------------------------------- /include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/queue.h -------------------------------------------------------------------------------- /include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/quota.h -------------------------------------------------------------------------------- /include/sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/random.h -------------------------------------------------------------------------------- /include/sys/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/rbtree.h -------------------------------------------------------------------------------- /include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/reboot.h -------------------------------------------------------------------------------- /include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/resource.h -------------------------------------------------------------------------------- /include/sys/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sbuf.h -------------------------------------------------------------------------------- /include/sys/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sdt.h -------------------------------------------------------------------------------- /include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/select.h -------------------------------------------------------------------------------- /include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sem.h -------------------------------------------------------------------------------- /include/sys/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/semaphore.h -------------------------------------------------------------------------------- /include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/shm.h -------------------------------------------------------------------------------- /include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/signal.h -------------------------------------------------------------------------------- /include/sys/signalvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/signalvar.h -------------------------------------------------------------------------------- /include/sys/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/snapshot.h -------------------------------------------------------------------------------- /include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/socket.h -------------------------------------------------------------------------------- /include/sys/socketvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/socketvar.h -------------------------------------------------------------------------------- /include/sys/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sockio.h -------------------------------------------------------------------------------- /include/sys/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/spawn.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/statvfs.h -------------------------------------------------------------------------------- /include/sys/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/stdio.h -------------------------------------------------------------------------------- /include/sys/sys_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sys_domain.h -------------------------------------------------------------------------------- /include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/syscall.h -------------------------------------------------------------------------------- /include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/sysctl.h -------------------------------------------------------------------------------- /include/sys/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/syslimits.h -------------------------------------------------------------------------------- /include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/syslog.h -------------------------------------------------------------------------------- /include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/termios.h -------------------------------------------------------------------------------- /include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/time.h -------------------------------------------------------------------------------- /include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/timeb.h -------------------------------------------------------------------------------- /include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/times.h -------------------------------------------------------------------------------- /include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/timex.h -------------------------------------------------------------------------------- /include/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/trace.h -------------------------------------------------------------------------------- /include/sys/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/tty.h -------------------------------------------------------------------------------- /include/sys/ttychars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ttychars.h -------------------------------------------------------------------------------- /include/sys/ttycom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ttycom.h -------------------------------------------------------------------------------- /include/sys/ttydev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ttydev.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /include/sys/ubc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ubc.h -------------------------------------------------------------------------------- /include/sys/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ucontext.h -------------------------------------------------------------------------------- /include/sys/ucred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/ucred.h -------------------------------------------------------------------------------- /include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/uio.h -------------------------------------------------------------------------------- /include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/un.h -------------------------------------------------------------------------------- /include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/unistd.h -------------------------------------------------------------------------------- /include/sys/unpcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/unpcb.h -------------------------------------------------------------------------------- /include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/user.h -------------------------------------------------------------------------------- /include/sys/utfconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/utfconv.h -------------------------------------------------------------------------------- /include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/utsname.h -------------------------------------------------------------------------------- /include/sys/vadvise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vadvise.h -------------------------------------------------------------------------------- /include/sys/vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vcmd.h -------------------------------------------------------------------------------- /include/sys/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vm.h -------------------------------------------------------------------------------- /include/sys/vmmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vmmeter.h -------------------------------------------------------------------------------- /include/sys/vmparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vmparam.h -------------------------------------------------------------------------------- /include/sys/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vnode.h -------------------------------------------------------------------------------- /include/sys/vnode_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vnode_if.h -------------------------------------------------------------------------------- /include/sys/vsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vsock.h -------------------------------------------------------------------------------- /include/sys/vstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/vstat.h -------------------------------------------------------------------------------- /include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/wait.h -------------------------------------------------------------------------------- /include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sys/xattr.h -------------------------------------------------------------------------------- /include/sysdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sysdir.h -------------------------------------------------------------------------------- /include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/sysexits.h -------------------------------------------------------------------------------- /include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/syslog.h -------------------------------------------------------------------------------- /include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tar.h -------------------------------------------------------------------------------- /include/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/term.h -------------------------------------------------------------------------------- /include/term_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/term_entry.h -------------------------------------------------------------------------------- /include/termcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/termcap.h -------------------------------------------------------------------------------- /include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/termios.h -------------------------------------------------------------------------------- /include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tgmath.h -------------------------------------------------------------------------------- /include/tic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tic.h -------------------------------------------------------------------------------- /include/tidy/buffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tidy/buffio.h -------------------------------------------------------------------------------- /include/tidy/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tidy/platform.h -------------------------------------------------------------------------------- /include/tidy/tidy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tidy/tidy.h -------------------------------------------------------------------------------- /include/tidy/tidyenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tidy/tidyenum.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/time.h -------------------------------------------------------------------------------- /include/timeconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/timeconv.h -------------------------------------------------------------------------------- /include/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ttyent.h -------------------------------------------------------------------------------- /include/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/tzfile.h -------------------------------------------------------------------------------- /include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ucontext.h -------------------------------------------------------------------------------- /include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/ulimit.h -------------------------------------------------------------------------------- /include/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unctrl.h -------------------------------------------------------------------------------- /include/unicode/ptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/ptypes.h -------------------------------------------------------------------------------- /include/unicode/putil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/putil.h -------------------------------------------------------------------------------- /include/unicode/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/uchar.h -------------------------------------------------------------------------------- /include/unicode/ucpmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/ucpmap.h -------------------------------------------------------------------------------- /include/unicode/uidna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/uidna.h -------------------------------------------------------------------------------- /include/unicode/uiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/uiter.h -------------------------------------------------------------------------------- /include/unicode/uregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/uregex.h -------------------------------------------------------------------------------- /include/unicode/utext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/utext.h -------------------------------------------------------------------------------- /include/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/utf.h -------------------------------------------------------------------------------- /include/unicode/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/utf16.h -------------------------------------------------------------------------------- /include/unicode/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/utf8.h -------------------------------------------------------------------------------- /include/unicode/utypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unicode/utypes.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unwind.h -------------------------------------------------------------------------------- /include/unwind_itanium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/unwind_itanium.h -------------------------------------------------------------------------------- /include/usbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/usbuf.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/util.h -------------------------------------------------------------------------------- /include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/utime.h -------------------------------------------------------------------------------- /include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/utmp.h -------------------------------------------------------------------------------- /include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/utmpx.h -------------------------------------------------------------------------------- /include/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/uuid/uuid.h -------------------------------------------------------------------------------- /include/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/vis.h -------------------------------------------------------------------------------- /include/vproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/vproc.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/wctype.h -------------------------------------------------------------------------------- /include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/wordexp.h -------------------------------------------------------------------------------- /include/xar/xar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xar/xar.h -------------------------------------------------------------------------------- /include/xattr_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xattr_flags.h -------------------------------------------------------------------------------- /include/xcselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xcselect.h -------------------------------------------------------------------------------- /include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale.h -------------------------------------------------------------------------------- /include/xlocale/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale/_ctype.h -------------------------------------------------------------------------------- /include/xlocale/_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale/_regex.h -------------------------------------------------------------------------------- /include/xlocale/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale/_stdio.h -------------------------------------------------------------------------------- /include/xlocale/_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale/_time.h -------------------------------------------------------------------------------- /include/xlocale/_wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xlocale/_wchar.h -------------------------------------------------------------------------------- /include/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/activity.h -------------------------------------------------------------------------------- /include/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/base.h -------------------------------------------------------------------------------- /include/xpc/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/connection.h -------------------------------------------------------------------------------- /include/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/debug.h -------------------------------------------------------------------------------- /include/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/endpoint.h -------------------------------------------------------------------------------- /include/xpc/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/listener.h -------------------------------------------------------------------------------- /include/xpc/rich_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/rich_error.h -------------------------------------------------------------------------------- /include/xpc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/session.h -------------------------------------------------------------------------------- /include/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/xpc/xpc.h -------------------------------------------------------------------------------- /include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/zconf.h -------------------------------------------------------------------------------- /include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/include/zlib.h -------------------------------------------------------------------------------- /lib/libobjc.A.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/lib/libobjc.A.tbd -------------------------------------------------------------------------------- /lib/libobjc.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/lib/libobjc.tbd -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexops/xcode-frameworks/HEAD/update.sh -------------------------------------------------------------------------------- /verify.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | 4 | ./update.sh 5 | git diff 6 | --------------------------------------------------------------------------------