blob: 9aacca4e5a4d227bda20c5c8a36796c7e4c30f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/** \file command.h
* \brief Header: command line widget
*/
#ifndef MC__COMMAND_H
#define MC__COMMAND_H
#include "lib/widget.h"
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
extern WInput *cmdline;
/*** declarations of public functions ************************************************************/
WInput *command_new (int y, int x, int len);
void command_set_default_colors (void);
void command_insert (WInput * in, const char *text, gboolean insert_extra_space);
/*** inline functions ****************************************************************************/
#endif /* MC__COMMAND_H */
|