summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/xlcd_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/xlcd_core.c')
-rw-r--r--apps/plugins/lib/xlcd_core.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/apps/plugins/lib/xlcd_core.c b/apps/plugins/lib/xlcd_core.c
new file mode 100644
index 0000000000..e8cc688591
--- /dev/null
+++ b/apps/plugins/lib/xlcd_core.c
@@ -0,0 +1,41 @@
1/***************************************************************************
2* __________ __ ___.
3* Open \______ \ ____ ____ | | _\_ |__ _______ ___
4* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7* \/ \/ \/ \/ \/
8* $Id$
9*
10* Additional LCD routines not present in the rockbox core
11* Core functions
12*
13* Copyright (C) 2005 Jens Arnold
14*
15* All files in this archive are subject to the GNU General Public License.
16* See the file COPYING in the source tree root for full license agreement.
17*
18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19* KIND, either express or implied.
20*
21****************************************************************************/
22
23#include "plugin.h"
24
25#ifdef HAVE_LCD_BITMAP
26#include "xlcd.h"
27
28/*** globals ***/
29
30struct plugin_api *_xlcd_rb = NULL; /* global api struct pointer */
31
32/*** functions ***/
33
34/* library init */
35void xlcd_init(struct plugin_api* newrb)
36{
37 _xlcd_rb = newrb;
38}
39
40#endif /* HAVE_LCD_BITMAP */
41