1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-07-22 23:04:33 +02:00
Backup-Essentials/BackupEssentials/Utils/NativeMethods.cs
2015-05-04 20:33:17 +02:00

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(){}
}
}