1234567891011121314151617181920212223242526272829303132333435 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int TTI_NONE = 0;
-
-
-
- public const int TTI_INFO = 1;
-
-
-
- public const int TTI_WARNING = 2;
-
-
-
- public const int TTI_ERROR = 3;
-
-
-
- public const int TTI_INFO_LARGE = 4;
-
-
-
- public const int TTI_WARNING_LARGE = 5;
-
-
-
- public const int TTI_ERROR_LARGE = 6;
- }
- }
|