os-k/kaleid/kernel/sh/shell.h

57 lines
2.4 KiB
C
Raw Normal View History

2019-05-08 15:09:16 +02:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Desc: Kernel shell //
// //
// //
// Copyright © 2018-2019 The OS/K Team //
// //
// This file is part of OS/K. //
// //
// OS/K 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 3 of the License, or //
// any later version. //
// //
// OS/K is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
//----------------------------------------------------------------------------//
#include <extras/buf.h>
#include <extras/argv.h>
2019-05-08 20:23:52 +02:00
#include <kernel/mm.h>
2019-05-09 11:19:44 +02:00
#include <kernel/boot.h>
2019-05-08 20:23:52 +02:00
#include <kernel/heap.h>
2019-05-08 15:09:16 +02:00
#include <kernel/time.h>
#include <kernel/speaker.h>
#include <kernel/iomisc.h>
#include <kernel/pwmgnt.h>
#include <kernel/keyboard.h>
extern void IoScrollDown(void);
extern void IoScrollUp(void);
2019-05-08 17:20:27 +02:00
extern int shargc;
extern char *argv0;
extern char **shargv;
2019-05-08 15:09:16 +02:00
#define CMDBUFSIZE 256
typedef struct Command_t Command_t;
struct Command_t
{
const char *name;
2019-05-08 17:20:27 +02:00
error_t (*func)(int argc, char **argv, char *cmdline);
const char *help;
2019-05-08 15:09:16 +02:00
};
2019-05-08 17:20:27 +02:00
extern Command_t cmdtable[];