4faef28cc5
-----BEGIN PGP SIGNATURE----- iQJEBAABCAAuFiEEA5IzWngIOJSkMBxDI26KWMbbRRIFAlkaFL0QHG1heEBtdXNp Y3BkLm9yZwAKCRAjbopYxttFEr4ID/9iAQC+7fFv06uLOm48Ufu+PgoD8uJkAwF5 QuLQkc85g9urn+bu9N7Qs7Vypp7aLyGcJKY0jyA8wxkOj24pUC3GYk80daUt561V 5s20FnoS/Uoman3CSJL94IfCUBxejizE6vgIIHTc5bb6U0qIsPub/8JTTE2Ih7uP nvFZ5uBQ+YTc7at+iIH9123eUMKkitkh8osNblovqQT9v42++Tm4ztAytRHBjwUA Itew5HhlvahbLKqFs/7vmICh/YX1FcOV7cV+erEWYfkH0KCI2bhSle4u2d0CBOvD VJlDnBCo9bM7WKcPYqJiFFFXA0CRk06wbkkkAtwF4zjp8xos7aQcq4FyQnYL8KXo 5lijIhRwBURBd+nt8oA9kuEhBt/T75otcemJkzVaYappHTJCLjhxSGcPt8mw+nE9 9WQzsp/MIVzg9l5g3D9S/43xM7uhvn98Tn1Qf2s8YRd2o8CZeOhW+X3RvbCvVPv2 mOlx4sFAv8DOJ3KxMdqiJT+PmylPyJluQdqH+tMc8BdPg/kpSpYIPTuSjjRqK1yh ld5do0HtAAwiHtvXfk5YVFjJSpO0c8yVn6xci2Cl4k/5ZHj2UE1ln+N5vCea2BRF 2J3HAjROwtcwY3lU1jFnEAogf24KWiFJqhhC0EqBGUdlrM8Dn37P5cEWWjROIMNK lPEdovokNw== =CdDy -----END PGP SIGNATURE----- Merge tag 'v0.20.7' release v0.20.7
89 lines
2.5 KiB
C++
89 lines
2.5 KiB
C++
/*
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
|
* http://www.musicpd.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
/*
|
|
* Support library for the "idle" command.
|
|
*
|
|
*/
|
|
|
|
#ifndef MPD_IDLE_FLAGS_HXX
|
|
#define MPD_IDLE_FLAGS_HXX
|
|
|
|
#include "Compiler.h"
|
|
|
|
/** song database has been updated*/
|
|
static constexpr unsigned IDLE_DATABASE = 0x1;
|
|
|
|
/** a stored playlist has been modified, created, deleted or
|
|
renamed */
|
|
static constexpr unsigned IDLE_STORED_PLAYLIST = 0x2;
|
|
|
|
/** the current playlist has been modified */
|
|
static constexpr unsigned IDLE_PLAYLIST = 0x4;
|
|
|
|
/** the player state has changed: play, stop, pause, seek, ... */
|
|
static constexpr unsigned IDLE_PLAYER = 0x8;
|
|
|
|
/** the volume has been modified */
|
|
static constexpr unsigned IDLE_MIXER = 0x10;
|
|
|
|
/** an audio output device has been enabled or disabled */
|
|
static constexpr unsigned IDLE_OUTPUT = 0x20;
|
|
|
|
/** options have changed: crossfade; random; repeat; ... */
|
|
static constexpr unsigned IDLE_OPTIONS = 0x40;
|
|
|
|
/** a sticker has been modified. */
|
|
static constexpr unsigned IDLE_STICKER = 0x80;
|
|
|
|
/** a database update has started or finished. */
|
|
static constexpr unsigned IDLE_UPDATE = 0x100;
|
|
|
|
/** a client has subscribed or unsubscribed to/from a channel */
|
|
static constexpr unsigned IDLE_SUBSCRIPTION = 0x200;
|
|
|
|
/** a message on the subscribed channel was received */
|
|
static constexpr unsigned IDLE_MESSAGE = 0x400;
|
|
|
|
/** a neighbor was found or lost */
|
|
static constexpr unsigned IDLE_NEIGHBOR = 0x800;
|
|
|
|
/** the mount list has changed */
|
|
static constexpr unsigned IDLE_MOUNT = 0x1000;
|
|
|
|
/** the partition list has changed */
|
|
static constexpr unsigned IDLE_PARTITION = 0x2000;
|
|
|
|
/**
|
|
* Get idle names
|
|
*/
|
|
gcc_const
|
|
const char*const*
|
|
idle_get_names() noexcept;
|
|
|
|
/**
|
|
* Parse an idle name and return its mask. Returns 0 if the given
|
|
* name is unknown.
|
|
*/
|
|
gcc_nonnull_all gcc_pure
|
|
unsigned
|
|
idle_parse_name(const char *name) noexcept;
|
|
|
|
#endif
|