Subversion Repositories Kolibri OS

Rev

Rev 8632 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8629 turbocat 1
 
2
3
 
8635 turbocat 4
#define SHELL_EXIT  1
5
#define SHELL_PUTC  2
6
#define SHELL_PUTS  3
7
#define SHELL_GETC  4
8
#define SHELL_GETS  5
9
#define SHELL_CLS   6
10
#define SHELL_PID   7
11
#define SHELL_PING  8
12
8629 turbocat 13
 
8632 turbocat 14
15
 
8629 turbocat 16
extern char *__shell_shm;
17
extern int __shell_is_init;
18
extern void __shell_init();
8635 turbocat 19
8629 turbocat 20
 
21