src/*/*.[ch]: fix indentation.
[midnight-commander.git] / src / filemanager / hotlist.h
blob95ae541af0a2934ecc472e442a6432c0f09da8de
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
14 LIST_VFSLIST = 0x01,
15 LIST_HOTLIST = 0x02,
16 LIST_MOVELIST = 0x04
17 } hotlist_t;
19 /*** structures declarations (and typedefs of structures)*****************************************/
21 /*** global variables defined in .c file *********************************************************/
23 /*** declarations of public functions ************************************************************/
25 void add2hotlist_cmd (void);
26 char *hotlist_show (hotlist_t list_type);
27 gboolean save_hotlist (void);
28 void done_hotlist (void);
30 /*** inline functions ****************************************************************************/
31 #endif /* MC__HOTLIST_H */