mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
20 lines
528 B
C#
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; }
|
|
}
|
|
} |