mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-10 21:42:00 +03:00
758ab591d8
Mostly \file and \brief tag added. Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
19 lines
309 B
C
19 lines
309 B
C
|
|
/** \file hotlist.h
|
|
* \brief Header: directory hotlist
|
|
*/
|
|
|
|
#ifndef MC_HOTLIST_H
|
|
#define MC_HOTLIST_H
|
|
|
|
#define LIST_VFSLIST 0x01
|
|
#define LIST_HOTLIST 0x02
|
|
#define LIST_MOVELIST 0x04
|
|
|
|
void add2hotlist_cmd (void);
|
|
char *hotlist_cmd (int list_vfs);
|
|
int save_hotlist (void);
|
|
void done_hotlist (void);
|
|
|
|
#endif
|