mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
e5c0c7185e
svn path=/trunk/; revision=2456
18 lines
327 B
C
18 lines
327 B
C
#ifndef __COMMAND_H
|
|
#define __COMMAND_H
|
|
|
|
typedef struct {
|
|
WInput input;
|
|
callback_fn old_callback;
|
|
} WCommand;
|
|
|
|
WCommand *command_new (int y, int x, int len);
|
|
|
|
/* Return the Input * from a WCommand */
|
|
#define input_w(x) (&(x->input))
|
|
|
|
extern WCommand *cmdline;
|
|
|
|
void do_cd_command (char *cmd);
|
|
|
|
#endif /* __COMMAND_H */
|