Updated Russian translation.
[midnight-commander.git] / lib / widget / history.h
blob0ac4c82e37022d1ea7de7a48ed54bab0b435a6fd
2 /** \file history.h
3 * \brief Header: save, load and show history
4 */
6 #ifndef MC__WIDGET_HISTORY_H
7 #define MC__WIDGET_HISTORY_H
9 /*** typedefs(not structures) and defined constants **********************************************/
11 /*** enums ***************************************************************************************/
13 /*** structures declarations (and typedefs of structures)*****************************************/
15 /*** global variables defined in .c file *********************************************************/
17 /*** declarations of public functions ************************************************************/
19 GList *history_get (const char *input_name);
20 void history_put (const char *input_name, GList * h);
21 /* for repositioning of history dialog we should pass widget to this
22 * function, as position of history dialog depends on widget's position */
23 char *history_show (GList ** history, Widget * widget);
25 /*** inline functions ****************************************************************************/
27 #endif /* MC__WIDGET_HISTORY_H */