mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
63 lines
2.0 KiB
C++
63 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
inline const std::vector<std::wstring> winAppSdkFiles = {
|
|
L"CoreMessagingXP.dll",
|
|
L"DWriteCore.dll",
|
|
L"DwmSceneI.dll",
|
|
L"MRM.dll",
|
|
L"Microsoft.DirectManipulation.dll",
|
|
L"Microsoft.InputStateManager.dll",
|
|
L"Microsoft.Internal.FrameworkUdk.dll",
|
|
L"Microsoft.UI.Composition.OSSupport.dll",
|
|
L"Microsoft.UI.Input.dll",
|
|
L"Microsoft.UI.Windowing.Core.dll",
|
|
L"Microsoft.UI.Windowing.dll",
|
|
L"Microsoft.UI.Xaml.Controls.dll",
|
|
L"Microsoft.UI.Xaml.Controls.pri",
|
|
L"Microsoft.UI.Xaml.Internal.dll",
|
|
L"Microsoft.UI.Xaml.Phone.dll",
|
|
L"Microsoft.Web.WebView2.Core.dll",
|
|
L"Microsoft.Windows.AppNotifications.Projection.dll",
|
|
L"Microsoft.Windows.ApplicationModel.Resources.dll",
|
|
L"Microsoft.WindowsAppRuntime.Bootstrap.dll",
|
|
L"Microsoft.Windows.PushNotifications.Projection.dll",
|
|
L"Microsoft.Windows.System.Projection.dll",
|
|
L"Microsoft.WindowsAppRuntime.Insights.Resource.dll",
|
|
L"Microsoft.WindowsAppRuntime.Release.Net.dll",
|
|
L"Microsoft.WindowsAppRuntime.dll",
|
|
L"Microsoft.ui.xaml.dll",
|
|
L"Microsoft.ui.xaml.resources.19h1.dll",
|
|
L"Microsoft.ui.xaml.resources.common.dll",
|
|
L"PushNotificationsLongRunningTask.ProxyStub.dll",
|
|
L"WinUIEdit.dll",
|
|
L"WindowsAppRuntime.png",
|
|
L"WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll",
|
|
L"WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll",
|
|
L"dcompi.dll",
|
|
L"dwmcorei.dll",
|
|
L"marshal.dll",
|
|
L"wuceffectsi.dll"
|
|
};
|
|
|
|
inline const std::vector<std::wstring> powerToysInteropFiles = {
|
|
L"concrt140.dll",
|
|
L"msvcp140.dll",
|
|
L"msvcp140_1.dll",
|
|
L"msvcp140_2.dll",
|
|
L"msvcp140_atomic_wait.dll",
|
|
L"msvcp140_codecvt_ids.dll",
|
|
L"PowerToys.Interop.dll",
|
|
L"vcamp140.dll",
|
|
L"vccorlib140.dll",
|
|
L"vcomp140.dll",
|
|
L"vcruntime140.dll",
|
|
L"vcruntime140_1.dll"
|
|
};
|
|
|
|
inline const std::vector<std::wstring> dotnetRuntimeFiles = { };
|
|
|
|
inline const std::vector<std::wstring> dotnetRuntimeWPFFiles = { };
|