├── .github ├── actions │ └── setup-swift │ │ └── action.yml └── workflows │ ├── build-and-test.yml │ └── publish-release.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── Building.md ├── CMakeLists.txt ├── CMakePresets.json ├── CompilerCheck ├── Bug72724 │ ├── CMakeLists.txt │ ├── Definition.swift │ └── Import.swift └── CMakeLists.txt ├── Docs ├── How it works.md ├── Migration from thebrowsercompany's swift-winrt.md ├── Projecting Errors └── Projection Design.md ├── Generator ├── .vscode │ ├── settings.json │ └── tasks.json ├── CMakeLists.txt ├── CMakePresets.json ├── Dependencies │ ├── CMakeLists.txt │ ├── swift-argument-parser │ │ └── CMakeLists.txt │ ├── swift-collections │ │ └── CMakeLists.txt │ └── swift-dotnetmetadata │ │ └── CMakeLists.txt ├── NuGet │ ├── CMakeLists.txt │ ├── Create-Package.ps1 │ └── Package.nuspec ├── Package.resolved ├── Package.swift ├── Projection.schema.json ├── SPMPostBuild.ps1 ├── Sources │ ├── CMakeLists.txt │ ├── CodeWriters │ │ ├── C │ │ │ ├── CCallingConvention.swift │ │ │ ├── CEnumerant.swift │ │ │ ├── CParamDecl.swift │ │ │ ├── CSourceFileWriter.swift │ │ │ ├── CType.swift │ │ │ ├── CTypeDeclKind.swift │ │ │ └── CVariableDecl.swift │ │ ├── CMake │ │ │ ├── CMakeCommandArgument.swift │ │ │ ├── CMakeLibraryType.swift │ │ │ ├── CMakeListsWriter.swift │ │ │ └── CMakeVisibility.swift │ │ ├── CMakeLists.txt │ │ ├── FileTextOutputStream.swift │ │ ├── LineBasedTextOutputStream.swift │ │ └── Swift │ │ │ ├── SwiftAttribute.swift │ │ │ ├── SwiftDocumentationComment.swift │ │ │ ├── SwiftIdentifier.swift │ │ │ ├── SwiftImportKind.swift │ │ │ ├── SwiftOperatorLocation.swift │ │ │ ├── SwiftPackage+write.swift │ │ │ ├── SwiftPackage.swift │ │ │ ├── SwiftParameter.swift │ │ │ ├── SwiftType+write.swift │ │ │ ├── SwiftType.swift │ │ │ ├── SwiftVisibility.swift │ │ │ └── SyntaxWriters │ │ │ ├── DocumentationComments.swift │ │ │ ├── Members.swift │ │ │ ├── Protocols.swift │ │ │ ├── SourceFile.swift │ │ │ ├── Statements.swift │ │ │ ├── SyntaxWriters.swift │ │ │ └── TypeDeclarations.swift │ ├── ProjectionModel │ │ ├── ABIMethodKind.swift │ │ ├── CAbi │ │ │ ├── CAbi+COMInterfaceDecl.swift │ │ │ ├── CAbi+CTypes.swift │ │ │ ├── CAbi+writing.swift │ │ │ └── CAbi.swift │ │ ├── CMakeLists.txt │ │ ├── Casing.swift │ │ ├── ClassFactoryKind.swift │ │ ├── Module.swift │ │ ├── ParamBinding.swift │ │ ├── Projection+abi.swift │ │ ├── Projection+conversion.swift │ │ ├── Projection+documentation.swift │ │ ├── Projection+params.swift │ │ ├── Projection+types.swift │ │ ├── Projection.swift │ │ ├── SHA1.swift │ │ ├── String+prefixes.swift │ │ ├── SupportModules.swift │ │ ├── TypeBinding.swift │ │ ├── Unowned.swift │ │ ├── WinRTMethodKind.swift │ │ └── WinRTTypeDiscoverer.swift │ └── SwiftWinRT │ │ ├── CMakeLists.txt │ │ ├── CMakeOptions.swift │ │ ├── CommandLineArguments.swift │ │ ├── Extensions │ │ ├── CMakeLists.txt │ │ ├── WindowsFoundationCollections_IIterable_swift │ │ ├── WindowsFoundationCollections_IVectorView_swift │ │ ├── WindowsFoundationCollections_IVector_swift │ │ ├── WindowsFoundation_IAsyncActionWithProgress_swift │ │ ├── WindowsFoundation_IAsyncAction_swift │ │ ├── WindowsFoundation_IAsyncOperationWithProgress_swift │ │ ├── WindowsFoundation_IAsyncOperation_swift │ │ ├── WindowsFoundation_IMemoryBufferReference_swift │ │ ├── WindowsFoundation_IMemoryBuffer_swift │ │ ├── WindowsFoundation_MemoryBuffer_swift │ │ ├── WindowsStorageStreams_Buffer_swift │ │ └── WindowsStorageStreams_IBuffer_swift │ │ ├── Filter.swift │ │ ├── ProjectionConfig.swift │ │ ├── SPMOptions.swift │ │ ├── Writing │ │ ├── ABIBinding.swift │ │ ├── ABIModule.swift │ │ ├── COMImportClass.swift │ │ ├── COMInteropExtension.swift │ │ ├── ClassDefinition.swift │ │ ├── EnumDefinition.swift │ │ ├── ExeManifest.swift │ │ ├── InterfaceDefinition.swift │ │ ├── MemberDefinition.swift │ │ ├── NamespaceModules.swift │ │ ├── NonthrowingProperties.swift │ │ ├── SecondaryInterfaces.swift │ │ ├── SourcePreamble.swift │ │ ├── StructDefinition.swift │ │ ├── SwiftPackageFile.swift │ │ ├── TypeDefinition.swift │ │ └── VirtualTable.swift │ │ ├── createProjection.swift │ │ ├── main.swift │ │ └── writeProjectionFiles.swift ├── Tests │ ├── LineBasedTextOutputStreamTests.swift │ └── SwiftSyntaxWriterTests.swift └── mscorlib │ └── CMakeLists.txt ├── InteropTests ├── .vscode │ └── tasks.json ├── CMakeLists.txt ├── CMakePresets.json ├── Package.swift ├── SPMPrebuild.ps1 ├── Tests │ ├── ActivationFactoryResolutionTests.swift │ ├── ActivationFactoryTests.swift │ ├── ArrayTests.swift │ ├── Asserts.swift │ ├── AsyncTests.swift │ ├── BuiltInConformancesTests.swift │ ├── ByteBufferTests.swift │ ├── ClassInheritanceTests.swift │ ├── CollectionTests.swift │ ├── DateTimeTests.swift │ ├── DeprecationTests.swift │ ├── EnumTests.swift │ ├── ErrorTests.swift │ ├── EventTests.swift │ ├── FlatModuleTests.swift │ ├── InspectableBoxingTests.swift │ ├── InterfaceImplementationTests.swift │ ├── LifetimeTests.swift │ ├── NamespaceModuleTests.swift │ ├── NullValueTests.swift │ ├── NumbersTests.swift │ ├── ObjectExportingTests.swift │ ├── OverloadingTests.swift │ ├── PropertyTests.swift │ ├── ReferenceBoxingTests.swift │ ├── StringTests.swift │ ├── StructTests.swift │ ├── ValueOutParamRoundtripTests.swift │ ├── ValueReturnRoundtripTests.swift │ ├── WeakReferenceTests.swift │ └── WinRTTestCase.swift └── WinRTComponent │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── Dll │ ├── Arrays.cpp │ ├── ByteBuffers.cpp │ ├── CMakeLists.txt │ ├── ClassInheritance.cpp │ ├── Collections.cpp │ ├── DateTimes.cpp │ ├── DeprecatedClass.cpp │ ├── DestructionCallback.cpp │ ├── Errors.cpp │ ├── Events.cpp │ ├── ForCustomActivationFactoryResolution.cpp │ ├── InspectableBoxing.cpp │ ├── Int32Global.cpp │ ├── Int32Wrapper.cpp │ ├── InterfaceCasting.cpp │ ├── ManualAsyncOperation.cpp │ ├── MinimalClass.cpp │ ├── MinimalInterfaceFactory.cpp │ ├── NullValues.cpp │ ├── Numbers.cpp │ ├── ObjectReferencer.cpp │ ├── OutputArgument.cpp │ ├── OverloadedSum.cpp │ ├── ReferenceBoxing.cpp │ ├── ReturnArgument.cpp │ ├── ShadowingConstructors.cpp │ ├── Strings.cpp │ ├── Structs.cpp │ ├── SwiftAttributes.cpp │ ├── WeakReferencer.cpp │ ├── WinRTComponent.def │ └── pch.h │ ├── GenerateProjection.cmake │ ├── Projection.json │ └── WinMD │ ├── Arrays.idl │ ├── ByteBuffers.idl │ ├── CMakeLists.txt │ ├── ClassInheritance.idl │ ├── Collections.idl │ ├── DateTimes.idl │ ├── Deprecation.idl │ ├── DestructionCallback.idl │ ├── DocumentationComments.idl │ ├── Enums.idl │ ├── Errors.idl │ ├── Events.idl │ ├── ForCustomActivationFactoryResolution.idl │ ├── IExposeObservableVector.idl │ ├── IMultiGenericInstantiation.idl │ ├── IMultiOutParams.idl │ ├── InspectableBoxing.idl │ ├── Int32Wrapper.idl │ ├── InterfaceCasting.idl │ ├── ManualAsyncOperation.idl │ ├── MinimalTypes.idl │ ├── NullValues.idl │ ├── Numbers.idl │ ├── ObjectReferencer.idl │ ├── OutputArgument.idl │ ├── OverloadedSum.idl │ ├── ReferenceBoxing.idl │ ├── ReturnArgument.idl │ ├── ShadowingConstructors.idl │ ├── Strings.idl │ ├── Structs.idl │ ├── SwiftAttributes.idl │ ├── WeakReferencer.idl │ └── WinRTComponent.xml ├── License.txt ├── Package.swift ├── Readme.md └── Support ├── CMakeLists.txt ├── Readme.md ├── Sources ├── ABIBindings │ ├── ABIBinding.swift │ ├── BoolBinding.swift │ ├── CMakeLists.txt │ ├── CStyleEnum.swift │ ├── CStyleEnumBinding.swift │ ├── IdentityBinding.swift │ ├── NumericBinding.swift │ ├── PODBinding.swift │ └── WideCharBinding.swift ├── CMakeLists.txt ├── COM │ ├── ABIBindings.swift │ ├── CMakeLists.txt │ ├── COMAggregableBase.swift │ ├── COMBinding.swift │ ├── COMDelegatingTearOff.swift │ ├── COMEmbedderEx.swift │ ├── COMEmbedding+statics.swift │ ├── COMEmbedding.swift │ ├── COMError+SwiftErrorInfo.swift │ ├── COMError+createErrorInfo.swift │ ├── COMError.swift │ ├── COMExportBase.swift │ ├── COMImplements.swift │ ├── COMImport.swift │ ├── COMInterop.swift │ ├── COMReference+Optional.swift │ ├── COMReference.swift │ ├── COMTearOffBase.swift │ ├── COMTwoWayBinding.swift │ ├── FreeThreadedMarshal.swift │ ├── NullResult.swift │ ├── Projection │ │ ├── BStrBinding.swift │ │ ├── COMArray.swift │ │ ├── GUID.swift │ │ ├── HResult+getMessage.swift │ │ ├── HResult.swift │ │ ├── HResultBinding.swift │ │ ├── IAgileObject.swift │ │ ├── ICreateErrorInfo.swift │ │ ├── IErrorInfo.swift │ │ ├── ISupportErrorInfo.swift │ │ └── IUnknown.swift │ ├── SupportErrorInfoForAllInterfaces.swift │ ├── VirtualTablePointer.swift │ └── comIdentical.swift ├── COM_ABI │ ├── CMakeLists.txt │ ├── combaseapi.c │ ├── include │ │ ├── SWRT │ │ │ ├── COMEmbedding.h │ │ │ ├── modules │ │ │ │ └── COM.h │ │ │ └── winapi │ │ │ │ ├── BaseTsd.h │ │ │ │ ├── combaseapi.h │ │ │ │ ├── guiddef.h │ │ │ │ ├── oaidl.h │ │ │ │ ├── objidl.h │ │ │ │ ├── oleauto.h │ │ │ │ ├── unknwn.h │ │ │ │ └── wtypes.h │ │ └── module.modulemap │ └── oleauto.c ├── WindowsRuntime │ ├── ActivationFactoryResolver.swift │ ├── AsyncAwaiter.swift │ ├── BindingProtocols+extensions.swift │ ├── BindingProtocols.swift │ ├── CMakeLists.txt │ ├── ClosedEnum.swift │ ├── ComposableClass.swift │ ├── EventInvocationList.swift │ ├── EventRegistration.swift │ ├── ExportedDelegate.swift │ ├── IInspectableVirtualTable.swift │ ├── IReferenceToOptionalBinding.swift │ ├── ModuleReexports.swift │ ├── Projection │ │ ├── ArrayBinding.swift │ │ ├── Char16.swift │ │ ├── EventRegistrationToken.swift │ │ ├── HString.swift │ │ ├── IActivationFactory.swift │ │ ├── IBufferByteAccess.swift │ │ ├── IInspectable.swift │ │ ├── ILanguageExceptionErrorInfo.swift │ │ ├── ILanguageExceptionErrorInfo2.swift │ │ ├── IMemoryBufferByteAccess.swift │ │ ├── IRestrictedErrorInfo.swift │ │ ├── IWeakReference.swift │ │ ├── IWeakReferenceSource.swift │ │ ├── PrimitiveBindings.swift │ │ ├── Readme.md │ │ ├── TrustLevel.swift │ │ └── WindowsFoundation │ │ │ ├── Readme.md │ │ │ ├── WindowsFoundation_DateTime.swift │ │ │ ├── WindowsFoundation_IPropertyValue.swift │ │ │ ├── WindowsFoundation_IReference.swift │ │ │ ├── WindowsFoundation_IReferenceArray.swift │ │ │ ├── WindowsFoundation_IStringable.swift │ │ │ ├── WindowsFoundation_Point.swift │ │ │ ├── WindowsFoundation_PropertyType.swift │ │ │ ├── WindowsFoundation_Rect.swift │ │ │ ├── WindowsFoundation_Size.swift │ │ │ └── WindowsFoundation_TimeSpan.swift │ ├── PropertyValueStatics.swift │ ├── ReferenceArrayImpl.swift │ ├── ReferenceImpl.swift │ ├── SwiftWrapperFactory.swift │ ├── WeakReference.swift │ ├── WinRTError+LanguageException.swift │ ├── WinRTError.swift │ ├── WinRTExportBase.swift │ ├── WinRTImport.swift │ ├── WinRTInitialization.swift │ ├── WinRTTearOffBase.swift │ ├── createIReference.swift │ └── winrtIdentical.swift └── WindowsRuntime_ABI │ ├── CMakeLists.txt │ ├── include │ ├── SWRT │ │ ├── modules │ │ │ └── WindowsRuntime.h │ │ └── winapi │ │ │ ├── activation.h │ │ │ ├── eventtoken.h │ │ │ ├── inspectable.h │ │ │ ├── memorybuffer.h │ │ │ ├── restrictederrorinfo.h │ │ │ ├── roapi.h │ │ │ ├── robuffer.h │ │ │ ├── roerrorapi.h │ │ │ ├── weakreference.h │ │ │ ├── windows.foundation.h │ │ │ ├── windows.foundation.ireference.h │ │ │ └── winstring.h │ └── module.modulemap │ ├── roapi.c │ ├── roerrorapi.c │ └── winstring.c └── Tests ├── ABI └── include │ ├── SWRT_ICOMTest.h │ ├── SWRT_ICOMTest2.h │ ├── SWRT_IWinRTTest.h │ └── module.modulemap └── Tests ├── COMExportTests.swift ├── COMExportTests.testSecondaryInterfaceImplementerIsClosure.swift ├── HResultTests.swift ├── HStringTests.swift ├── IReferenceTests.swift ├── IReferenceToOptionalTests.swift ├── Support ├── ICOMTest.swift ├── ICOMTest2.swift ├── IWinRTTest.swift └── WinRTTestCase.swift └── WinRTExportTests.swift /.github/actions/setup-swift/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.github/actions/setup-swift/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Building.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CompilerCheck/Bug72724/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/CompilerCheck/Bug72724/CMakeLists.txt -------------------------------------------------------------------------------- /CompilerCheck/Bug72724/Definition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/CompilerCheck/Bug72724/Definition.swift -------------------------------------------------------------------------------- /CompilerCheck/Bug72724/Import.swift: -------------------------------------------------------------------------------- 1 | import typealias Definition.AnyP -------------------------------------------------------------------------------- /CompilerCheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/CompilerCheck/CMakeLists.txt -------------------------------------------------------------------------------- /Docs/How it works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Docs/How it works.md -------------------------------------------------------------------------------- /Docs/Migration from thebrowsercompany's swift-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Docs/Migration from thebrowsercompany's swift-winrt.md -------------------------------------------------------------------------------- /Docs/Projecting Errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Docs/Projecting Errors -------------------------------------------------------------------------------- /Docs/Projection Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Docs/Projection Design.md -------------------------------------------------------------------------------- /Generator/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/.vscode/settings.json -------------------------------------------------------------------------------- /Generator/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/.vscode/tasks.json -------------------------------------------------------------------------------- /Generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/CMakePresets.json -------------------------------------------------------------------------------- /Generator/Dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Dependencies/swift-argument-parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Dependencies/swift-argument-parser/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Dependencies/swift-collections/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Dependencies/swift-collections/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Dependencies/swift-dotnetmetadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Dependencies/swift-dotnetmetadata/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/NuGet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/NuGet/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/NuGet/Create-Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/NuGet/Create-Package.ps1 -------------------------------------------------------------------------------- /Generator/NuGet/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/NuGet/Package.nuspec -------------------------------------------------------------------------------- /Generator/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Package.resolved -------------------------------------------------------------------------------- /Generator/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Package.swift -------------------------------------------------------------------------------- /Generator/Projection.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Projection.schema.json -------------------------------------------------------------------------------- /Generator/SPMPostBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/SPMPostBuild.ps1 -------------------------------------------------------------------------------- /Generator/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CCallingConvention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CCallingConvention.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CEnumerant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CEnumerant.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CParamDecl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CParamDecl.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CSourceFileWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CSourceFileWriter.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CType.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CTypeDeclKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CTypeDeclKind.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/C/CVariableDecl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/C/CVariableDecl.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/CMake/CMakeCommandArgument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/CMake/CMakeCommandArgument.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/CMake/CMakeLibraryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/CMake/CMakeLibraryType.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/CMake/CMakeListsWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/CMake/CMakeListsWriter.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/CMake/CMakeVisibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/CMake/CMakeVisibility.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/FileTextOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/FileTextOutputStream.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/LineBasedTextOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/LineBasedTextOutputStream.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftAttribute.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftDocumentationComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftDocumentationComment.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftIdentifier.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftImportKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftImportKind.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftOperatorLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftOperatorLocation.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftPackage+write.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftPackage+write.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftPackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftPackage.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftParameter.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftType+write.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftType+write.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftType.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SwiftVisibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SwiftVisibility.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/DocumentationComments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/DocumentationComments.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/Members.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/Members.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/Protocols.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/SourceFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/SourceFile.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/Statements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/Statements.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/SyntaxWriters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/SyntaxWriters.swift -------------------------------------------------------------------------------- /Generator/Sources/CodeWriters/Swift/SyntaxWriters/TypeDeclarations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/CodeWriters/Swift/SyntaxWriters/TypeDeclarations.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/ABIMethodKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/ABIMethodKind.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/CAbi/CAbi+COMInterfaceDecl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/CAbi/CAbi+COMInterfaceDecl.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/CAbi/CAbi+CTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/CAbi/CAbi+CTypes.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/CAbi/CAbi+writing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/CAbi/CAbi+writing.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/CAbi/CAbi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/CAbi/CAbi.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Casing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Casing.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/ClassFactoryKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/ClassFactoryKind.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Module.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/ParamBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/ParamBinding.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection+abi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection+abi.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection+conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection+conversion.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection+documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection+documentation.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection+params.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection+params.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection+types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection+types.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Projection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Projection.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/SHA1.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/String+prefixes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/String+prefixes.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/SupportModules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/SupportModules.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/TypeBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/TypeBinding.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/Unowned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/Unowned.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/WinRTMethodKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/WinRTMethodKind.swift -------------------------------------------------------------------------------- /Generator/Sources/ProjectionModel/WinRTTypeDiscoverer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/ProjectionModel/WinRTTypeDiscoverer.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/CMakeOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/CMakeOptions.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/CommandLineArguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/CommandLineArguments.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/CMakeLists.txt -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IIterable_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IIterable_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IVectorView_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IVectorView_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IVector_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundationCollections_IVector_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncActionWithProgress_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncActionWithProgress_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncAction_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncAction_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncOperationWithProgress_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncOperationWithProgress_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncOperation_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IAsyncOperation_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IMemoryBufferReference_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IMemoryBufferReference_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IMemoryBuffer_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_IMemoryBuffer_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_MemoryBuffer_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsFoundation_MemoryBuffer_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsStorageStreams_Buffer_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsStorageStreams_Buffer_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Extensions/WindowsStorageStreams_IBuffer_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Extensions/WindowsStorageStreams_IBuffer_swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Filter.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/ProjectionConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/ProjectionConfig.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/SPMOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/SPMOptions.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/ABIBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/ABIBinding.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/ABIModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/ABIModule.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/COMImportClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/COMImportClass.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/COMInteropExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/COMInteropExtension.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/ClassDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/ClassDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/EnumDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/EnumDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/ExeManifest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/ExeManifest.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/InterfaceDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/InterfaceDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/MemberDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/MemberDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/NamespaceModules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/NamespaceModules.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/NonthrowingProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/NonthrowingProperties.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/SecondaryInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/SecondaryInterfaces.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/SourcePreamble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/SourcePreamble.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/StructDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/StructDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/SwiftPackageFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/SwiftPackageFile.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/TypeDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/TypeDefinition.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/Writing/VirtualTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/Writing/VirtualTable.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/createProjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/createProjection.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/main.swift -------------------------------------------------------------------------------- /Generator/Sources/SwiftWinRT/writeProjectionFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Sources/SwiftWinRT/writeProjectionFiles.swift -------------------------------------------------------------------------------- /Generator/Tests/LineBasedTextOutputStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Tests/LineBasedTextOutputStreamTests.swift -------------------------------------------------------------------------------- /Generator/Tests/SwiftSyntaxWriterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/Tests/SwiftSyntaxWriterTests.swift -------------------------------------------------------------------------------- /Generator/mscorlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Generator/mscorlib/CMakeLists.txt -------------------------------------------------------------------------------- /InteropTests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/.vscode/tasks.json -------------------------------------------------------------------------------- /InteropTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/CMakeLists.txt -------------------------------------------------------------------------------- /InteropTests/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/CMakePresets.json -------------------------------------------------------------------------------- /InteropTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Package.swift -------------------------------------------------------------------------------- /InteropTests/SPMPrebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/SPMPrebuild.ps1 -------------------------------------------------------------------------------- /InteropTests/Tests/ActivationFactoryResolutionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ActivationFactoryResolutionTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ActivationFactoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ActivationFactoryTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ArrayTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/Asserts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/Asserts.swift -------------------------------------------------------------------------------- /InteropTests/Tests/AsyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/AsyncTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/BuiltInConformancesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/BuiltInConformancesTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ByteBufferTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ByteBufferTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ClassInheritanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ClassInheritanceTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/CollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/CollectionTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/DateTimeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/DateTimeTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/DeprecationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/DeprecationTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/EnumTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/EnumTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ErrorTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/EventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/EventTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/FlatModuleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/FlatModuleTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/InspectableBoxingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/InspectableBoxingTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/InterfaceImplementationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/InterfaceImplementationTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/LifetimeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/LifetimeTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/NamespaceModuleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/NamespaceModuleTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/NullValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/NullValueTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/NumbersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/NumbersTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ObjectExportingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ObjectExportingTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/OverloadingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/OverloadingTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/PropertyTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ReferenceBoxingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ReferenceBoxingTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/StringTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/StructTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/StructTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ValueOutParamRoundtripTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ValueOutParamRoundtripTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/ValueReturnRoundtripTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/ValueReturnRoundtripTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/WeakReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/WeakReferenceTests.swift -------------------------------------------------------------------------------- /InteropTests/Tests/WinRTTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/Tests/WinRTTestCase.swift -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/.gitignore -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/CMakeLists.txt -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/CMakePresets.json -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Arrays.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ByteBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ByteBuffers.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/CMakeLists.txt -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ClassInheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ClassInheritance.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Collections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Collections.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/DateTimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/DateTimes.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/DeprecatedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/DeprecatedClass.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/DestructionCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/DestructionCallback.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Errors.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Events.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ForCustomActivationFactoryResolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ForCustomActivationFactoryResolution.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/InspectableBoxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/InspectableBoxing.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Int32Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Int32Global.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Int32Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Int32Wrapper.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/InterfaceCasting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/InterfaceCasting.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ManualAsyncOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ManualAsyncOperation.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/MinimalClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/MinimalClass.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/MinimalInterfaceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/MinimalInterfaceFactory.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/NullValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/NullValues.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Numbers.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ObjectReferencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ObjectReferencer.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/OutputArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/OutputArgument.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/OverloadedSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/OverloadedSum.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ReferenceBoxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ReferenceBoxing.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ReturnArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ReturnArgument.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/ShadowingConstructors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/ShadowingConstructors.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Strings.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/Structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/Structs.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/SwiftAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/SwiftAttributes.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/WeakReferencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/WeakReferencer.cpp -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/WinRTComponent.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/WinRTComponent.def -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Dll/pch.h -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/GenerateProjection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/GenerateProjection.cmake -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/Projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/Projection.json -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Arrays.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Arrays.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ByteBuffers.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ByteBuffers.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/CMakeLists.txt -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ClassInheritance.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ClassInheritance.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Collections.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Collections.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/DateTimes.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/DateTimes.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Deprecation.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Deprecation.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/DestructionCallback.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/DestructionCallback.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/DocumentationComments.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/DocumentationComments.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Enums.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Enums.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Errors.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Errors.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Events.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Events.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ForCustomActivationFactoryResolution.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ForCustomActivationFactoryResolution.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/IExposeObservableVector.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/IExposeObservableVector.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/IMultiGenericInstantiation.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/IMultiGenericInstantiation.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/IMultiOutParams.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/IMultiOutParams.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/InspectableBoxing.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/InspectableBoxing.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Int32Wrapper.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Int32Wrapper.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/InterfaceCasting.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/InterfaceCasting.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ManualAsyncOperation.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ManualAsyncOperation.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/MinimalTypes.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/MinimalTypes.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/NullValues.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/NullValues.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Numbers.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Numbers.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ObjectReferencer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ObjectReferencer.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/OutputArgument.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/OutputArgument.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/OverloadedSum.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/OverloadedSum.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ReferenceBoxing.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ReferenceBoxing.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ReturnArgument.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ReturnArgument.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/ShadowingConstructors.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/ShadowingConstructors.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Strings.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Strings.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/Structs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/Structs.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/SwiftAttributes.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/SwiftAttributes.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/WeakReferencer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/WeakReferencer.idl -------------------------------------------------------------------------------- /InteropTests/WinRTComponent/WinMD/WinRTComponent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/InteropTests/WinRTComponent/WinMD/WinRTComponent.xml -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/License.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Package.swift -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Readme.md -------------------------------------------------------------------------------- /Support/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Sources) -------------------------------------------------------------------------------- /Support/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Readme.md -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/ABIBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/ABIBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/BoolBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/BoolBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/CStyleEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/CStyleEnum.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/CStyleEnumBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/CStyleEnumBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/IdentityBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/IdentityBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/NumericBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/NumericBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/PODBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/PODBinding.swift -------------------------------------------------------------------------------- /Support/Sources/ABIBindings/WideCharBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/ABIBindings/WideCharBinding.swift -------------------------------------------------------------------------------- /Support/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/COM/ABIBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/ABIBindings.swift -------------------------------------------------------------------------------- /Support/Sources/COM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/COM/COMAggregableBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMAggregableBase.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMBinding.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMDelegatingTearOff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMDelegatingTearOff.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMEmbedderEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMEmbedderEx.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMEmbedding+statics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMEmbedding+statics.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMEmbedding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMEmbedding.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMError+SwiftErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMError+SwiftErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMError+createErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMError+createErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMError.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMExportBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMExportBase.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMImplements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMImplements.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMImport.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMInterop.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMReference+Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMReference+Optional.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMReference.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMTearOffBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMTearOffBase.swift -------------------------------------------------------------------------------- /Support/Sources/COM/COMTwoWayBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/COMTwoWayBinding.swift -------------------------------------------------------------------------------- /Support/Sources/COM/FreeThreadedMarshal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/FreeThreadedMarshal.swift -------------------------------------------------------------------------------- /Support/Sources/COM/NullResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/NullResult.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/BStrBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/BStrBinding.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/COMArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/COMArray.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/GUID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/GUID.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/HResult+getMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/HResult+getMessage.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/HResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/HResult.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/HResultBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/HResultBinding.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/IAgileObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/IAgileObject.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/ICreateErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/ICreateErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/IErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/IErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/ISupportErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/ISupportErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/COM/Projection/IUnknown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/Projection/IUnknown.swift -------------------------------------------------------------------------------- /Support/Sources/COM/SupportErrorInfoForAllInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/SupportErrorInfoForAllInterfaces.swift -------------------------------------------------------------------------------- /Support/Sources/COM/VirtualTablePointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/VirtualTablePointer.swift -------------------------------------------------------------------------------- /Support/Sources/COM/comIdentical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM/comIdentical.swift -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/combaseapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/combaseapi.c -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/COMEmbedding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/COMEmbedding.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/modules/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/modules/COM.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/BaseTsd.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | typedef int32_t SWRT_HResult; -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/combaseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/combaseapi.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/guiddef.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/oaidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/oaidl.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/objidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/objidl.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/oleauto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/oleauto.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/unknwn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/SWRT/winapi/unknwn.h -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/SWRT/winapi/wtypes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | typedef char16_t* SWRT_BStr; -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/include/module.modulemap -------------------------------------------------------------------------------- /Support/Sources/COM_ABI/oleauto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/COM_ABI/oleauto.c -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ActivationFactoryResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ActivationFactoryResolver.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/AsyncAwaiter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/AsyncAwaiter.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/BindingProtocols+extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/BindingProtocols+extensions.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/BindingProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/BindingProtocols.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ClosedEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ClosedEnum.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ComposableClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ComposableClass.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/EventInvocationList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/EventInvocationList.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/EventRegistration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/EventRegistration.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ExportedDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ExportedDelegate.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/IInspectableVirtualTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/IInspectableVirtualTable.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/IReferenceToOptionalBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/IReferenceToOptionalBinding.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ModuleReexports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ModuleReexports.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/ArrayBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/ArrayBinding.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/Char16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/Char16.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/EventRegistrationToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/EventRegistrationToken.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/HString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/HString.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IActivationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IActivationFactory.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IBufferByteAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IBufferByteAccess.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IInspectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IInspectable.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/ILanguageExceptionErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/ILanguageExceptionErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/ILanguageExceptionErrorInfo2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/ILanguageExceptionErrorInfo2.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IMemoryBufferByteAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IMemoryBufferByteAccess.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IRestrictedErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IRestrictedErrorInfo.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IWeakReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IWeakReference.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/IWeakReferenceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/IWeakReferenceSource.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/PrimitiveBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/PrimitiveBindings.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/Readme.md -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/TrustLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/TrustLevel.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/Readme.md -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_DateTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_DateTime.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IPropertyValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IPropertyValue.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IReference.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IReferenceArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IReferenceArray.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IStringable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_IStringable.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Point.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_PropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_PropertyType.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Rect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Rect.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_Size.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_TimeSpan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/Projection/WindowsFoundation/WindowsFoundation_TimeSpan.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/PropertyValueStatics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/PropertyValueStatics.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ReferenceArrayImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ReferenceArrayImpl.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/ReferenceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/ReferenceImpl.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/SwiftWrapperFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/SwiftWrapperFactory.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WeakReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WeakReference.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTError+LanguageException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTError+LanguageException.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTError.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTExportBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTExportBase.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTImport.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTInitialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTInitialization.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/WinRTTearOffBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/WinRTTearOffBase.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/createIReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/createIReference.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime/winrtIdentical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime/winrtIdentical.swift -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/CMakeLists.txt -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/modules/WindowsRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/modules/WindowsRuntime.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/activation.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/eventtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/eventtoken.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/inspectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/inspectable.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/memorybuffer.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/restrictederrorinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/restrictederrorinfo.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/roapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/roapi.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/robuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/robuffer.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/roerrorapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/roerrorapi.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/weakreference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/weakreference.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/windows.foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/windows.foundation.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/windows.foundation.ireference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/windows.foundation.ireference.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/winstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/SWRT/winapi/winstring.h -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/include/module.modulemap -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/roapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/roapi.c -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/roerrorapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/roerrorapi.c -------------------------------------------------------------------------------- /Support/Sources/WindowsRuntime_ABI/winstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Sources/WindowsRuntime_ABI/winstring.c -------------------------------------------------------------------------------- /Support/Tests/ABI/include/SWRT_ICOMTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/ABI/include/SWRT_ICOMTest.h -------------------------------------------------------------------------------- /Support/Tests/ABI/include/SWRT_ICOMTest2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/ABI/include/SWRT_ICOMTest2.h -------------------------------------------------------------------------------- /Support/Tests/ABI/include/SWRT_IWinRTTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/ABI/include/SWRT_IWinRTTest.h -------------------------------------------------------------------------------- /Support/Tests/ABI/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/ABI/include/module.modulemap -------------------------------------------------------------------------------- /Support/Tests/Tests/COMExportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/COMExportTests.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/COMExportTests.testSecondaryInterfaceImplementerIsClosure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/COMExportTests.testSecondaryInterfaceImplementerIsClosure.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/HResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/HResultTests.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/HStringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/HStringTests.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/IReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/IReferenceTests.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/IReferenceToOptionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/IReferenceToOptionalTests.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/Support/ICOMTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/Support/ICOMTest.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/Support/ICOMTest2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/Support/ICOMTest2.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/Support/IWinRTTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/Support/IWinRTTest.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/Support/WinRTTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/Support/WinRTTestCase.swift -------------------------------------------------------------------------------- /Support/Tests/Tests/WinRTExportTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristanlabelle/swift-winrt/HEAD/Support/Tests/Tests/WinRTExportTests.swift --------------------------------------------------------------------------------