This commit is contained in:
Alex Soto 2018-02-19 11:55:42 -06:00 коммит произвёл GitHub
Родитель 44425878c2
Коммит a8e5fc5413
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 24 добавлений и 9 удалений

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

@ -282,8 +282,12 @@ namespace Intents {
FailurePreviousRideNeedsFeedback,
}
[iOS (10, 0)]
#if XAMCORE_4_0 // TODO: Double check this if XAMCORE_4_0 happens, its been 2 years (2018) and still not usable in macOS
[NoMac]
#else
[Mac (10, 12, 0, PlatformArchitecture.Arch64)]
#endif
[iOS (10, 0)]
[Watch (3, 2)]
[Native]
public enum INMessageAttribute : long {
@ -2143,8 +2147,12 @@ namespace Intents {
INDateComponentsRangeResolutionResult Unsupported { get; }
}
[iOS (10, 0)]
#if XAMCORE_4_0 // TODO: Double check this if XAMCORE_4_0 happens, its been 2 years (2018) and still not usable in macOS
[NoMac]
#else
[Mac (10, 12, 0, PlatformArchitecture.Arch64)]
#endif
[iOS (10, 0)]
[Watch (3, 2)]
[Protocol]
interface INCallsDomainHandling : INStartAudioCallIntentHandling, INSearchCallHistoryIntentHandling
@ -3077,8 +3085,12 @@ namespace Intents {
INMessageAttributeOptionsResolutionResult Unsupported { get; }
}
[iOS (10, 0)]
#if XAMCORE_4_0 // TODO: Double check this if XAMCORE_4_0 happens, its been 2 years (2018) and still not usable in macOS
[NoMac]
#else
[Mac (10, 12, 0, PlatformArchitecture.Arch64)]
#endif
[iOS (10, 0)]
[Watch (3, 2)]
[BaseType (typeof (INIntentResolutionResult))]
[DisableDefaultCtor]

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

@ -4,3 +4,12 @@
## unsorted
!unknown-native-enum! INSetMessageAttributeIntentResponseCode bound
## Fixed in XAMCORE_4_0 but with a conditional TODO check in code
## API_AVAILABLE(macosx(10.12), ios(10.0)); This is supposed to be there according to availability (Last Review: Feb 2018)
!unknown-protocol! INCallsDomainHandling bound
## No availability set on headers, it is possible to be fixed later since makes sense to have in macOS.
## unfortunately it is not at the moment (Last Review: Feb 2018)
!unknown-native-enum! INMessageAttribute bound
!unknown-type! INMessageAttributeResolutionResult bound

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

@ -1,6 +0,0 @@
## API_AVAILABLE(macosx(10.12), ios(10.0)); This is supposed to be there according to availability (Last Review: Beta 3)
!unknown-protocol! INCallsDomainHandling bound
## No availability set on headers, it is possible to be fixed later since makes sense to have in macOS
!unknown-native-enum! INMessageAttribute bound
!unknown-type! INMessageAttributeResolutionResult bound