namespace Hardcodet.Wpf.TaskbarNotification.Interop
{
    /// 
    /// The notify icon version that is used. The higher
    /// the version, the more capabilities are available.
    /// 
    public enum NotifyIconVersion
    {
        /// 
        /// Default behavior (legacy Win95). Expects
        /// a  size of 488.
        /// 
        Win95 = 0x0,
        /// 
        /// Behavior representing Win2000 an higher. Expects
        /// a  size of 504.
        /// 
        Win2000 = 0x3,
        /// 
        /// Extended tooltip support, which is available for Vista and later.
        /// Detailed information about what the different versions do, can be found here
        /// 
        Vista = 0x4
    }
}