TTF.cs 444 B

12345678910111213141516
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class TTF
  5. {
  6. public const int TTF_IDISHWND = 1;
  7. public const int TTF_CENTERTIP = 2;
  8. public const int TTF_RTLREADING = 4;
  9. public const int TTF_SUBCLASS = 16;
  10. public const int TTF_TRACK = 32;
  11. public const int TTF_ABSOLUTE = 128;
  12. public const int TTF_TRANSPARENT = 256;
  13. public const int TTF_PARSELINKS = 4096;
  14. public const int TTF_DI_SETITEM = 32768;
  15. }
  16. }