mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
11 lines
254 B
C#
11 lines
254 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace StormLibSharp.Native
|
|
{
|
|
internal static class Win32Methods
|
|
{
|
|
[DllImport("kernel32", SetLastError = false, ExactSpelling = false)]
|
|
public static extern int GetLastError();
|
|
}
|
|
}
|