├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── CWinAppSDK │ ├── delayloadhelper.c │ ├── include │ │ ├── CWinAppSDK-Bridging-Header.h │ │ └── module.modulemap │ └── nuget │ │ ├── bin │ │ ├── Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll │ │ └── Microsoft.WindowsAppRuntime.Bootstrap.dll │ │ ├── include │ │ ├── MRM.h │ │ ├── MddBootstrap.h │ │ ├── Microsoft.UI.Composition.Interop.h │ │ ├── Microsoft.UI.Dispatching.Interop.h │ │ ├── Microsoft.UI.Input.InputCursor.Interop.h │ │ ├── Microsoft.UI.Input.InputPreTranslateSource.Interop.h │ │ ├── Microsoft.UI.Interop.h │ │ ├── MsixDynamicDependency.h │ │ ├── Security.AccessControl.h │ │ ├── WebView2.h │ │ ├── WindowsAppRuntimeInsights.h │ │ ├── WindowsAppSDK-VersionInfo.h │ │ ├── dwrite.h │ │ ├── dwrite_1.h │ │ ├── dwrite_2.h │ │ ├── dwrite_3.h │ │ ├── dwrite_core.h │ │ ├── microsoft.ui.xaml.hosting.referencetracker.h │ │ ├── microsoft.ui.xaml.media.dxinterop.h │ │ ├── microsoft.ui.xaml.window.h │ │ ├── wil_msixdynamicdependency.h │ │ ├── winrtdirect3d11.h │ │ ├── winrtdirectxcommon.h │ │ └── xamlom.winui.h │ │ └── lib │ │ ├── DWriteCore.lib │ │ ├── MRM.lib │ │ ├── Microsoft.WindowsAppRuntime.Bootstrap.lib │ │ └── Microsoft.WindowsAppRuntime.lib └── WinAppSDK │ ├── Generated │ ├── Microsoft.Graphics.DirectX+ABI.swift │ ├── Microsoft.Graphics.DirectX+Impl.swift │ ├── Microsoft.Graphics.DirectX.swift │ ├── Microsoft.UI+ABI.swift │ ├── Microsoft.UI+Impl.swift │ ├── Microsoft.UI.Composition+ABI.swift │ ├── Microsoft.UI.Composition+Impl.swift │ ├── Microsoft.UI.Composition.Interactions+ABI.swift │ ├── Microsoft.UI.Composition.Interactions+Impl.swift │ ├── Microsoft.UI.Composition.Interactions.swift │ ├── Microsoft.UI.Composition.SystemBackdrops+ABI.swift │ ├── Microsoft.UI.Composition.SystemBackdrops+Impl.swift │ ├── Microsoft.UI.Composition.SystemBackdrops.swift │ ├── Microsoft.UI.Composition.swift │ ├── Microsoft.UI.Content+ABI.swift │ ├── Microsoft.UI.Content+Impl.swift │ ├── Microsoft.UI.Content.swift │ ├── Microsoft.UI.Dispatching+ABI.swift │ ├── Microsoft.UI.Dispatching+Impl.swift │ ├── Microsoft.UI.Dispatching.swift │ ├── Microsoft.UI.Input+ABI.swift │ ├── Microsoft.UI.Input+Impl.swift │ ├── Microsoft.UI.Input.swift │ ├── Microsoft.UI.Windowing+ABI.swift │ ├── Microsoft.UI.Windowing+Impl.swift │ ├── Microsoft.UI.Windowing.swift │ ├── Microsoft.UI.swift │ ├── Microsoft.Windows.AppLifecycle+ABI.swift │ ├── Microsoft.Windows.AppLifecycle+Impl.swift │ ├── Microsoft.Windows.AppLifecycle.swift │ ├── Microsoft.Windows.ApplicationModel.Resources+ABI.swift │ ├── Microsoft.Windows.ApplicationModel.Resources+Impl.swift │ ├── Microsoft.Windows.ApplicationModel.Resources.swift │ └── WinAppSDK+Generics.swift │ └── Initialize.swift ├── Tests └── WinAppSDKTests │ └── InitializerTests.swift ├── generate-bindings.ps1 ├── packages.config └── projections.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CWinAppSDK/delayloadhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/delayloadhelper.c -------------------------------------------------------------------------------- /Sources/CWinAppSDK/include/CWinAppSDK-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/include/CWinAppSDK-Bridging-Header.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/include/module.modulemap -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/bin/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/bin/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/bin/Microsoft.WindowsAppRuntime.Bootstrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/bin/Microsoft.WindowsAppRuntime.Bootstrap.dll -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/MRM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/MRM.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/MddBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/MddBootstrap.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Microsoft.UI.Composition.Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Microsoft.UI.Composition.Interop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Microsoft.UI.Dispatching.Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Microsoft.UI.Dispatching.Interop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Microsoft.UI.Input.InputCursor.Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Microsoft.UI.Input.InputCursor.Interop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Microsoft.UI.Input.InputPreTranslateSource.Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Microsoft.UI.Input.InputPreTranslateSource.Interop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Microsoft.UI.Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Microsoft.UI.Interop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/MsixDynamicDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/MsixDynamicDependency.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/Security.AccessControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/Security.AccessControl.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/WebView2.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/WindowsAppRuntimeInsights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/WindowsAppRuntimeInsights.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/WindowsAppSDK-VersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/WindowsAppSDK-VersionInfo.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/dwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/dwrite.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/dwrite_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/dwrite_1.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/dwrite_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/dwrite_2.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/dwrite_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/dwrite_3.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/dwrite_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/dwrite_core.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.hosting.referencetracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.hosting.referencetracker.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.media.dxinterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.media.dxinterop.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/microsoft.ui.xaml.window.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/wil_msixdynamicdependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/wil_msixdynamicdependency.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/winrtdirect3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/winrtdirect3d11.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/winrtdirectxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/winrtdirectxcommon.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/include/xamlom.winui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/include/xamlom.winui.h -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/lib/DWriteCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/lib/DWriteCore.lib -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/lib/MRM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/lib/MRM.lib -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/lib/Microsoft.WindowsAppRuntime.Bootstrap.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/lib/Microsoft.WindowsAppRuntime.Bootstrap.lib -------------------------------------------------------------------------------- /Sources/CWinAppSDK/nuget/lib/Microsoft.WindowsAppRuntime.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/CWinAppSDK/nuget/lib/Microsoft.WindowsAppRuntime.lib -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Graphics.DirectX.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.Interactions.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.SystemBackdrops.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Composition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Composition.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Content+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Content+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Content+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Content+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Content.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Dispatching.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Input+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Input+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Input+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Input+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Input.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Input.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Windowing+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Windowing+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Windowing+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Windowing+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.Windowing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.Windowing.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.UI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.AppLifecycle.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources+ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources+ABI.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources+Impl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources+Impl.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/Microsoft.Windows.ApplicationModel.Resources.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Generated/WinAppSDK+Generics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Generated/WinAppSDK+Generics.swift -------------------------------------------------------------------------------- /Sources/WinAppSDK/Initialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Sources/WinAppSDK/Initialize.swift -------------------------------------------------------------------------------- /Tests/WinAppSDKTests/InitializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/Tests/WinAppSDKTests/InitializerTests.swift -------------------------------------------------------------------------------- /generate-bindings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/generate-bindings.ps1 -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/packages.config -------------------------------------------------------------------------------- /projections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebrowsercompany/swift-windowsappsdk/HEAD/projections.json --------------------------------------------------------------------------------