NM.cs 413 B

12345678910111213141516
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class NM
  5. {
  6. public const int NM_FIRST = 0;
  7. public const int NM_OUTOFMEMORY = -1;
  8. public const int NM_CLICK = -2;
  9. public const int NM_DBLCLK = -3;
  10. public const int NM_RETURN = -4;
  11. public const int NM_RCLICK = -5;
  12. public const int NM_RDBLCLK = -6;
  13. public const int NM_SETFOCUS = -7;
  14. public const int NM_KILLFOCUS = -8;
  15. }
  16. }