You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
19 lines
503 B
using System;
|
|
|
|
namespace Apewer.Internals.Interop
|
|
{
|
|
|
|
/// <summary></summary>
|
|
/// <param name="hWnd"></param>
|
|
/// <param name="lParam"></param>
|
|
/// <returns></returns>
|
|
delegate bool EnumWindowsCallBack(int hWnd, int lParam);
|
|
|
|
/// <summary></summary>
|
|
/// <param name="nCode"></param>
|
|
/// <param name="wParam"></param>
|
|
/// <param name="lParam"></param>
|
|
/// <returns></returns>
|
|
delegate int SetWindowsHookExHookProc(int nCode, Int32 wParam, IntPtr lParam);
|
|
|
|
}
|
|
|