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