Files
eveo/Eve-O-Preview/DwmAPI/Interface/IWindowManager.cs
2018-02-03 21:09:15 +02:00

17 lines
432 B
C#

using System;
namespace EveOPreview
{
public interface IWindowManager
{
bool IsCompositionEnabled { get; }
IntPtr GetForegroundWindowHandle();
void ActivateWindow(IntPtr handle);
void DeactivateWindow(IntPtr handle);
void MoveWindow(IntPtr handle, int left, int top, int width, int height);
void GetWindowCoordinates(IntPtr handle, out int left, out int top, out int right, out int bottom);
}
}