├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ ├── callable-windows-build.yml │ ├── nuget-public.yml │ ├── publish.yml │ └── pull-request.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── cmake-kits.json ├── launch.json ├── settings.json └── tasks.json ├── AGENTS.md ├── CMakeLists.txt ├── CMakePresets.json ├── README.md ├── cmake └── nuget.cmake ├── license.txt ├── nuget ├── README.md └── swiftwinrt.nuspec ├── swiftwinrt ├── CMakeLists.txt ├── Resources │ ├── CWinRT │ │ ├── CppInteropWorkaround.h │ │ ├── IVectorChangedEventArgs.h │ │ ├── MemoryBuffer.h │ │ ├── Package.swift │ │ ├── RestrictedErrorInfo.h │ │ ├── WeakReference.h │ │ ├── robuffer.h │ │ └── shim.c │ └── Support │ │ ├── Aggregation.swift │ │ ├── Array+FromAbi.swift │ │ ├── Array+ToAbi.swift │ │ ├── Array+toVector.swift │ │ ├── COM+Extensions.swift │ │ ├── ComPtr.swift │ │ ├── CppInteropWorkaround.swift │ │ ├── CustomQueryInterface.swift │ │ ├── Debugging.swift │ │ ├── Dictionary+toMap.swift │ │ ├── Error.swift │ │ ├── ErrorHandling.swift │ │ ├── Events │ │ ├── Event.swift │ │ ├── EventHandlerSubscription.swift │ │ ├── EventSource.swift │ │ └── WinRTDelegate.swift │ │ ├── GUID.swift │ │ ├── HString.swift │ │ ├── IBufferByteAccess.swift │ │ ├── IInspectable+Swift.swift │ │ ├── IInspectable.swift │ │ ├── IMap+Swift.swift │ │ ├── IMemoryBufferByteAccess.swift │ │ ├── IUnknown+Swift.swift │ │ ├── IUnknown.swift │ │ ├── IUnknownRef.swift │ │ ├── IVector+Swift.swift │ │ ├── IWeakReference.swift │ │ ├── IWeakReferenceSource.swift │ │ ├── MakeFromAbi.swift │ │ ├── Marshaler.swift │ │ ├── PropertyValue+ABI.swift │ │ ├── PropertyValue.swift │ │ ├── RawTyped.swift │ │ ├── Runtime+Swift.swift │ │ ├── Swift+Extensions.swift │ │ ├── TrustLevel+Swift.swift │ │ ├── WaitableEvent.swift │ │ ├── WinRTBridgeable.swift │ │ ├── WinRTProtocols.swift │ │ ├── WinRTWrapperBase.swift │ │ └── WinSDK+Extensions.swift ├── app.manifest ├── code_writers.h ├── code_writers │ ├── can_write.h │ ├── class_writers.cpp │ ├── class_writers.h │ ├── common_writers.h │ ├── delegate_writers.cpp │ ├── delegate_writers.h │ ├── enum_writers.cpp │ ├── enum_writers.h │ ├── generic_writers.cpp │ ├── generic_writers.h │ ├── interface_writers.cpp │ ├── interface_writers.h │ ├── struct_writers.cpp │ ├── struct_writers.h │ ├── type_writers.cpp │ ├── type_writers.h │ └── writer_helpers.h ├── file_writers │ ├── abi_writer.h │ └── file_writers.h ├── main.cpp ├── pch.cpp ├── pch.h ├── resource.h ├── resources.h ├── resources.rc ├── types.h ├── types │ ├── attributed_type.h │ ├── class_type.cpp │ ├── class_type.h │ ├── delegate_type.cpp │ ├── delegate_type.h │ ├── element_type.cpp │ ├── element_type.h │ ├── enum_type.cpp │ ├── enum_type.h │ ├── event_def.h │ ├── function_def.cpp │ ├── function_def.h │ ├── function_param.h │ ├── function_return_type.h │ ├── generic_inst.cpp │ ├── generic_inst.h │ ├── generic_type_parameter.h │ ├── interface_info.h │ ├── interface_type.cpp │ ├── interface_type.h │ ├── interface_writer_helpers.h │ ├── mapped_type.cpp │ ├── mapped_type.h │ ├── metadata_type.h │ ├── property_def.h │ ├── struct_member.h │ ├── struct_type.cpp │ ├── struct_type.h │ ├── system_type.cpp │ ├── system_type.h │ ├── type_constants.h │ ├── type_definition_helpers.h │ ├── type_traits.h │ ├── typedef_base.cpp │ └── typedef_base.h └── utility │ ├── attributes.h │ ├── cmd_reader.h │ ├── metadata_cache.cpp │ ├── metadata_cache.h │ ├── metadata_filter.cpp │ ├── metadata_filter.h │ ├── metadata_helpers.cpp │ ├── metadata_helpers.h │ ├── separator.h │ ├── settings.h │ ├── sha1.h │ ├── swift_codegen_utils.cpp │ ├── swift_codegen_utils.h │ ├── task_group.h │ ├── text_writer.h │ ├── type_helpers.cpp │ ├── type_helpers.h │ ├── type_writers.h │ └── versioning.h └── tests ├── CMakeLists.txt ├── Package.swift ├── test_app ├── AggregationTests.swift ├── AppDerived.swift ├── ArrayTests.swift ├── AsyncTests.swift ├── BufferTests.swift ├── CMakeLists.txt ├── CollectionTests.swift ├── DoubleDelegate+QueryInterface.swift ├── EventTests.swift ├── MemoryManagementTests.swift ├── ValueBoxingTests.swift ├── WeakReferenceTests.swift ├── WinRTInterfaceImplementations.swift ├── main.swift └── test_app.exe.manifest └── test_component ├── CMakeLists.txt ├── Package.swift ├── Sources ├── CMakeLists.txt ├── CWinRT │ ├── include │ │ ├── module.modulemap │ │ ├── test_component.Delegates.h │ │ └── test_component.h │ └── shim.c ├── UWP │ ├── UWP+Generics.swift │ ├── Windows.Data.Text+ABI.swift │ ├── Windows.Data.Text+Impl.swift │ ├── Windows.Data.Text+TextSegment.swift │ ├── Windows.Storage+ABI.swift │ ├── Windows.Storage+CreationCollisionOption.swift │ ├── Windows.Storage+FileAccessMode.swift │ ├── Windows.Storage+FileAttributes.swift │ ├── Windows.Storage+IStorageFile.swift │ ├── Windows.Storage+IStorageFile2.swift │ ├── Windows.Storage+IStorageFilePropertiesWithAvailability.swift │ ├── Windows.Storage+IStorageFolder.swift │ ├── Windows.Storage+IStorageFolder2.swift │ ├── Windows.Storage+IStorageItem.swift │ ├── Windows.Storage+IStorageItem2.swift │ ├── Windows.Storage+IStorageItemProperties.swift │ ├── Windows.Storage+IStorageItemProperties2.swift │ ├── Windows.Storage+IStorageItemPropertiesWithProvider.swift │ ├── Windows.Storage+IStreamedFileDataRequest.swift │ ├── Windows.Storage+Impl.swift │ ├── Windows.Storage+NameCollisionOption.swift │ ├── Windows.Storage+PathIO.swift │ ├── Windows.Storage+StorageDeleteOption.swift │ ├── Windows.Storage+StorageFile.swift │ ├── Windows.Storage+StorageFolder.swift │ ├── Windows.Storage+StorageItemTypes.swift │ ├── Windows.Storage+StorageLibraryChange.swift │ ├── Windows.Storage+StorageLibraryChangeReader.swift │ ├── Windows.Storage+StorageLibraryChangeTracker.swift │ ├── Windows.Storage+StorageLibraryChangeTrackerOptions.swift │ ├── Windows.Storage+StorageLibraryChangeType.swift │ ├── Windows.Storage+StorageOpenOptions.swift │ ├── Windows.Storage+StorageProvider.swift │ ├── Windows.Storage+StorageStreamTransaction.swift │ ├── Windows.Storage+StreamedFileDataRequest.swift │ ├── Windows.Storage+StreamedFileDataRequestedHandler.swift │ ├── Windows.Storage+StreamedFileFailureMode.swift │ ├── Windows.Storage.FileProperties+ABI.swift │ ├── Windows.Storage.FileProperties+BasicProperties.swift │ ├── Windows.Storage.FileProperties+DocumentProperties.swift │ ├── Windows.Storage.FileProperties+IStorageItemExtraProperties.swift │ ├── Windows.Storage.FileProperties+ImageProperties.swift │ ├── Windows.Storage.FileProperties+Impl.swift │ ├── Windows.Storage.FileProperties+MusicProperties.swift │ ├── Windows.Storage.FileProperties+PhotoOrientation.swift │ ├── Windows.Storage.FileProperties+PropertyPrefetchOptions.swift │ ├── Windows.Storage.FileProperties+StorageItemContentProperties.swift │ ├── Windows.Storage.FileProperties+StorageItemThumbnail.swift │ ├── Windows.Storage.FileProperties+ThumbnailMode.swift │ ├── Windows.Storage.FileProperties+ThumbnailOptions.swift │ ├── Windows.Storage.FileProperties+ThumbnailType.swift │ ├── Windows.Storage.FileProperties+VideoOrientation.swift │ ├── Windows.Storage.FileProperties+VideoProperties.swift │ ├── Windows.Storage.Search+ABI.swift │ ├── Windows.Storage.Search+CommonFileQuery.swift │ ├── Windows.Storage.Search+CommonFolderQuery.swift │ ├── Windows.Storage.Search+DateStackOption.swift │ ├── Windows.Storage.Search+FolderDepth.swift │ ├── Windows.Storage.Search+IStorageFolderQueryOperations.swift │ ├── Windows.Storage.Search+IStorageQueryResultBase.swift │ ├── Windows.Storage.Search+Impl.swift │ ├── Windows.Storage.Search+IndexedState.swift │ ├── Windows.Storage.Search+IndexerOption.swift │ ├── Windows.Storage.Search+QueryOptions.swift │ ├── Windows.Storage.Search+SortEntry.swift │ ├── Windows.Storage.Search+StorageFileQueryResult.swift │ ├── Windows.Storage.Search+StorageFolderQueryResult.swift │ ├── Windows.Storage.Search+StorageItemQueryResult.swift │ ├── Windows.Storage.Streams+ABI.swift │ ├── Windows.Storage.Streams+Buffer.swift │ ├── Windows.Storage.Streams+IBuffer.swift │ ├── Windows.Storage.Streams+IContentTypeProvider.swift │ ├── Windows.Storage.Streams+IInputStream.swift │ ├── Windows.Storage.Streams+IInputStreamReference.swift │ ├── Windows.Storage.Streams+IOutputStream.swift │ ├── Windows.Storage.Streams+IRandomAccessStream.swift │ ├── Windows.Storage.Streams+IRandomAccessStreamReference.swift │ ├── Windows.Storage.Streams+IRandomAccessStreamWithContentType.swift │ ├── Windows.Storage.Streams+Impl.swift │ ├── Windows.Storage.Streams+InputStreamOptions.swift │ ├── Windows.Storage.Streams+UnicodeEncoding.swift │ ├── Windows.System+ABI.swift │ ├── Windows.System+Impl.swift │ ├── Windows.System+User.swift │ ├── Windows.System+UserAgeConsentGroup.swift │ ├── Windows.System+UserAgeConsentResult.swift │ ├── Windows.System+UserAuthenticationStatus.swift │ ├── Windows.System+UserAuthenticationStatusChangeDeferral.swift │ ├── Windows.System+UserAuthenticationStatusChangingEventArgs.swift │ ├── Windows.System+UserChangedEventArgs.swift │ ├── Windows.System+UserPictureSize.swift │ ├── Windows.System+UserType.swift │ ├── Windows.System+UserWatcher.swift │ ├── Windows.System+UserWatcherStatus.swift │ └── Windows.System+UserWatcherUpdateKind.swift ├── WindowsFoundation │ ├── Support │ │ ├── aggregation.swift │ │ ├── array+fromabi.swift │ │ ├── array+toabi.swift │ │ ├── array+tovector.swift │ │ ├── com+extensions.swift │ │ ├── comptr.swift │ │ ├── cppinteropworkaround.swift │ │ ├── customqueryinterface.swift │ │ ├── debugging.swift │ │ ├── dictionary+tomap.swift │ │ ├── error.swift │ │ ├── errorhandling.swift │ │ ├── event.swift │ │ ├── eventhandlersubscription.swift │ │ ├── eventsource.swift │ │ ├── guid.swift │ │ ├── hstring.swift │ │ ├── ibufferbyteaccess.swift │ │ ├── iinspectable+swift.swift │ │ ├── iinspectable.swift │ │ ├── imap+swift.swift │ │ ├── imemorybufferbyteaccess.swift │ │ ├── iunknown+swift.swift │ │ ├── iunknown.swift │ │ ├── iunknownref.swift │ │ ├── ivector+swift.swift │ │ ├── iweakreference.swift │ │ ├── iweakreferencesource.swift │ │ ├── makefromabi.swift │ │ ├── marshaler.swift │ │ ├── propertyvalue+abi.swift │ │ ├── propertyvalue.swift │ │ ├── rawtyped.swift │ │ ├── runtime+swift.swift │ │ ├── swift+extensions.swift │ │ ├── trustlevel+swift.swift │ │ ├── waitableevent.swift │ │ ├── winrtbridgeable.swift │ │ ├── winrtdelegate.swift │ │ ├── winrtprotocols.swift │ │ ├── winrtwrapperbase.swift │ │ └── winsdk+extensions.swift │ ├── Windows.Foundation+ABI.swift │ ├── Windows.Foundation+AsyncActionCompletedHandler.swift │ ├── Windows.Foundation+AsyncOperationCompletedHandler.swift │ ├── Windows.Foundation+AsyncOperationProgressHandler.swift │ ├── Windows.Foundation+AsyncOperationWithProgressCompletedHandler.swift │ ├── Windows.Foundation+AsyncStatus.swift │ ├── Windows.Foundation+DateTime.swift │ ├── Windows.Foundation+Deferral.swift │ ├── Windows.Foundation+DeferralCompletedHandler.swift │ ├── Windows.Foundation+EventHandler.swift │ ├── Windows.Foundation+GuidHelper.swift │ ├── Windows.Foundation+IAsyncAction.swift │ ├── Windows.Foundation+IAsyncInfo.swift │ ├── Windows.Foundation+IAsyncOperation.swift │ ├── Windows.Foundation+IAsyncOperationWithProgress.swift │ ├── Windows.Foundation+IClosable.swift │ ├── Windows.Foundation+IMemoryBuffer.swift │ ├── Windows.Foundation+IMemoryBufferReference.swift │ ├── Windows.Foundation+IPropertyValue.swift │ ├── Windows.Foundation+IReference.swift │ ├── Windows.Foundation+IStringable.swift │ ├── Windows.Foundation+IWwwFormUrlDecoderEntry.swift │ ├── Windows.Foundation+Impl.swift │ ├── Windows.Foundation+MemoryBuffer.swift │ ├── Windows.Foundation+Point.swift │ ├── Windows.Foundation+PropertyType.swift │ ├── Windows.Foundation+Rect.swift │ ├── Windows.Foundation+Size.swift │ ├── Windows.Foundation+TimeSpan.swift │ ├── Windows.Foundation+TypedEventHandler.swift │ ├── Windows.Foundation+Uri.swift │ ├── Windows.Foundation+WwwFormUrlDecoder.swift │ ├── Windows.Foundation.Collections+ABI.swift │ ├── Windows.Foundation.Collections+CollectionChange.swift │ ├── Windows.Foundation.Collections+IIterable.swift │ ├── Windows.Foundation.Collections+IIterator.swift │ ├── Windows.Foundation.Collections+IKeyValuePair.swift │ ├── Windows.Foundation.Collections+IMap.swift │ ├── Windows.Foundation.Collections+IMapChangedEventArgs.swift │ ├── Windows.Foundation.Collections+IMapView.swift │ ├── Windows.Foundation.Collections+IObservableMap.swift │ ├── Windows.Foundation.Collections+IObservableVector.swift │ ├── Windows.Foundation.Collections+IPropertySet.swift │ ├── Windows.Foundation.Collections+IVector.swift │ ├── Windows.Foundation.Collections+IVectorChangedEventArgs.swift │ ├── Windows.Foundation.Collections+IVectorView.swift │ ├── Windows.Foundation.Collections+Impl.swift │ ├── Windows.Foundation.Collections+MapChangedEventHandler.swift │ ├── Windows.Foundation.Collections+PropertySet.swift │ ├── Windows.Foundation.Collections+StringMap.swift │ ├── Windows.Foundation.Collections+ValueSet.swift │ ├── Windows.Foundation.Collections+VectorChangedEventHandler.swift │ └── WindowsFoundation+Generics.swift └── test_component │ ├── test_component+ABI.swift │ ├── test_component+ArrayMethodCallback.swift │ ├── test_component+ArrayMethods.swift │ ├── test_component+AsyncMethods.swift │ ├── test_component+AsyncOperationInt.swift │ ├── test_component+Base.swift │ ├── test_component+BaseCollection.swift │ ├── test_component+BaseMapCollection.swift │ ├── test_component+BaseNoOverrides.swift │ ├── test_component+BaseObservableCollection.swift │ ├── test_component+BlittableStruct.swift │ ├── test_component+BufferTester.swift │ ├── test_component+Class.swift │ ├── test_component+CollectionTester.swift │ ├── test_component+DeferrableEventArgs.swift │ ├── test_component+Derived.swift │ ├── test_component+DerivedFromNoConstructor.swift │ ├── test_component+EventTester.swift │ ├── test_component+Fruit.swift │ ├── test_component+Generics.swift │ ├── test_component+IArrayScenarios.swift │ ├── test_component+IArrayShouldBuild.swift │ ├── test_component+IAsyncMethodsWithProgress.swift │ ├── test_component+IAsyncOperationInt.swift │ ├── test_component+IBasic.swift │ ├── test_component+IIAmImplementable.swift │ ├── test_component+IInterfaceWithObservableVector.swift │ ├── test_component+IReferenceTarget.swift │ ├── test_component+ISimpleDelegate.swift │ ├── test_component+Impl.swift │ ├── test_component+InterfaceWithReturnDelegate.swift │ ├── test_component+Keywords.swift │ ├── test_component+NonBlittableBoolStruct.swift │ ├── test_component+NonBlittableStruct.swift │ ├── test_component+NoopClosable.swift │ ├── test_component+NullValues.swift │ ├── test_component+ObjectHandler.swift │ ├── test_component+Signed.swift │ ├── test_component+Simple.swift │ ├── test_component+SimpleEventArgs.swift │ ├── test_component+StaticClass.swift │ ├── test_component+StructWithEnum.swift │ ├── test_component+StructWithIReference.swift │ ├── test_component+SwiftifiableNames.swift │ ├── test_component+UnsealedDerived.swift │ ├── test_component+UnsealedDerived2.swift │ ├── test_component+UnsealedDerivedFromNoConstructor.swift │ ├── test_component+UnsealedDerivedNoConstructor.swift │ ├── test_component+UnsealedDerivedNoOverrides.swift │ ├── test_component+Unsigned.swift │ ├── test_component+VoidToVoidDelegate.swift │ ├── test_component+WeakReferencer.swift │ ├── test_component+WithIterableGuids.swift │ ├── test_component+WithKeyword.swift │ ├── test_component.Delegates+ABI.swift │ ├── test_component.Delegates+Impl.swift │ ├── test_component.Delegates+InDelegate.swift │ ├── test_component.Delegates+InObjectDelegate.swift │ ├── test_component.Delegates+ReturnInt32Delegate.swift │ └── test_component.Delegates+SignalDelegate.swift └── cpp ├── ArrayMethods.cpp ├── ArrayMethods.h ├── ArrayTester.idl ├── AsyncMethods.cpp ├── AsyncMethods.h ├── AsyncMethods.idl ├── AsyncOperationInt.cpp ├── AsyncOperationInt.h ├── Base.cpp ├── Base.h ├── BaseCollection.cpp ├── BaseCollection.h ├── BaseMapCollection.cpp ├── BaseMapCollection.h ├── BaseNoOverrides.cpp ├── BaseNoOverrides.h ├── BaseObservableCollection.cpp ├── BaseObservableCollection.h ├── BufferTester.cpp ├── BufferTester.h ├── BufferTests.idl ├── CMakeLists.txt ├── Class.cpp ├── Class.h ├── CollectionTester.cpp ├── CollectionTester.h ├── CollectionTester.idl ├── Derived.cpp ├── Derived.h ├── DerivedFromNoConstructor.cpp ├── DerivedFromNoConstructor.h ├── EventTester.cpp ├── EventTester.h ├── EventTester.idl ├── Keywords.idl ├── NoopClosable.cpp ├── NoopClosable.h ├── NullValues.cpp ├── NullValues.h ├── NullValues.idl ├── Optional.cpp ├── Optional.h ├── Simple.cpp ├── Simple.h ├── StaticClass.cpp ├── StaticClass.h ├── Types.idl ├── UnsealedDerived.cpp ├── UnsealedDerived.h ├── UnsealedDerived2.cpp ├── UnsealedDerived2.h ├── UnsealedDerivedFromNoConstructor.cpp ├── UnsealedDerivedFromNoConstructor.h ├── UnsealedDerivedNoConstructor.cpp ├── UnsealedDerivedNoConstructor.h ├── UnsealedDerivedNoOverrides.cpp ├── UnsealedDerivedNoOverrides.h ├── WeakReferencer.cpp ├── WeakReferencer.h ├── WeakReferencer.idl ├── Windows.Class.cpp ├── Windows.Class.h ├── exports.def ├── module.cpp ├── pch.cpp ├── pch.h └── test_component.idl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @thebrowsercompany/windows-eng 2 | -------------------------------------------------------------------------------- /.github/workflows/callable-windows-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.github/workflows/callable-windows-build.yml -------------------------------------------------------------------------------- /.github/workflows/nuget-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.github/workflows/nuget-public.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/cmake-kits.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/README.md -------------------------------------------------------------------------------- /cmake/nuget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/cmake/nuget.cmake -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/license.txt -------------------------------------------------------------------------------- /nuget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/nuget/README.md -------------------------------------------------------------------------------- /nuget/swiftwinrt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/nuget/swiftwinrt.nuspec -------------------------------------------------------------------------------- /swiftwinrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/CMakeLists.txt -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/CppInteropWorkaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/CppInteropWorkaround.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/IVectorChangedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/IVectorChangedEventArgs.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/MemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/MemoryBuffer.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/Package.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/RestrictedErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/RestrictedErrorInfo.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/WeakReference.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/robuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/robuffer.h -------------------------------------------------------------------------------- /swiftwinrt/Resources/CWinRT/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/CWinRT/shim.c -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Aggregation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Aggregation.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Array+FromAbi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Array+FromAbi.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Array+ToAbi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Array+ToAbi.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Array+toVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Array+toVector.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/COM+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/COM+Extensions.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/ComPtr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/ComPtr.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/CppInteropWorkaround.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/CppInteropWorkaround.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/CustomQueryInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/CustomQueryInterface.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Debugging.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Dictionary+toMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Dictionary+toMap.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Error.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/ErrorHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/ErrorHandling.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Events/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Events/Event.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Events/EventHandlerSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Events/EventHandlerSubscription.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Events/EventSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Events/EventSource.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Events/WinRTDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Events/WinRTDelegate.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/GUID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/GUID.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/HString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/HString.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IBufferByteAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IBufferByteAccess.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IInspectable+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IInspectable+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IInspectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IInspectable.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IMap+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IMap+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IMemoryBufferByteAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IMemoryBufferByteAccess.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IUnknown+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IUnknown+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IUnknown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IUnknown.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IUnknownRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IUnknownRef.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IVector+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IVector+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IWeakReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IWeakReference.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/IWeakReferenceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/IWeakReferenceSource.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/MakeFromAbi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/MakeFromAbi.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Marshaler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Marshaler.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/PropertyValue+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/PropertyValue+ABI.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/PropertyValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/PropertyValue.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/RawTyped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/RawTyped.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Runtime+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Runtime+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/Swift+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/Swift+Extensions.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/TrustLevel+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/TrustLevel+Swift.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/WaitableEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/WaitableEvent.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/WinRTBridgeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/WinRTBridgeable.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/WinRTProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/WinRTProtocols.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/WinRTWrapperBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/WinRTWrapperBase.swift -------------------------------------------------------------------------------- /swiftwinrt/Resources/Support/WinSDK+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/Resources/Support/WinSDK+Extensions.swift -------------------------------------------------------------------------------- /swiftwinrt/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/app.manifest -------------------------------------------------------------------------------- /swiftwinrt/code_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/can_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/can_write.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/class_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/class_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/class_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/class_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/common_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/common_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/delegate_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/delegate_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/delegate_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/delegate_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/enum_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/enum_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/enum_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/enum_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/generic_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/generic_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/generic_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/generic_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/interface_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/interface_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/interface_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/interface_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/struct_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/struct_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/struct_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/struct_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/type_writers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/type_writers.cpp -------------------------------------------------------------------------------- /swiftwinrt/code_writers/type_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/type_writers.h -------------------------------------------------------------------------------- /swiftwinrt/code_writers/writer_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/code_writers/writer_helpers.h -------------------------------------------------------------------------------- /swiftwinrt/file_writers/abi_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/file_writers/abi_writer.h -------------------------------------------------------------------------------- /swiftwinrt/file_writers/file_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/file_writers/file_writers.h -------------------------------------------------------------------------------- /swiftwinrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/main.cpp -------------------------------------------------------------------------------- /swiftwinrt/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /swiftwinrt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/pch.h -------------------------------------------------------------------------------- /swiftwinrt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/resource.h -------------------------------------------------------------------------------- /swiftwinrt/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/resources.h -------------------------------------------------------------------------------- /swiftwinrt/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/resources.rc -------------------------------------------------------------------------------- /swiftwinrt/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types.h -------------------------------------------------------------------------------- /swiftwinrt/types/attributed_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/attributed_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/class_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/class_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/class_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/class_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/delegate_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/delegate_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/delegate_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/delegate_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/element_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/element_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/element_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/element_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/enum_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/enum_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/enum_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/enum_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/event_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/event_def.h -------------------------------------------------------------------------------- /swiftwinrt/types/function_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/function_def.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/function_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/function_def.h -------------------------------------------------------------------------------- /swiftwinrt/types/function_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/function_param.h -------------------------------------------------------------------------------- /swiftwinrt/types/function_return_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/function_return_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/generic_inst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/generic_inst.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/generic_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/generic_inst.h -------------------------------------------------------------------------------- /swiftwinrt/types/generic_type_parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/generic_type_parameter.h -------------------------------------------------------------------------------- /swiftwinrt/types/interface_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/interface_info.h -------------------------------------------------------------------------------- /swiftwinrt/types/interface_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/interface_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/interface_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/interface_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/interface_writer_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/interface_writer_helpers.h -------------------------------------------------------------------------------- /swiftwinrt/types/mapped_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/mapped_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/mapped_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/mapped_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/metadata_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/metadata_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/property_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/property_def.h -------------------------------------------------------------------------------- /swiftwinrt/types/struct_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/struct_member.h -------------------------------------------------------------------------------- /swiftwinrt/types/struct_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/struct_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/struct_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/struct_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/system_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/system_type.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/system_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/system_type.h -------------------------------------------------------------------------------- /swiftwinrt/types/type_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/type_constants.h -------------------------------------------------------------------------------- /swiftwinrt/types/type_definition_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/type_definition_helpers.h -------------------------------------------------------------------------------- /swiftwinrt/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/type_traits.h -------------------------------------------------------------------------------- /swiftwinrt/types/typedef_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/typedef_base.cpp -------------------------------------------------------------------------------- /swiftwinrt/types/typedef_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/types/typedef_base.h -------------------------------------------------------------------------------- /swiftwinrt/utility/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/attributes.h -------------------------------------------------------------------------------- /swiftwinrt/utility/cmd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/cmd_reader.h -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_cache.cpp -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_cache.h -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_filter.cpp -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_filter.h -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_helpers.cpp -------------------------------------------------------------------------------- /swiftwinrt/utility/metadata_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/metadata_helpers.h -------------------------------------------------------------------------------- /swiftwinrt/utility/separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/separator.h -------------------------------------------------------------------------------- /swiftwinrt/utility/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/settings.h -------------------------------------------------------------------------------- /swiftwinrt/utility/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/sha1.h -------------------------------------------------------------------------------- /swiftwinrt/utility/swift_codegen_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/swift_codegen_utils.cpp -------------------------------------------------------------------------------- /swiftwinrt/utility/swift_codegen_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/swift_codegen_utils.h -------------------------------------------------------------------------------- /swiftwinrt/utility/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/task_group.h -------------------------------------------------------------------------------- /swiftwinrt/utility/text_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/text_writer.h -------------------------------------------------------------------------------- /swiftwinrt/utility/type_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/type_helpers.cpp -------------------------------------------------------------------------------- /swiftwinrt/utility/type_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/type_helpers.h -------------------------------------------------------------------------------- /swiftwinrt/utility/type_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/type_writers.h -------------------------------------------------------------------------------- /swiftwinrt/utility/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/swiftwinrt/utility/versioning.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/Package.swift -------------------------------------------------------------------------------- /tests/test_app/AggregationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/AggregationTests.swift -------------------------------------------------------------------------------- /tests/test_app/AppDerived.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/AppDerived.swift -------------------------------------------------------------------------------- /tests/test_app/ArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/ArrayTests.swift -------------------------------------------------------------------------------- /tests/test_app/AsyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/AsyncTests.swift -------------------------------------------------------------------------------- /tests/test_app/BufferTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/BufferTests.swift -------------------------------------------------------------------------------- /tests/test_app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_app/CollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/CollectionTests.swift -------------------------------------------------------------------------------- /tests/test_app/DoubleDelegate+QueryInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/DoubleDelegate+QueryInterface.swift -------------------------------------------------------------------------------- /tests/test_app/EventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/EventTests.swift -------------------------------------------------------------------------------- /tests/test_app/MemoryManagementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/MemoryManagementTests.swift -------------------------------------------------------------------------------- /tests/test_app/ValueBoxingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/ValueBoxingTests.swift -------------------------------------------------------------------------------- /tests/test_app/WeakReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/WeakReferenceTests.swift -------------------------------------------------------------------------------- /tests/test_app/WinRTInterfaceImplementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/WinRTInterfaceImplementations.swift -------------------------------------------------------------------------------- /tests/test_app/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/main.swift -------------------------------------------------------------------------------- /tests/test_app/test_app.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_app/test_app.exe.manifest -------------------------------------------------------------------------------- /tests/test_component/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_component/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Package.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_component/Sources/CWinRT/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/CWinRT/include/module.modulemap -------------------------------------------------------------------------------- /tests/test_component/Sources/CWinRT/include/test_component.Delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/CWinRT/include/test_component.Delegates.h -------------------------------------------------------------------------------- /tests/test_component/Sources/CWinRT/include/test_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/CWinRT/include/test_component.h -------------------------------------------------------------------------------- /tests/test_component/Sources/CWinRT/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/CWinRT/shim.c -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/UWP+Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/UWP+Generics.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Data.Text+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Data.Text+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Data.Text+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Data.Text+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Data.Text+TextSegment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Data.Text+TextSegment.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+CreationCollisionOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+CreationCollisionOption.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+FileAccessMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+FileAccessMode.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+FileAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+FileAttributes.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageFile.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageFile2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageFile2.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageFilePropertiesWithAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageFilePropertiesWithAvailability.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageFolder.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageFolder2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageFolder2.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageItem.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageItem2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageItem2.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageItemProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageItemProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageItemProperties2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageItemProperties2.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStorageItemPropertiesWithProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStorageItemPropertiesWithProvider.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+IStreamedFileDataRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+IStreamedFileDataRequest.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+NameCollisionOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+NameCollisionOption.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+PathIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+PathIO.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageDeleteOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageDeleteOption.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageFile.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageFolder.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageItemTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageItemTypes.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChange.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeReader.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeTracker.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeTrackerOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeTrackerOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageLibraryChangeType.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageOpenOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageOpenOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageProvider.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StorageStreamTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StorageStreamTransaction.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StreamedFileDataRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StreamedFileDataRequest.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StreamedFileDataRequestedHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StreamedFileDataRequestedHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage+StreamedFileFailureMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage+StreamedFileFailureMode.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+BasicProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+BasicProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+DocumentProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+DocumentProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+IStorageItemExtraProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+IStorageItemExtraProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ImageProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ImageProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+MusicProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+MusicProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+PhotoOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+PhotoOrientation.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+PropertyPrefetchOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+PropertyPrefetchOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+StorageItemContentProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+StorageItemContentProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+StorageItemThumbnail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+StorageItemThumbnail.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailMode.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+ThumbnailType.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+VideoOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+VideoOrientation.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.FileProperties+VideoProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.FileProperties+VideoProperties.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+CommonFileQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+CommonFileQuery.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+CommonFolderQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+CommonFolderQuery.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+DateStackOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+DateStackOption.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+FolderDepth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+FolderDepth.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+IStorageFolderQueryOperations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+IStorageFolderQueryOperations.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+IStorageQueryResultBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+IStorageQueryResultBase.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+IndexedState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+IndexedState.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+IndexerOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+IndexerOption.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+QueryOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+QueryOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+SortEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+SortEntry.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+StorageFileQueryResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+StorageFileQueryResult.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+StorageFolderQueryResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+StorageFolderQueryResult.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Search+StorageItemQueryResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Search+StorageItemQueryResult.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+Buffer.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IBuffer.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IContentTypeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IContentTypeProvider.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IInputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IInputStream.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IInputStreamReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IInputStreamReference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IOutputStream.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStream.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStreamReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStreamReference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStreamWithContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+IRandomAccessStreamWithContentType.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+InputStreamOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+InputStreamOptions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.Storage.Streams+UnicodeEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.Storage.Streams+UnicodeEncoding.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+User.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserAgeConsentGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserAgeConsentGroup.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserAgeConsentResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserAgeConsentResult.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatus.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatusChangeDeferral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatusChangeDeferral.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatusChangingEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserAuthenticationStatusChangingEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserChangedEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserChangedEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserPictureSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserPictureSize.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserType.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserWatcher.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserWatcherStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserWatcherStatus.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/UWP/Windows.System+UserWatcherUpdateKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/UWP/Windows.System+UserWatcherUpdateKind.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/aggregation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/aggregation.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/array+fromabi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/array+fromabi.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/array+toabi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/array+toabi.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/array+tovector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/array+tovector.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/com+extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/com+extensions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/comptr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/comptr.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/cppinteropworkaround.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/cppinteropworkaround.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/customqueryinterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/customqueryinterface.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/debugging.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/dictionary+tomap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/dictionary+tomap.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/error.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/errorhandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/errorhandling.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/event.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/eventhandlersubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/eventhandlersubscription.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/eventsource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/eventsource.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/guid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/guid.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/hstring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/hstring.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/ibufferbyteaccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/ibufferbyteaccess.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iinspectable+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iinspectable+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iinspectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iinspectable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/imap+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/imap+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/imemorybufferbyteaccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/imemorybufferbyteaccess.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iunknown+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iunknown+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iunknown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iunknown.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iunknownref.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iunknownref.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/ivector+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/ivector+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iweakreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iweakreference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/iweakreferencesource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/iweakreferencesource.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/makefromabi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/makefromabi.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/marshaler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/marshaler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/propertyvalue+abi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/propertyvalue+abi.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/propertyvalue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/propertyvalue.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/rawtyped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/rawtyped.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/runtime+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/runtime+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/swift+extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/swift+extensions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/trustlevel+swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/trustlevel+swift.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/waitableevent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/waitableevent.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/winrtbridgeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/winrtbridgeable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/winrtdelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/winrtdelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/winrtprotocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/winrtprotocols.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/winrtwrapperbase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/winrtwrapperbase.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Support/winsdk+extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Support/winsdk+extensions.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncActionCompletedHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncActionCompletedHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationCompletedHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationCompletedHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationProgressHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationProgressHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationWithProgressCompletedHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncOperationWithProgressCompletedHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+AsyncStatus.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+DateTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+DateTime.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Deferral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Deferral.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+DeferralCompletedHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+DeferralCompletedHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+EventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+EventHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+GuidHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+GuidHelper.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncAction.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncInfo.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncOperation.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncOperationWithProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IAsyncOperationWithProgress.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IClosable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IClosable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IMemoryBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IMemoryBuffer.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IMemoryBufferReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IMemoryBufferReference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IPropertyValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IPropertyValue.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IReference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IStringable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IStringable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IWwwFormUrlDecoderEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+IWwwFormUrlDecoderEntry.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+MemoryBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+MemoryBuffer.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Point.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+PropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+PropertyType.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Rect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Rect.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Size.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+TimeSpan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+TimeSpan.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+TypedEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+TypedEventHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Uri.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+Uri.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation+WwwFormUrlDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation+WwwFormUrlDecoder.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+CollectionChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+CollectionChange.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IIterable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IIterator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IIterator.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IKeyValuePair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IKeyValuePair.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMap.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMapChangedEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMapChangedEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IMapView.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IObservableMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IObservableMap.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IObservableVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IObservableVector.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IPropertySet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IPropertySet.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVector.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVectorChangedEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVectorChangedEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+IVectorView.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+MapChangedEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+MapChangedEventHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+PropertySet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+PropertySet.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+StringMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+StringMap.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+ValueSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+ValueSet.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+VectorChangedEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/Windows.Foundation.Collections+VectorChangedEventHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/WindowsFoundation/WindowsFoundation+Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/WindowsFoundation/WindowsFoundation+Generics.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+ArrayMethodCallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+ArrayMethodCallback.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+ArrayMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+ArrayMethods.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+AsyncMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+AsyncMethods.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+AsyncOperationInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+AsyncOperationInt.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Base.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BaseCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BaseCollection.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BaseMapCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BaseMapCollection.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BaseNoOverrides.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BaseNoOverrides.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BaseObservableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BaseObservableCollection.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BlittableStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BlittableStruct.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+BufferTester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+BufferTester.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Class.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+CollectionTester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+CollectionTester.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+DeferrableEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+DeferrableEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Derived.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Derived.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+DerivedFromNoConstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+DerivedFromNoConstructor.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+EventTester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+EventTester.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Fruit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Fruit.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Generics.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IArrayScenarios.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IArrayScenarios.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IArrayShouldBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IArrayShouldBuild.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IAsyncMethodsWithProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IAsyncMethodsWithProgress.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IAsyncOperationInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IAsyncOperationInt.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IBasic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IBasic.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IIAmImplementable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IIAmImplementable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IInterfaceWithObservableVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IInterfaceWithObservableVector.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+IReferenceTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+IReferenceTarget.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+ISimpleDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+ISimpleDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+InterfaceWithReturnDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+InterfaceWithReturnDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Keywords.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Keywords.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+NonBlittableBoolStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+NonBlittableBoolStruct.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+NonBlittableStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+NonBlittableStruct.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+NoopClosable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+NoopClosable.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+NullValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+NullValues.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+ObjectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+ObjectHandler.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Signed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Signed.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Simple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Simple.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+SimpleEventArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+SimpleEventArgs.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+StaticClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+StaticClass.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+StructWithEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+StructWithEnum.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+StructWithIReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+StructWithIReference.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+SwiftifiableNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+SwiftifiableNames.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+UnsealedDerived.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+UnsealedDerived.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+UnsealedDerived2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+UnsealedDerived2.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+UnsealedDerivedFromNoConstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+UnsealedDerivedFromNoConstructor.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+UnsealedDerivedNoConstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+UnsealedDerivedNoConstructor.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+UnsealedDerivedNoOverrides.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+UnsealedDerivedNoOverrides.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+Unsigned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+Unsigned.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+VoidToVoidDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+VoidToVoidDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+WeakReferencer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+WeakReferencer.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+WithIterableGuids.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+WithIterableGuids.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component+WithKeyword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component+WithKeyword.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+ABI.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+Impl.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+InDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+InDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+InObjectDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+InObjectDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+ReturnInt32Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+ReturnInt32Delegate.swift -------------------------------------------------------------------------------- /tests/test_component/Sources/test_component/test_component.Delegates+SignalDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/Sources/test_component/test_component.Delegates+SignalDelegate.swift -------------------------------------------------------------------------------- /tests/test_component/cpp/ArrayMethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/ArrayMethods.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/ArrayMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/ArrayMethods.h -------------------------------------------------------------------------------- /tests/test_component/cpp/ArrayTester.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/ArrayTester.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/AsyncMethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/AsyncMethods.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/AsyncMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/AsyncMethods.h -------------------------------------------------------------------------------- /tests/test_component/cpp/AsyncMethods.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/AsyncMethods.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/AsyncOperationInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/AsyncOperationInt.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/AsyncOperationInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/AsyncOperationInt.h -------------------------------------------------------------------------------- /tests/test_component/cpp/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Base.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Base.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseCollection.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseCollection.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseMapCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseMapCollection.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseMapCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseMapCollection.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseNoOverrides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseNoOverrides.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseNoOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseNoOverrides.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseObservableCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseObservableCollection.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/BaseObservableCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BaseObservableCollection.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BufferTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BufferTester.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/BufferTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BufferTester.h -------------------------------------------------------------------------------- /tests/test_component/cpp/BufferTests.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/BufferTests.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_component/cpp/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Class.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Class.h -------------------------------------------------------------------------------- /tests/test_component/cpp/CollectionTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/CollectionTester.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/CollectionTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/CollectionTester.h -------------------------------------------------------------------------------- /tests/test_component/cpp/CollectionTester.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/CollectionTester.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/Derived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Derived.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Derived.h -------------------------------------------------------------------------------- /tests/test_component/cpp/DerivedFromNoConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/DerivedFromNoConstructor.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/DerivedFromNoConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/DerivedFromNoConstructor.h -------------------------------------------------------------------------------- /tests/test_component/cpp/EventTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/EventTester.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/EventTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/EventTester.h -------------------------------------------------------------------------------- /tests/test_component/cpp/EventTester.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/EventTester.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/Keywords.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Keywords.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/NoopClosable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/NoopClosable.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/NoopClosable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/NoopClosable.h -------------------------------------------------------------------------------- /tests/test_component/cpp/NullValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/NullValues.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/NullValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/NullValues.h -------------------------------------------------------------------------------- /tests/test_component/cpp/NullValues.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/NullValues.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/Optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Optional.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Optional.h -------------------------------------------------------------------------------- /tests/test_component/cpp/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Simple.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Simple.h -------------------------------------------------------------------------------- /tests/test_component/cpp/StaticClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/StaticClass.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/StaticClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/StaticClass.h -------------------------------------------------------------------------------- /tests/test_component/cpp/Types.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Types.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerived.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerived.h -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerived2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerived2.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerived2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerived2.h -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedFromNoConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedFromNoConstructor.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedFromNoConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedFromNoConstructor.h -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedNoConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedNoConstructor.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedNoConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedNoConstructor.h -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedNoOverrides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedNoOverrides.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/UnsealedDerivedNoOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/UnsealedDerivedNoOverrides.h -------------------------------------------------------------------------------- /tests/test_component/cpp/WeakReferencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/WeakReferencer.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/WeakReferencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/WeakReferencer.h -------------------------------------------------------------------------------- /tests/test_component/cpp/WeakReferencer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/WeakReferencer.idl -------------------------------------------------------------------------------- /tests/test_component/cpp/Windows.Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Windows.Class.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/Windows.Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/Windows.Class.h -------------------------------------------------------------------------------- /tests/test_component/cpp/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/exports.def -------------------------------------------------------------------------------- /tests/test_component/cpp/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/module.cpp -------------------------------------------------------------------------------- /tests/test_component/cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /tests/test_component/cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/pch.h -------------------------------------------------------------------------------- /tests/test_component/cpp/test_component.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-winrt/HEAD/tests/test_component/cpp/test_component.idl --------------------------------------------------------------------------------