HWND.cs 339 B

1234567891011
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class HWND
  5. {
  6. public static readonly IntPtr HWND_TOPMOST = new IntPtr(-1);
  7. public static readonly IntPtr HWND_NOTOPMOST = new IntPtr(-2);
  8. public static readonly IntPtr HWND_TOP = new IntPtr(0);
  9. public static readonly IntPtr HWND_BOTTOM = new IntPtr(1);
  10. }
  11. }