Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/Display/IPathTargetInfo.cs
2023-05-06 14:40:52 +02:00

20 lines
528 B
C#

using NvAPIWrapper.Native.Display.Structures;
namespace NvAPIWrapper.Native.Interfaces.Display
{
/// <summary>
/// Interface for all PathTargetInfo structures
/// </summary>
public interface IPathTargetInfo
{
/// <summary>
/// Contains extra information. NULL for Non-NVIDIA Display.
/// </summary>
PathAdvancedTargetInfo? Details { get; }
/// <summary>
/// Display identification
/// </summary>
uint DisplayId { get; }
}
}