mpd/src/filter/Registry.hxx
2023-03-06 14:59:48 +01:00

20 lines
370 B
C++

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
/** \file
*
* This library manages all filter plugins which are enabled at
* compile time.
*/
#ifndef MPD_FILTER_REGISTRY_HXX
#define MPD_FILTER_REGISTRY_HXX
struct FilterPlugin;
[[gnu::pure]]
const FilterPlugin *
filter_plugin_by_name(const char *name) noexcept;
#endif