diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-21 19:01:41 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-21 19:01:41 +0000 |
| commit | cf87597226f5d6b269f1f2c4d6f402aa1eccb852 (patch) | |
| tree | 4ba1f3ae53b3bd9cae0e2c6c4dd57836b43a5ece /apps/plugins/lua/rockconf.h | |
| parent | c483efadc63eaed35b5fb5e4e02c2282daf32470 (diff) | |
| download | rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.zip rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.gz rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.bz2 rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.xz | |
Commit FS#9174: Lua scripting language by Dan Everton
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21020 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rockconf.h')
| -rw-r--r-- | apps/plugins/lua/rockconf.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/apps/plugins/lua/rockconf.h b/apps/plugins/lua/rockconf.h new file mode 100644 index 0000000..7ae2245 --- /dev/null +++ b/apps/plugins/lua/rockconf.h @@ -0,0 +1,64 @@ +/*************************************************************************** + * __________ __ ___. + * 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 _ROCKCONF_H_ +#define _ROCKCONF_H_ + +#include "plugin.h" + +#undef LUAI_THROW +#undef LUAI_TRY +#undef luai_jmpbuf + +#ifndef SIMULATOR +#include "../../codecs/lib/setjmp.h" +#else +#include <setjmp.h> +#endif + +#include "lib/pluginlib_exit.h" + +#define LUAI_THROW(L,c) longjmp((c)->b, 1) +#define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } +#define luai_jmpbuf jmp_buf + +extern char curpath[MAX_PATH]; +void *dlrealloc(void *ptr, size_t size); +void dlfree(void *ptr); +long strtol(const char *nptr, char **endptr, int base); +unsigned long strtoul(const char *str, char **endptr, int base); +long floor(long x); +long pow(long x, long y); + +/* Simple substitutions */ +#define realloc dlrealloc +#define free dlfree +#define memchr rb->memchr +#define snprintf rb->snprintf +#define strcat rb->strcat +#define strchr rb->strchr +#define strcmp rb->strcmp +#define strcpy rb->strcpy +#define strncpy rb->strncpy +#define strlen rb->strlen + +#endif /* _ROCKCONF_H_ */ + |