[listener] New event type for spotify status changes

This commit is contained in:
chme 2017-08-26 09:16:27 +02:00
parent f449204ea2
commit 7bf6aec3a6

View File

@ -22,6 +22,8 @@ enum listener_event_type
LISTENER_UPDATE = (1 << 7),
/* A pairing request has started or finished */
LISTENER_PAIRING = (1 << 8),
/* Spotify status changes (login, logout) */
LISTENER_SPOTIFY = (1 << 9),
};
typedef void (*notify)(enum listener_event_type type);