88a3adce2bbd1bb492263d3210c712f61f530699
[midnight-commander.git] / src / filemanager / hotlist.h
blob88a3adce2bbd1bb492263d3210c712f61f530699
1 /** \file hotlist.h
2 * \brief Header: directory hotlist
3 */
5 #ifndef MC__HOTLIST_H
6 #define MC__HOTLIST_H
8 /*** typedefs(not structures) and defined constants **********************************************/
10 /*** enums ***************************************************************************************/
12 typedef enum {
13 LIST_VFSLIST = 0x01,
14 LIST_HOTLIST = 0x02,
15 LIST_MOVELIST = 0x04
16 } hotlist_t;
18 /*** structures declarations (and typedefs of structures)*****************************************/
20 /*** global variables defined in .c file *********************************************************/
22 /*** declarations of public functions ************************************************************/
24 void add2hotlist_cmd (void);
25 char *hotlist_show (hotlist_t list_type);
26 gboolean save_hotlist (void);
27 void done_hotlist (void);
29 /*** inline functions ****************************************************************************/
30 #endif /* MC__HOTLIST_H */