18 lines
661 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|