12345678910111213141516171819202122232425262728293031 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int FLASHW_STOP = 0x00000000;
-
-
-
- public const int FLASHW_CAPTION = 0x00000001;
-
-
-
- public const int FLASHW_TRAY = 0x00000002;
-
-
-
- public const int FLASHW_ALL = 0x00000003;
-
-
-
- public const int FLASHW_TIMER = 0x00000004;
-
-
-
- public const int FLASHW_TIMERNOFG = 0x0000000C;
- }
- }
|