1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 Jonathan Gordon
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 #ifndef __PLUGINLIB_ACTIONS_H__
22 #define __PLUGINLIB_ACTIONS_H__
28 /* PLA stands for Plugin Lib Action :P */
30 PLA_UP
= LAST_ACTION_PLACEHOLDER
+1,
53 #if defined(HAVE_REMOTE_LCD)
54 extern const struct button_mapping remote_directions
[];
56 extern const struct button_mapping generic_directions
[];
57 extern const struct button_mapping generic_left_right_fire
[];
58 extern const struct button_mapping generic_actions
[];
59 extern const struct button_mapping generic_increase_decrease
[];
61 int pluginlib_getaction(const struct plugin_api
*api
,int timeout
,
62 const struct button_mapping
*plugin_contexts
[],
65 #endif /* __PLUGINLIB_ACTIONS_H__ */