/
Logris
/
FileWatchService
Обзор
Документация
Войти
/
Logris
/
FileWatchService
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
AdminTools/Service/MiracleService/NotifyIcon/Interop/NotifyIconVersion.cs
27 строк
754 B
Logrus
first commit
15 мар 2025, 14:15
15 мар 2025, 14:15
6de831b
Код
Авторство
О чём код?
namespace MiracleService.Interop { /// <summary> /// The notify icon version that is used. The higher /// the version, the more capabilities are available. /// </summary> public enum NotifyIconVersion { /// <summary> /// Default behavior (legacy Win95). Expects /// a <see cref="NotifyIconData"/> size of 488. /// </summary> Win95 = 0x0, /// <summary> /// Behavior representing Win2000 an higher. Expects /// a <see cref="NotifyIconData"/> size of 504. /// </summary> Win2000 = 0x3, /// <summary> /// Extended tooltip support, which is available /// for Vista and later. /// </summary> Vista = 0x4 } }