src/filemanager/hotlist.[ch]: cleanup.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2012-09-20 14:27:15 +04:00
parent b406fdceb9
commit c40b5475f5
2 changed files with 227 additions and 238 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,14 @@
/*** typedefs(not structures) and defined constants **********************************************/
#define LIST_VFSLIST 0x01
#define LIST_HOTLIST 0x02
#define LIST_MOVELIST 0x04
/*** enums ***************************************************************************************/
typedef enum {
LIST_VFSLIST = 0x01,
LIST_HOTLIST = 0x02,
LIST_MOVELIST = 0x04
} hotlist_t;
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
@ -20,8 +22,8 @@
/*** declarations of public functions ************************************************************/
void add2hotlist_cmd (void);
char *hotlist_show (int list_vfs);
int save_hotlist (void);
char *hotlist_show (hotlist_t list_type);
gboolean save_hotlist (void);
void done_hotlist (void);
/*** inline functions ****************************************************************************/