DiscordChatExporter/DiscordChatExporter.Gui/Utils/NativeMethods.cs
2024-04-27 04:17:46 +03:00

12 lines
319 B
C#

using System.Runtime.InteropServices;
namespace DiscordChatExporter.Gui.Utils;
internal static class NativeMethods
{
public static class Windows
{
[DllImport("user32.dll", SetLastError = true)]
public static extern int MessageBox(nint hWnd, string text, string caption, uint type);
}
}