13 lines
269 B
C
13 lines
269 B
C
#ifndef RECENT_H
|
|
#define RECENT_H
|
|
|
|
int recent_init(int idx);
|
|
void recent_scan(int mode);
|
|
void recent_scroll_name();
|
|
void recent_print();
|
|
int recent_select(char* dir, char* path);
|
|
void recent_update(char* dir, char* path, int idx);
|
|
void recent_clear(int idx);
|
|
|
|
#endif
|