Files

12 lines
407 B
C#
Raw Permalink Normal View History

2025-11-02 22:07:40 -05:00
using System.Runtime.InteropServices;
2025-11-02 21:11:39 -05:00
2026-01-27 12:03:01 -05:00
#pragma warning disable SYSLIB1054 // Use 'LibraryImportAttribute' instead of 'DllImportAttribute' to generate P/Invoke marshalling code at compile time
2025-11-02 21:11:39 -05:00
namespace StormLibSharp.Native
{
internal static class Win32Methods
{
[DllImport("kernel32", SetLastError = false, ExactSpelling = false)]
public static extern int GetLastError();
}
}