mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
23 lines
610 B
C#
23 lines
610 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;
|
||
|
|
|
||
|
|
using Windows.Win32.Foundation;
|
||
|
|
|
||
|
|
namespace PowerDisplay.Common.Drivers
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Display configuration path source information
|
||
|
|
/// </summary>
|
||
|
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
|
public struct DisplayConfigPathSourceInfo
|
||
|
|
{
|
||
|
|
public LUID AdapterId;
|
||
|
|
public uint Id;
|
||
|
|
public uint ModeInfoIdx;
|
||
|
|
public uint StatusFlags;
|
||
|
|
}
|
||
|
|
}
|