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

  1. using System;
  2. namespace Apewer.Internals.Interop
  3. {
  4. /// <summary></summary>
  5. /// <param name="hWnd"></param>
  6. /// <param name="lParam"></param>
  7. /// <returns></returns>
  8. delegate bool EnumWindowsCallBack(int hWnd, int lParam);
  9. /// <summary></summary>
  10. /// <param name="nCode"></param>
  11. /// <param name="wParam"></param>
  12. /// <param name="lParam"></param>
  13. /// <returns></returns>
  14. delegate int SetWindowsHookExHookProc(int nCode, Int32 wParam, IntPtr lParam);
  15. }