Subversion Repositories Kolibri OS

Rev

Rev 8629 | 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
 
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
11
 
8632 turbocat 12
13
 
8629 turbocat 14
extern char *__shell_shm;
15
extern int __shell_is_init;
16
extern int __shell_init();
17
18
 
19