mpd/src/Idle.cxx

22 lines
321 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
/*
* Support library for the "idle" command.
*
*/
2013-01-09 08:36:52 +01:00
#include "Idle.hxx"
#include "Main.hxx"
#include "Instance.hxx"
#include <cassert>
void
idle_add(unsigned flags)
{
assert(flags != 0);
2019-05-29 21:22:25 +02:00
global_instance->EmitIdle(flags);
}