mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
19 lines
609 B
C#
19 lines
609 B
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace Wox.Plugin.Common.VirtualDesktop.Interop
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Virtual Desktop Manager class
|
|||
|
|
/// Code used from <see href="https://docs.microsoft.com/en-us/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10"./>
|
|||
|
|
/// </summary>
|
|||
|
|
[ComImport]
|
|||
|
|
[Guid("aa509086-5ca9-4c25-8f95-589d3c07b48a")]
|
|||
|
|
internal class CVirtualDesktopManager
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|