This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32/GenericExtensions.cs

14 lines
498 B
C#
Raw Normal View History

2020-01-10 16:58:48 +01:00
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace CC_Functions.W32
{
public static class GenericExtensions
{
public static Wnd32 GetWindow(this IntPtr handle) => Wnd32.fromHandle(handle);
public static Wnd32 GetMainWindow(this Process handle) => Wnd32.getProcessMain(handle);
public static Wnd32 GetWnd32(this Form frm) => Wnd32.fromForm(frm);
public static bool IsDown(this Keys key) => KeyboardReader.IsKeyDown(key);
}
}