blob: f0f855cb4a7b22460a539d3a8a67afa3304d4d4b (
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
|