diff options
| author | William Wilgus <me.theuser@yahoo.com> | 2018-08-24 00:44:32 +0200 |
|---|---|---|
| committer | William Wilgus <me.theuser@yahoo.com> | 2018-09-14 01:00:35 +0200 |
| commit | 733c20d5d3d696a60a7fd7098ca45cb545e78043 (patch) | |
| tree | f43cc3536114ffbd3811f1491a412b53f57eb259 /apps/plugins/lua/rocklib_img.h | |
| parent | be801c61bbe95d75e4285da1982017da7fa1736b (diff) | |
| download | rockbox-733c20d5d3d696a60a7fd7098ca45cb545e78043.zip rockbox-733c20d5d3d696a60a7fd7098ca45cb545e78043.tar.gz rockbox-733c20d5d3d696a60a7fd7098ca45cb545e78043.tar.bz2 rockbox-733c20d5d3d696a60a7fd7098ca45cb545e78043.tar.xz | |
lua move RLIMAGE to own file
Change-Id: Icd10e4c348deec7729d4a6e2bf1152e1dfc70243
Diffstat (limited to 'apps/plugins/lua/rocklib_img.h')
| -rw-r--r-- | apps/plugins/lua/rocklib_img.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib_img.h b/apps/plugins/lua/rocklib_img.h new file mode 100644 index 0000000..8b22806 --- /dev/null +++ b/apps/plugins/lua/rocklib_img.h @@ -0,0 +1,31 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2008 Dan Everton (safetydan) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef _ROCKLIB_IMG_H_ +#define _ROCKLIB_IMG_H_ + +#ifdef HAVE_LCD_BITMAP +#define RLI_EXTENDED +#endif + +LUALIB_API int rli_init(lua_State *L); + +#endif /* _ROCKLIB_IMG_H_ */ |