This commit is contained in:
Rolf Bjarne Kvinge 2018-08-02 16:43:18 +02:00
Родитель 8040f2351d
Коммит bb631d36bd
3 изменённых файлов: 22 добавлений и 0 удалений

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

@ -936,6 +936,11 @@
!unknown-pinvoke! dispatch_apply_f bound !unknown-pinvoke! dispatch_apply_f bound
!unknown-pinvoke! dispatch_async_f bound !unknown-pinvoke! dispatch_async_f bound
!unknown-pinvoke! dispatch_barrier_async_f bound !unknown-pinvoke! dispatch_barrier_async_f bound
!unknown-pinvoke! dispatch_data_create bound
!unknown-pinvoke! dispatch_data_create_concat bound
!unknown-pinvoke! dispatch_data_create_map bound
!unknown-pinvoke! dispatch_data_create_subrange bound
!unknown-pinvoke! dispatch_data_get_size bound
!unknown-pinvoke! dispatch_get_context bound !unknown-pinvoke! dispatch_get_context bound
!unknown-pinvoke! dispatch_get_current_queue bound !unknown-pinvoke! dispatch_get_current_queue bound
!unknown-pinvoke! dispatch_get_global_queue bound !unknown-pinvoke! dispatch_get_global_queue bound
@ -947,6 +952,7 @@
!unknown-pinvoke! dispatch_group_wait bound !unknown-pinvoke! dispatch_group_wait bound
!unknown-pinvoke! dispatch_queue_create bound !unknown-pinvoke! dispatch_queue_create bound
!unknown-pinvoke! dispatch_queue_get_label bound !unknown-pinvoke! dispatch_queue_get_label bound
!unknown-pinvoke! dispatch_read bound
!unknown-pinvoke! dispatch_release bound !unknown-pinvoke! dispatch_release bound
!unknown-pinvoke! dispatch_resume bound !unknown-pinvoke! dispatch_resume bound
!unknown-pinvoke! dispatch_retain bound !unknown-pinvoke! dispatch_retain bound
@ -968,4 +974,5 @@
!unknown-pinvoke! dispatch_sync_f bound !unknown-pinvoke! dispatch_sync_f bound
!unknown-pinvoke! dispatch_time bound !unknown-pinvoke! dispatch_time bound
!unknown-pinvoke! dispatch_walltime bound !unknown-pinvoke! dispatch_walltime bound
!unknown-pinvoke! dispatch_write bound
!unknown-pinvoke! open bound !unknown-pinvoke! open bound

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

@ -1,2 +1,8 @@
## bound as a category - needs debugging (URL capitalizarion?) ## bound as a category - needs debugging (URL capitalizarion?)
!missing-selector! NSMutableURLRequest::bindToHotspotHelperCommand: not bound !missing-selector! NSMutableURLRequest::bindToHotspotHelperCommand: not bound
## Native code has NWPathStatus in NetworkExtension and nw_path_status_t in Network (with the same elements).
## NetworkExtension.NWPathStatus is the oldest, but NetworkExtension isn't present on all the platforms Network
## is, which means we can't use the same managed enum for both cases (the native enums aren't entirely identical
## either: one is pointer sized while the other is 32-bit always).
!duplicate-type-name! NWPathStatus enum exists as both NetworkExtension.NWPathStatus and Network.NWPathStatus

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

@ -2,3 +2,12 @@
!unknown-field! NEFilterProviderRemediationMapRemediationButtonTexts bound !unknown-field! NEFilterProviderRemediationMapRemediationButtonTexts bound
!unknown-field! NEFilterProviderRemediationMapRemediationURLs bound !unknown-field! NEFilterProviderRemediationMapRemediationURLs bound
!unknown-type! NEFilterProvider bound !unknown-type! NEFilterProvider bound
## Native code has NWPathStatus in NetworkExtension and nw_path_status_t in Network (with the same elements).
## NetworkExtension.NWPathStatus is the oldest, but NetworkExtension isn't present on all the platforms Network
## is, which means we can't use the same managed enum for both cases (the native enums aren't entirely identical
## either: one is pointer sized while the other is 32-bit always).
!duplicate-type-name! NWPathStatus enum exists as both NetworkExtension.NWPathStatus and Network.NWPathStatus
## These are because xtro is mapping the wrong managed enum to the native NWPathStatus enum.
!missing-enum-native! NWPathStatus
!wrong-enum-size! NWPathStatus managed 4 vs native 8