mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
15daebf98e
- Main menu refactored to reduce info levels. Old "tutorials" are now part of the "More Information" (which already contained tutorials) on eLua Internals - Shell help command adapted to rw filesystems addition (ls lists all files of all filesystems) - Minor order and name changes on main menu sub-items - Minor refinements in some doc pages
16 lines
375 B
C
16 lines
375 B
C
// eLua shell
|
|
|
|
#ifndef __SHELL_H__
|
|
#define __SHELL_H__
|
|
|
|
#define SHELL_WELCOMEMSG "\n\neLua v%s Copyright (C) www.eluaproject.net\n"
|
|
#define SHELL_PROMPT "eLua# "
|
|
#define SHELL_ERRMSG "Invalid command, type 'help' for help\n"
|
|
#define SHELL_MAXSIZE 50
|
|
#define SHELL_MAX_LUA_ARGS 8
|
|
|
|
int shell_init();
|
|
void shell_start();
|
|
|
|
#endif // #ifndef __SHELL_H__
|