mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
25 lines
750 B
C#
25 lines
750 B
C#
#pragma warning disable 169 // Field 'x' is never used
|
|
#pragma warning disable 414 // Field 'x' is assigned but its value never used
|
|
#pragma warning disable 649 // Field 'x' is never assigned
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace RGB.NET.Devices.CorsairLegacy.Native;
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
/// <summary>
|
|
/// CUE-SDK: contains number of leds and arrays with their positions
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal class _CorsairLedPositions
|
|
{
|
|
/// <summary>
|
|
/// CUE-SDK: integer value.Number of elements in following array
|
|
/// </summary>
|
|
internal int numberOfLed;
|
|
|
|
/// <summary>
|
|
/// CUE-SDK: array of led positions
|
|
/// </summary>
|
|
internal nint pLedPosition;
|
|
} |