Fix build

This commit is contained in:
Archi
2024-03-14 01:23:29 +01:00
parent 06b2cf4ff5
commit fcc0d70cd1

View File

@@ -107,12 +107,12 @@ internal static partial class NativeMethods {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
internal struct FlashWindowInfo { internal struct FlashWindowInfo {
#pragma warning disable ReSharper.Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later #pragma warning disable Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later
public uint StructSize; public uint StructSize;
public nint WindowHandle; public nint WindowHandle;
public EFlashFlags Flags; public EFlashFlags Flags;
public uint Count; public uint Count;
public uint TimeoutBetweenFlashes; public uint TimeoutBetweenFlashes;
#pragma warning restore ReSharper.Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later #pragma warning restore Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later
} }
} }