fix include file case
[reactos.git] / rosapps / mc / src / command.h
1 #ifndef __COMMAND_H
2 #define __COMMAND_H
3
4 typedef struct {
5 WInput input;
6 callback_fn old_callback;
7 } WCommand;
8
9 WCommand *command_new (int y, int x, int len);
10
11 /* Return the Input * from a WCommand */
12 #define input_w(x) (&(x->input))
13
14 extern WCommand *cmdline;
15
16 void do_cd_command (char *cmd);
17
18 #endif /* __COMMAND_H */