[Xcode16] Allow the runtime to compile with Xcode 16 beta 2. (#20844)

Add support for Xcode 16 beta 2.

---------

Co-authored-by: Manuel de la Pena Saenz <mandel@microsoft.com>
This commit is contained in:
Rolf Bjarne Kvinge 2024-07-10 13:00:51 +02:00 коммит произвёл GitHub
Родитель f69a6d5e36
Коммит 72d87db71c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
86 изменённых файлов: 636 добавлений и 91 удалений

Просмотреть файл

@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_
# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=16.0
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_16-beta.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_16.0.0-beta.app/Contents/Developer
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_16-beta_2.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_16.0.0-beta2.app/Contents/Developer
XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2)
# We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app"

Просмотреть файл

@ -1153,11 +1153,13 @@ void *xamarin_nsnumber_to_nfloat (NSNumber *number, void *ptr, MonoClass *manage
// If called multiple times in succession, the returned pointer can be passed as the second ptr argument, and it need only be freed once done iterating.
void *xamarin_nsvalue_to_nsrange (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { NSRange *valueptr = (NSRange *) (ptr ? ptr : xamarin_calloc (sizeof (NSRange))); *valueptr = [value rangeValue]; return valueptr; }
#if HAVE_UIKIT // Yep, these CoreGraphics-looking category method is defined in UIKit.
#if !TARGET_OS_WATCH
void *xamarin_nsvalue_to_cgaffinetransform (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGAffineTransform *valueptr = (CGAffineTransform *) (ptr ? ptr : xamarin_calloc (sizeof (CGAffineTransform))); *valueptr = [value CGAffineTransformValue]; return valueptr; }
void *xamarin_nsvalue_to_cgpoint (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGPoint *valueptr = (CGPoint *) (ptr ? ptr : xamarin_calloc (sizeof (CGPoint))); *valueptr = [value CGPointValue]; return valueptr; }
void *xamarin_nsvalue_to_cgrect (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGRect *valueptr = (CGRect *) (ptr ? ptr : xamarin_calloc (sizeof (CGRect))); *valueptr = [value CGRectValue]; return valueptr; }
void *xamarin_nsvalue_to_cgsize (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGSize *valueptr = (CGSize *) (ptr ? ptr : xamarin_calloc (sizeof (CGSize))); *valueptr = [value CGSizeValue]; return valueptr; }
void *xamarin_nsvalue_to_cgvector (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGVector *valueptr = (CGVector *) (ptr ? ptr : xamarin_calloc (sizeof (CGVector))); *valueptr = [value CGVectorValue]; return valueptr; }
#endif
void *xamarin_nsvalue_to_nsdirectionaledgeinsets(NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) {NSDirectionalEdgeInsets *valueptr =(NSDirectionalEdgeInsets *) (ptr ? ptr : xamarin_calloc (sizeof (NSDirectionalEdgeInsets)));*valueptr = [value directionalEdgeInsetsValue];return valueptr; }
#endif
#if HAVE_COREANIMATION
@ -1217,7 +1219,9 @@ xamarin_nsvalue_to_scnvector3 (NSValue *value, void *ptr, MonoClass *managedType
}
void *xamarin_nsvalue_to_scnvector4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { SCNVector4 *valueptr = (SCNVector4 *) (ptr ? ptr : xamarin_calloc (sizeof (SCNVector4))); *valueptr = [value SCNVector4Value]; return valueptr; }
#if HAVE_UIKIT
#if !TARGET_OS_WATCH
void *xamarin_nsvalue_to_uiedgeinsets (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { UIEdgeInsets *valueptr = (UIEdgeInsets *) (ptr ? ptr : xamarin_calloc (sizeof (UIEdgeInsets))); *valueptr = [value UIEdgeInsetsValue]; return valueptr; }
#endif
void *xamarin_nsvalue_to_uioffset (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { UIOffset *valueptr = (UIOffset *) (ptr ? ptr : xamarin_calloc (sizeof (UIOffset))); *valueptr = [value UIOffsetValue]; return valueptr; }
#endif
@ -1244,11 +1248,13 @@ id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *excep
id xamarin_nsrange_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithRange: *(NSRange *) mono_object_unbox (value)]; }
#if HAVE_UIKIT // yep, these CoreGraphics-looking category methods are defined in UIKit
#if !TARGET_OS_WATCH
id xamarin_cgaffinetransform_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGAffineTransform: *(CGAffineTransform *) mono_object_unbox (value)]; }
id xamarin_cgpoint_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGPoint: *(CGPoint *) mono_object_unbox (value)]; }
id xamarin_cgrect_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGRect: *(CGRect *) mono_object_unbox (value)]; }
id xamarin_cgsize_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGSize: *(CGSize *) mono_object_unbox (value)]; }
id xamarin_cgvector_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGVector: *(CGVector *) mono_object_unbox (value)]; }
#endif
id xamarin_nsdirectionaledgeinsets_to_nsvalue(MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithDirectionalEdgeInsets:*(NSDirectionalEdgeInsets *)mono_object_unbox (value)]; }
#endif
#if HAVE_COREANIMATION
@ -1269,7 +1275,7 @@ id xamarin_mkcoordinatespan_to_nsvalue (MonoObject *value, void *context,
id xamarin_scnmatrix4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNMatrix4: *(SCNMatrix4 *) mono_object_unbox (value)]; }
id xamarin_scnvector3_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNVector3: *(SCNVector3 *) mono_object_unbox (value)]; }
id xamarin_scnvector4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNVector4: *(SCNVector4 *) mono_object_unbox (value)]; }
#if HAVE_UIKIT
#if HAVE_UIKIT && !TARGET_OS_WATCH
id xamarin_uiedgeinsets_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithUIEdgeInsets: *(UIEdgeInsets *) mono_object_unbox (value)]; }
id xamarin_uioffset_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithUIOffset: *(UIOffset *) mono_object_unbox (value)]; }
#endif
@ -1600,6 +1606,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool
if (!strcmp (fullname, "Foundation.NSRange")) {
func = to_managed ? (void *) xamarin_nsvalue_to_nsrange : (void *) xamarin_nsrange_to_nsvalue;
#if HAVE_UIKIT // yep, these CoreGraphics-looking category methods are defined in UIKit
#if !TARGET_OS_WATCH
} else if (!strcmp (fullname, "CoreGraphics.CGAffineTransform")) {
func = to_managed ? (void *) xamarin_nsvalue_to_cgaffinetransform : (void *) xamarin_cgaffinetransform_to_nsvalue;
} else if (!strcmp (fullname, "CoreGraphics.CGPoint")) {
@ -1610,6 +1617,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool
func = to_managed ? (void *) xamarin_nsvalue_to_cgsize : (void *) xamarin_cgsize_to_nsvalue;
} else if (!strcmp (fullname, "CoreGraphics.CGVector")) {
func = to_managed ? (void *) xamarin_nsvalue_to_cgvector : (void *) xamarin_cgvector_to_nsvalue;
#endif
} else if (!strcmp (fullname, "UIKit.NSDirectionalEdgeInsets")) {
func = to_managed ? (void *) xamarin_nsvalue_to_nsdirectionaledgeinsets : (void *) xamarin_nsdirectionaledgeinsets_to_nsvalue;
#endif
@ -1641,7 +1649,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool
func = to_managed ? (void *) xamarin_nsvalue_to_scnvector3 : (void *) xamarin_scnvector3_to_nsvalue;
} else if (!strcmp (fullname, "SceneKit.SCNVector4")) {
func = to_managed ? (void *) xamarin_nsvalue_to_scnvector4 : (void *) xamarin_scnvector4_to_nsvalue;
#if HAVE_UIKIT
#if HAVE_UIKIT && !TARGET_OS_WATCH
} else if (!strcmp (fullname, "UIKit.UIEdgeInsets")) {
func = to_managed ? (void *) xamarin_nsvalue_to_uiedgeinsets : (void *) xamarin_uiedgeinsets_to_nsvalue;
} else if (!strcmp (fullname, "UIKit.UIOffset")) {

Просмотреть файл

@ -141,11 +141,13 @@ void *xamarin_nsnumber_to_nfloat (NSNumber *number, void *ptr, MonoClass *manage
// Returns a pointer to the value type, which must be freed using xamarin_free
void *xamarin_nsvalue_to_nsrange (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
#if !TARGET_OS_WATCH
void *xamarin_nsvalue_to_cgaffinetransform (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cgpoint (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cgrect (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cgsize (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cgvector (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
#endif
void *xamarin_nsvalue_to_catransform3d (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cllocationcoordinate2d (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_cmtime (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
@ -156,7 +158,9 @@ void *xamarin_nsvalue_to_mkcoordinatespan (NSValue *value, void *ptr, Mono
void *xamarin_nsvalue_to_scnmatrix4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_scnvector3 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_scnvector4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
#if !TARGET_OS_WATCH
void *xamarin_nsvalue_to_uiedgeinsets (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
#endif
void *xamarin_nsvalue_to_uioffset (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
void *xamarin_nsvalue_to_nsdirectionaledgeinsets(NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle);
@ -177,11 +181,13 @@ id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *excep
id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_nsrange_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
#if !TARGET_OS_WATCH
id xamarin_cgaffinetransform_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cgpoint_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cgrect_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cgsize_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cgvector_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
#endif
id xamarin_catransform3d_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cllocationcoordinate2d_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_cmtime_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
@ -192,8 +198,10 @@ id xamarin_mkcoordinatespan_to_nsvalue (MonoObject *value, void *context,
id xamarin_scnmatrix4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_scnvector3_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_scnvector4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
#if !TARGET_OS_WATCH
id xamarin_uiedgeinsets_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
id xamarin_uioffset_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle);
#endif
id xamarin_nsdirectionaledgeinsets_to_nsvalue(MonoObject *value, void *context, GCHandle *exception_gchandle);
// These functions can be passed as xamarin_id_to_managed_func/xamarin_managed_to_id_func parameters

Просмотреть файл

@ -74454,7 +74454,6 @@ P:UIKit.UIMenu.SelectedElements
P:UIKit.UIMenuController.DidHideMenuNotification
P:UIKit.UIMenuController.DidShowMenuNotification
P:UIKit.UIMenuController.MenuFrameDidChangeNotification
P:UIKit.UIMenuController.MenuVisible
P:UIKit.UIMenuController.WillHideMenuNotification
P:UIKit.UIMenuController.WillShowMenuNotification
P:UIKit.UIMenuElement.AccessibilityIdentifier
@ -74536,7 +74535,6 @@ P:UIKit.UIPasteboard.Automatic
P:UIKit.UIPasteboard.ChangedNotification
P:UIKit.UIPasteboard.ChangedTypesAddedKey
P:UIKit.UIPasteboard.ChangedTypesRemovedKey
P:UIKit.UIPasteboard.Persistent
P:UIKit.UIPasteboard.RemovedNotification
P:UIKit.UIPasteboard.TypeListColor
P:UIKit.UIPasteboard.TypeListImage

Просмотреть файл

@ -803,6 +803,8 @@ using Bindings.Test;
using XamarinTests.ObjCRuntime;
using Xamarin.Utils;
#if !__WATCHOS__
namespace MonoTouchFixtures.ObjCRuntime {
[TestFixture]
@ -1412,6 +1414,7 @@ namespace MonoTouchFixtures.ObjCRuntime {
w.AppendLine (@" }
}");
w.AppendLine ("#endif // __WATCHOS__");
File.WriteAllText ("RegistrarTest.generated.cs", w.ToString ());
}

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -108,3 +108,4 @@
!missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound
!missing-type! ASPublicKeyCredentialClientData not bound
!missing-type! ASWebAuthenticationSessionCallback not bound
!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound

Просмотреть файл

@ -1,10 +0,0 @@
!missing-selector! BGContinuedProcessingTask::reason not bound
!missing-selector! BGContinuedProcessingTask::title not bound
!missing-selector! BGContinuedProcessingTask::updateProgress: not bound
!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound
!missing-selector! BGContinuedProcessingTaskRequest::reason not bound
!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound
!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound
!missing-selector! BGContinuedProcessingTaskRequest::title not bound
!missing-type! BGContinuedProcessingTask not bound
!missing-type! BGContinuedProcessingTaskRequest not bound

Просмотреть файл

@ -39,3 +39,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -10,6 +10,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -10,7 +10,6 @@
!deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -21,7 +20,6 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
@ -34,14 +32,11 @@
!missing-field! MIDICIDeviceWasAddedNotification not bound
!missing-field! MIDICIDeviceWasRemovedNotification not bound
!missing-field! MIDICIProfileObjectKey not bound
!missing-field! MIDICIProfileStateChangedNotification not bound
!missing-field! MIDICIProfileWasRemovedNotification not bound
!missing-field! MIDIUMPEndpointObjectKey not bound
!missing-field! MIDIUMPEndpointUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasAddedNotification not bound
!missing-field! MIDIUMPEndpointWasRemovedNotification not bound
!missing-field! MIDIUMPFunctionBlockObjectKey not bound
!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound
!missing-selector! +MIDICIDeviceManager::sharedInstance not bound
!missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound
!missing-selector! MIDI2DeviceInfo::family not bound
@ -115,3 +110,8 @@
!missing-type! MIDIUMPFunctionBlock not bound
!missing-type! MIDIUMPMutableEndpoint not bound
!missing-type! MIDIUMPMutableFunctionBlock not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound
!missing-field! MIDICIProfileWasUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound
!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound

Просмотреть файл

@ -76,3 +76,9 @@
!unknown-field! MLModelCollectionDidChangeNotification bound
!unknown-type! MLModelCollection bound
!unknown-type! MLModelCollectionEntry bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -9,3 +9,6 @@
!missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound
!missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound
!missing-type! CMHeadphoneActivityManager not bound
!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound
!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound
!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound

Просмотреть файл

@ -2,3 +2,5 @@
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound
!missing-selector! NSFileProviderDomain::setSupportsSyncingTrash: not bound
!missing-selector! NSFileProviderDomain::supportsSyncingTrash not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -11175,3 +11175,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -367,3 +367,24 @@
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UITextView::setWritingToolsAllowedInputOptions: not bound
!missing-selector! UITextView::setWritingToolsBehavior: not bound
!missing-selector! UITextView::writingToolsAllowedInputOptions not bound
!missing-selector! UITextView::writingToolsBehavior not bound

Просмотреть файл

@ -1 +1,5 @@
!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute
!missing-selector! WKWebView::isWritingToolsActive not bound
!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound
!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound
!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound
!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound

Просмотреть файл

@ -706,3 +706,4 @@
!missing-type! AVPlayerItemSegment not bound
!missing-type! AVRenderedCaptionImage not bound
!missing-type! AVVideoPerformanceMetrics not bound
!missing-selector! AVMediaExtensionProperties::extensionIdentifier not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -121,3 +121,8 @@
!missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! NSSharingCollaborationModeRestriction not bound
!missing-selector! NSTextView::setWritingToolsAllowedInputOptions: not bound
!missing-selector! NSTextView::setWritingToolsBehavior: not bound
!missing-selector! NSTextView::writingToolsAllowedInputOptions not bound
!missing-selector! NSTextView::writingToolsBehavior not bound
!missing-selector! NSWindow::cascadingReferenceFrame not bound

Просмотреть файл

@ -117,3 +117,4 @@
!missing-type! ASPasskeyRegistrationCredentialExtensionInput not bound
!missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound
!missing-type! ASWebAuthenticationSessionCallback not bound
!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound

Просмотреть файл

@ -24,3 +24,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -16,6 +16,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -10,7 +10,6 @@
!deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -21,7 +20,6 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
@ -34,14 +32,11 @@
!missing-field! MIDICIDeviceWasAddedNotification not bound
!missing-field! MIDICIDeviceWasRemovedNotification not bound
!missing-field! MIDICIProfileObjectKey not bound
!missing-field! MIDICIProfileStateChangedNotification not bound
!missing-field! MIDICIProfileWasRemovedNotification not bound
!missing-field! MIDIUMPEndpointObjectKey not bound
!missing-field! MIDIUMPEndpointUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasAddedNotification not bound
!missing-field! MIDIUMPEndpointWasRemovedNotification not bound
!missing-field! MIDIUMPFunctionBlockObjectKey not bound
!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound
!missing-selector! +MIDICIDeviceManager::sharedInstance not bound
!missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound
!missing-selector! MIDI2DeviceInfo::family not bound
@ -115,3 +110,8 @@
!missing-type! MIDIUMPFunctionBlock not bound
!missing-type! MIDIUMPMutableEndpoint not bound
!missing-type! MIDIUMPMutableFunctionBlock not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound
!missing-field! MIDICIProfileWasUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound
!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound

Просмотреть файл

@ -76,3 +76,9 @@
!unknown-field! MLModelCollectionDidChangeNotification bound
!unknown-type! MLModelCollection bound
!unknown-type! MLModelCollectionEntry bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -17,3 +17,6 @@
!missing-selector! CMMotionActivity::walking not bound
!missing-type! CMHeadphoneActivityManager not bound
!missing-type! CMMotionActivity not bound
!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound
!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound
!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound

Просмотреть файл

@ -4,8 +4,6 @@
!missing-selector! +FSEntityIdentifier::identifierWithUUID:byteQualifier: not bound
!missing-selector! +FSEntityIdentifier::identifierWithUUID:longByteQualifier: not bound
!missing-selector! +FSFileName::nameWithCString: not bound
!missing-selector! +FSKitConstants::forceLoadOption not bound
!missing-selector! +FSKitConstants::moduleExtensionPointName not bound
!missing-selector! +FSProbeResult::resultWithResult:name:containerID: not bound
!missing-selector! FSEntityIdentifier::initWithBytes:length: not bound
!missing-selector! FSEntityIdentifier::initWithUUID:byteQualifier: not bound
@ -17,7 +15,6 @@
!missing-selector! FSProbeResult::containerID not bound
!missing-selector! FSProbeResult::name not bound
!missing-selector! FSProbeResult::result not bound
!missing-type! FSKitConstants not bound
!missing-type! FSProbeResult not bound
!missing-enum! FSContainerState not bound
!missing-enum! FSExtentType not bound
@ -33,6 +30,8 @@
!missing-enum! FSVolumeState not bound
!missing-field! FSKitVersionNumber not bound
!missing-field! FSKitVersionString not bound
!missing-field! FSTaskParameterConstantForceLoad not bound
!missing-field! FSTaskParameterConstantReadOnly not bound
!missing-pinvoke! fs_errorForCocoaError is not bound
!missing-pinvoke! fs_errorForMachError is not bound
!missing-pinvoke! fs_errorForPOSIXError is not bound
@ -253,6 +252,8 @@
!missing-selector! FSMessageConnection::logLocalizedMessage:table:bundle:array: not bound
!missing-selector! FSModuleIdentity::attributes not bound
!missing-selector! FSModuleIdentity::bundleIdentifier not bound
!missing-selector! FSModuleIdentity::isEnabled not bound
!missing-selector! FSModuleIdentity::isSystem not bound
!missing-selector! FSModuleIdentity::url not bound
!missing-selector! FSMutableFileDataBuffer::capacity not bound
!missing-selector! FSMutableFileDataBuffer::initWithCapacity: not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -11175,3 +11175,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -70,3 +70,4 @@
!missing-pinvoke! VTRAWProcessingSessionProcessFrame is not bound
!missing-pinvoke! VTRAWProcessingSessionSetParameterChangedHander is not bound
!missing-pinvoke! VTRAWProcessingSessionSetProcessingParameters is not bound
!missing-field! kVTDecoderExtensionProperties_ExtensionIdentifierKey not bound

Просмотреть файл

@ -1 +1,5 @@
!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute
!missing-selector! WKWebView::isWritingToolsActive not bound
!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound
!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound
!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound
!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -1,10 +0,0 @@
!missing-selector! BGContinuedProcessingTask::reason not bound
!missing-selector! BGContinuedProcessingTask::title not bound
!missing-selector! BGContinuedProcessingTask::updateProgress: not bound
!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound
!missing-selector! BGContinuedProcessingTaskRequest::reason not bound
!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound
!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound
!missing-selector! BGContinuedProcessingTaskRequest::title not bound
!missing-type! BGContinuedProcessingTask not bound
!missing-type! BGContinuedProcessingTaskRequest not bound

Просмотреть файл

@ -36,3 +36,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -10,6 +10,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -1,5 +1,4 @@
!missing-pinvoke! MIDIEventListForEachEvent is not bound
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -10,10 +9,11 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound

Просмотреть файл

@ -73,3 +73,9 @@
!missing-type! MLOptimizationHints not bound
!missing-type! MLState not bound
!missing-type! MLStateConstraint not bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -2241,3 +2241,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -203,3 +203,39 @@
!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound
!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound
!unknown-native-enum! UIPasteControlDisplayMode bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -108,3 +108,4 @@
!missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound
!missing-type! ASPublicKeyCredentialClientData not bound
!missing-type! ASWebAuthenticationSessionCallback not bound
!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound

Просмотреть файл

@ -1,10 +0,0 @@
!missing-selector! BGContinuedProcessingTask::reason not bound
!missing-selector! BGContinuedProcessingTask::title not bound
!missing-selector! BGContinuedProcessingTask::updateProgress: not bound
!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound
!missing-selector! BGContinuedProcessingTaskRequest::reason not bound
!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound
!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound
!missing-selector! BGContinuedProcessingTaskRequest::title not bound
!missing-type! BGContinuedProcessingTask not bound
!missing-type! BGContinuedProcessingTaskRequest not bound

Просмотреть файл

@ -39,3 +39,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -10,6 +10,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -10,7 +10,6 @@
!deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -21,7 +20,6 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
@ -34,14 +32,11 @@
!missing-field! MIDICIDeviceWasAddedNotification not bound
!missing-field! MIDICIDeviceWasRemovedNotification not bound
!missing-field! MIDICIProfileObjectKey not bound
!missing-field! MIDICIProfileStateChangedNotification not bound
!missing-field! MIDICIProfileWasRemovedNotification not bound
!missing-field! MIDIUMPEndpointObjectKey not bound
!missing-field! MIDIUMPEndpointUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasAddedNotification not bound
!missing-field! MIDIUMPEndpointWasRemovedNotification not bound
!missing-field! MIDIUMPFunctionBlockObjectKey not bound
!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound
!missing-selector! +MIDICIDeviceManager::sharedInstance not bound
!missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound
!missing-selector! MIDI2DeviceInfo::family not bound
@ -115,3 +110,8 @@
!missing-type! MIDIUMPFunctionBlock not bound
!missing-type! MIDIUMPMutableEndpoint not bound
!missing-type! MIDIUMPMutableFunctionBlock not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound
!missing-field! MIDICIProfileWasUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound
!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound

Просмотреть файл

@ -76,3 +76,9 @@
!unknown-field! MLModelCollectionDidChangeNotification bound
!unknown-type! MLModelCollection bound
!unknown-type! MLModelCollectionEntry bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -9,3 +9,6 @@
!missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound
!missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound
!missing-type! CMHeadphoneActivityManager not bound
!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound
!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound
!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound

Просмотреть файл

@ -2,3 +2,5 @@
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound
!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound
!missing-selector! NSFileProviderDomain::setSupportsSyncingTrash: not bound
!missing-selector! NSFileProviderDomain::supportsSyncingTrash not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -11175,3 +11175,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -367,3 +367,24 @@
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UITextView::setWritingToolsAllowedInputOptions: not bound
!missing-selector! UITextView::setWritingToolsBehavior: not bound
!missing-selector! UITextView::writingToolsAllowedInputOptions not bound
!missing-selector! UITextView::writingToolsBehavior not bound

Просмотреть файл

@ -1 +1,5 @@
!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute
!missing-selector! WKWebView::isWritingToolsActive not bound
!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound
!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound
!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound
!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound

Просмотреть файл

@ -1,2 +0,0 @@
!unknown-field! ADClientErrorDomain bound
!unknown-type! ADClient bound

Просмотреть файл

@ -706,3 +706,4 @@
!missing-type! AVPlayerItemSegment not bound
!missing-type! AVRenderedCaptionImage not bound
!missing-type! AVVideoPerformanceMetrics not bound
!missing-selector! AVMediaExtensionProperties::extensionIdentifier not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -120,3 +120,8 @@
!missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! NSSharingCollaborationModeRestriction not bound
!missing-selector! NSTextView::setWritingToolsAllowedInputOptions: not bound
!missing-selector! NSTextView::setWritingToolsBehavior: not bound
!missing-selector! NSTextView::writingToolsAllowedInputOptions not bound
!missing-selector! NSTextView::writingToolsBehavior not bound
!missing-selector! NSWindow::cascadingReferenceFrame not bound

Просмотреть файл

@ -118,3 +118,4 @@
!missing-type! ASPasskeyRegistrationCredentialExtensionInput not bound
!missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound
!missing-type! ASWebAuthenticationSessionCallback not bound
!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound

Просмотреть файл

@ -24,3 +24,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -16,6 +16,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -10,7 +10,6 @@
!deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute
!deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -21,7 +20,6 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
@ -34,14 +32,11 @@
!missing-field! MIDICIDeviceWasAddedNotification not bound
!missing-field! MIDICIDeviceWasRemovedNotification not bound
!missing-field! MIDICIProfileObjectKey not bound
!missing-field! MIDICIProfileStateChangedNotification not bound
!missing-field! MIDICIProfileWasRemovedNotification not bound
!missing-field! MIDIUMPEndpointObjectKey not bound
!missing-field! MIDIUMPEndpointUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasAddedNotification not bound
!missing-field! MIDIUMPEndpointWasRemovedNotification not bound
!missing-field! MIDIUMPFunctionBlockObjectKey not bound
!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound
!missing-selector! +MIDICIDeviceManager::sharedInstance not bound
!missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound
!missing-selector! MIDI2DeviceInfo::family not bound
@ -115,3 +110,8 @@
!missing-type! MIDIUMPFunctionBlock not bound
!missing-type! MIDIUMPMutableEndpoint not bound
!missing-type! MIDIUMPMutableFunctionBlock not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound
!missing-field! MIDICIProfileWasUpdatedNotification not bound
!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound
!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound

Просмотреть файл

@ -76,3 +76,9 @@
!unknown-field! MLModelCollectionDidChangeNotification bound
!unknown-type! MLModelCollection bound
!unknown-type! MLModelCollectionEntry bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -17,3 +17,6 @@
!missing-selector! CMMotionActivity::walking not bound
!missing-type! CMHeadphoneActivityManager not bound
!missing-type! CMMotionActivity not bound
!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound
!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound
!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound

Просмотреть файл

@ -47,8 +47,6 @@
!missing-selector! +FSFileName::nameWithCString: not bound
!missing-selector! +FSFileName::nameWithData: not bound
!missing-selector! +FSFileName::nameWithString: not bound
!missing-selector! +FSKitConstants::forceLoadOption not bound
!missing-selector! +FSKitConstants::moduleExtensionPointName not bound
!missing-selector! +FSKitMetaBlockRange::rangeWithOffset:blockLength:numOfBlocks: not bound
!missing-selector! +FSKitStatfsResult::statFSWithBlockSize:ioSize:totalBlocks:availableBlocks:freeBlocks:totalFiles:freeFiles:fsSubType:fsTypeName: not bound
!missing-selector! +FSKitUtils::stringWithFormatString:locale:arguments: not bound
@ -338,7 +336,6 @@
!missing-type! FSItemAttributes not bound
!missing-type! FSItemGetAttributesRequest not bound
!missing-type! FSItemSetAttributesRequest not bound
!missing-type! FSKitConstants not bound
!missing-type! FSKitMetaBlockRange not bound
!missing-type! FSKitStatfsResult not bound
!missing-type! FSKitUtils not bound
@ -356,3 +353,7 @@
!missing-type! FSVolumeDescription not bound
!missing-type! FSVolumeIdentifier not bound
!missing-type! FSVolumeSupportedCapabilities not bound
!missing-field! FSTaskParameterConstantForceLoad not bound
!missing-field! FSTaskParameterConstantReadOnly not bound
!missing-selector! FSModuleIdentity::isEnabled not bound
!missing-selector! FSModuleIdentity::isSystem not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -11175,3 +11175,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -70,3 +70,4 @@
!missing-pinvoke! VTRAWProcessingSessionProcessFrame is not bound
!missing-pinvoke! VTRAWProcessingSessionSetParameterChangedHander is not bound
!missing-pinvoke! VTRAWProcessingSessionSetProcessingParameters is not bound
!missing-field! kVTDecoderExtensionProperties_ExtensionIdentifierKey not bound

Просмотреть файл

@ -1 +1,5 @@
!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute
!missing-selector! WKWebView::isWritingToolsActive not bound
!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound
!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound
!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound
!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -1,10 +0,0 @@
!missing-selector! BGContinuedProcessingTask::reason not bound
!missing-selector! BGContinuedProcessingTask::title not bound
!missing-selector! BGContinuedProcessingTask::updateProgress: not bound
!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound
!missing-selector! BGContinuedProcessingTaskRequest::reason not bound
!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound
!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound
!missing-selector! BGContinuedProcessingTaskRequest::title not bound
!missing-type! BGContinuedProcessingTask not bound
!missing-type! BGContinuedProcessingTaskRequest not bound

Просмотреть файл

@ -36,3 +36,8 @@
!missing-selector! CASpringAnimation::setAllowsOverdamping: not bound
!missing-type! CAMetalDisplayLink not bound
!missing-type! CAMetalDisplayLinkUpdate not bound
!missing-field! CAToneMapModeAutomatic not bound
!missing-field! CAToneMapModeIfSupported not bound
!missing-field! CAToneMapModeNever not bound
!missing-selector! CALayer::setToneMapMode: not bound
!missing-selector! CALayer::toneMapMode not bound

Просмотреть файл

@ -10,6 +10,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -1,5 +1,4 @@
!missing-pinvoke! MIDIEventListForEachEvent is not bound
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -10,10 +9,11 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound

Просмотреть файл

@ -73,3 +73,9 @@
!missing-type! MLOptimizationHints not bound
!missing-type! MLState not bound
!missing-type! MLStateConstraint not bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -2241,3 +2241,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -203,3 +203,39 @@
!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound
!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound
!unknown-native-enum! UIPasteControlDisplayMode bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound

Просмотреть файл

@ -3,3 +3,14 @@
!missing-pinvoke! AXAssistiveAccessEnabled is not bound
!missing-pinvoke! AXOpenSettingsFeature is not bound
!missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound
!missing-field! AXTechnologyAutomation not bound
!missing-field! AXTechnologyFullKeyboardAccess not bound
!missing-field! AXTechnologyHoverText not bound
!missing-field! AXTechnologySpeakScreen not bound
!missing-field! AXTechnologySwitchControl not bound
!missing-field! AXTechnologyVoiceControl not bound
!missing-field! AXTechnologyVoiceOver not bound
!missing-field! AXTechnologyZoom not bound
!missing-selector! +AXRequest::currentRequest not bound
!missing-selector! AXRequest::technology not bound
!missing-type! AXRequest not bound

Просмотреть файл

@ -10,6 +10,13 @@
!missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound
!missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound
!missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound
!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound
!missing-pinvoke! CGImageGetContentHeadroom is not bound
!missing-pinvoke! CGImageShouldToneMap is not bound
!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound
!missing-field! kCGColorSpaceCoreMedia709 not bound
!missing-field! kCGDefaultHDRImageContentHeadroom not bound
!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound
!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound
!missing-pinvoke! CGPDFContextSetIDTree is not bound
!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound
!missing-pinvoke! CGPDFContextSetParentTree is not bound

Просмотреть файл

@ -1,5 +1,4 @@
!missing-pinvoke! MIDIEventListForEachEvent is not bound
!missing-enum! MIDICICategoryBitmap not bound
!missing-enum! MIDICIDeviceType not bound
!missing-enum! MIDICIManagementMessageType not bound
!missing-enum! MIDICIProcessInquiryMessageType not bound
@ -10,10 +9,11 @@
!missing-enum! MIDIUMPFunctionBlockDirection not bound
!missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound
!missing-enum! MIDIUMPFunctionBlockUIHint not bound
!missing-enum! MIDIUMPProtocolBitmap not bound
!missing-enum! UMPStreamMessageFormat not bound
!missing-enum! UMPStreamMessageStatus not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound
!missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound
!missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound
!missing-enum! MIDICICategoryOptions not bound
!missing-enum! MIDIUMPProtocolOptions not bound

Просмотреть файл

@ -73,3 +73,8 @@
!missing-type! MLOptimizationHints not bound
!missing-type! MLState not bound
!missing-type! MLStateConstraint not bound
!missing-enum! MLSpecializationStrategy not bound
!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound
!missing-selector! MLMultiArray::transferToMultiArray: not bound
!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound
!missing-selector! MLOptimizationHints::specializationStrategy not bound

Просмотреть файл

@ -9,3 +9,6 @@
!missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound
!missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound
!missing-type! CMHeadphoneActivityManager not bound
!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound
!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound
!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound

Просмотреть файл

@ -14,3 +14,10 @@
!missing-field! kIIOStereoAggressors_SubTypeURI not bound
!missing-field! kIIOStereoAggressors_Type not bound
!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound
!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound
!missing-field! kCGImageDestinationEncodeRequest not bound
!missing-field! kCGImageDestinationEncodeRequestOptions not bound
!missing-field! kCGImageDestinationEncodeToISOGainmap not bound
!missing-field! kCGImageDestinationEncodeToISOHDR not bound
!missing-field! kCGImageDestinationEncodeTonemapMode not bound
!missing-field! kCGImageDestinationEncodeToSDR not bound

Просмотреть файл

@ -2241,3 +2241,25 @@
!missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound
!missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound
!missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound
!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound
!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound
!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound
!missing-type! MTRDeviceStorageBehaviorConfiguration not bound

Просмотреть файл

@ -32,3 +32,4 @@
!missing-selector! NSTextAttachment::setImage: not bound
!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound
!missing-type! NSTextAttachment not bound
!missing-enum! UIAccessibilityExpandedStatus not bound