12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int TTF_IDISHWND = 0x0001;
-
-
-
- public const int TTF_CENTERTIP = 0x0002;
-
-
-
- public const int TTF_RTLREADING = 0x0004;
-
-
-
- public const int TTF_SUBCLASS = 0x0010;
-
-
-
- public const int TTF_TRACK = 0x0020;
-
-
-
- public const int TTF_ABSOLUTE = 0x0080;
-
-
-
- public const int TTF_TRANSPARENT = 0x0100;
-
-
-
- public const int TTF_PARSELINKS = 0x1000;
-
-
-
- public const int TTF_DI_SETITEM = 0x8000;
- }
- }
|