Files
CSSUDII.Sodium/SpaceWizards.Sodium.Interop/Generated/SetsLastSystemErrorAttribute.cs
2022-03-27 17:08:44 +02:00

18 lines
661 B
C#

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace SpaceWizards.Sodium.Interop
{
/// <summary>Specifies that the given method sets the last system error and it can be retrieved via <see cref="Marshal.GetLastSystemError" />.</summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
[Conditional("DEBUG")]
internal sealed partial class SetsLastSystemErrorAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="SetsLastSystemErrorAttribute" /> class.</summary>
public SetsLastSystemErrorAttribute()
{
}
}
}