1 /** 2 * \file control/control_plugin.c 3 * \ingroup Control 4 * \brief Control Interface 5 * \author Jaroslav Kysela <perex@perex.cz> 6 * \date 2021 7 */ 8 /* 9 * Control - Common plugin code 10 * Copyright (c) 2021 by Jaroslav Kysela <perex@perex.cz> 11 * 12 * 13 * This library is free software; you can redistribute it and/or modify 14 * it under the terms of the GNU Lesser General Public License as 15 * published by the Free Software Foundation; either version 2.1 of 16 * the License, or (at your option) any later version. 17 * 18 * This program is distributed in the hope that it will be useful, 19 * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 * GNU Lesser General Public License for more details. 22 * 23 * You should have received a copy of the GNU Lesser General Public 24 * License along with this library; if not, write to the Free Software 25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 26 * 27 */ 28 29 /*! 30 31 \page control_plugins Primitive control plugins 32 33 Control plugins extends functionality and features of control devices. 34 The plugins take care about various control mapping or so. 35 36 The child configuration (in one compound): 37 38 \code 39 ctl.test { 40 type remap 41 child "hw:0" 42 ... map/remap configuration ... 43 } 44 \endcode 45 46 The child may be defined as compound containing the full specification: 47 48 \code 49 ctl.test { 50 type remap 51 child { 52 type hw 53 card 0 54 } 55 ... map/remap configuration ... 56 } 57 \endcode 58 59 */ 60 61 #include "control_local.h" 62 #include "control_plugin.h" 63 64 /* move the common plugin code from control_remap.c here on demand */ 65