summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/Win32.cs
blob: 2d067b40eda9c952d4c16f5526601e68066558ca (plain)
1
2
3
4
5
6
7
8
9
10
using System.Runtime.InteropServices;

namespace Handbrake.Functions
{
    class Win32
    {
        [DllImport("user32.dll")]
        public static extern int SetForegroundWindow(int hWnd);
    }
}