├── .gitattributes ├── .gitignore ├── FMX.Win.Notification.XML.pas ├── FMX.Win.NotificationManager.pas ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/WindowsNotificationManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /__history/* 2 | *.~ 3 | -------------------------------------------------------------------------------- /FMX.Win.Notification.XML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/WindowsNotificationManager/HEAD/FMX.Win.Notification.XML.pas -------------------------------------------------------------------------------- /FMX.Win.NotificationManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/WindowsNotificationManager/HEAD/FMX.Win.NotificationManager.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/WindowsNotificationManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemulGM/WindowsNotificationManager/HEAD/README.md --------------------------------------------------------------------------------