1
0
Fork 0
Backup-Essentials/BackupEssentials/Utils/NativeMethods.cs

13 lines
329 B
C#

using System;
using System.Runtime.InteropServices;
namespace BackupEssentials.Utils{
internal class NativeMethods{
[DllImport("USER32.DLL")]
[return: MarshalAs(UnmanagedType.Bool)]
protected internal static extern bool SetForegroundWindow(IntPtr hwnd);
private NativeMethods(){}
}
}