Adapt the remaining plugins to put the greyscale isr on cop. Now they can be used...
[Rockbox.git] / apps / plugins / lib / overlay.h
blobbbf75492741154102d5dc720a4b0c4aebf4b04d6
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Overlay loader
12 * Copyright (C) 2006 Jens Arnold
14 * All files in this archive are subject to the GNU General Public License.
15 * See the file COPYING in the source tree root for full license agreement.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef __OVERLAY_H__
23 #define __OVERLAY_H__
25 #ifndef SIMULATOR
26 #include "plugin.h"
28 /* load and run a plugin linked as an overlay. */
29 enum plugin_status run_overlay(struct plugin_api* api, void* parameter,
30 unsigned char *filename, unsigned char *name);
32 #endif /* !SIMULATOR */
33 #endif /* __OVERLAY_H__ */