mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
21 lines
399 B
C#
21 lines
399 B
C#
using System;
|
|
|
|
namespace NvAPIWrapper.Native.General
|
|
{
|
|
/// <summary>
|
|
/// Chipset information flags - obsolete
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ChipsetInfoFlag
|
|
{
|
|
/// <summary>
|
|
/// No flags
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Hybrid chipset configuration
|
|
/// </summary>
|
|
Hybrid = 1
|
|
}
|
|
} |