mc/src/hotlist.h
Mikhail S. Pobolovets 758ab591d8 Simple doxygen description for files in src directory.
Mostly \file and \brief tag added.

Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
2009-02-10 16:07:59 +02:00

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