diff options
author | Dennis Real <github@tildepipe.org> | 2013-02-02 20:53:23 +0100 |
---|---|---|
committer | Dennis Real <github@tildepipe.org> | 2013-02-02 20:53:23 +0100 |
commit | 353578ebc130f53547996ab87f5b3795c1360f3f (patch) | |
tree | 8a19969f7eb377f692892e24c24ba116940ba942 /src/filelist.h | |
parent | 38c3c37b5c45691211ed62e40a6c5f503b054335 (diff) | |
parent | 6ea43a3213bb264525e04c729c67204f82c7a2c8 (diff) |
Merge branch 'master' of git://github.com/derf/feh
Diffstat (limited to 'src/filelist.h')
-rw-r--r-- | src/filelist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/filelist.h b/src/filelist.h index 00e36e8..7bfd518 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -56,7 +56,7 @@ struct __feh_file_info { enum filelist_recurse { FILELIST_FIRST, FILELIST_CONTINUE, FILELIST_LAST }; -enum sort_type { SORT_NONE, SORT_NAME, SORT_FILENAME, SORT_WIDTH, +enum sort_type { SORT_NONE, SORT_NAME, SORT_FILENAME, SORT_MTIME, SORT_WIDTH, SORT_HEIGHT, SORT_PIXELS, SORT_SIZE, SORT_FORMAT @@ -82,6 +82,7 @@ void feh_save_filelist(); int feh_cmp_name(void *file1, void *file2); int feh_cmp_filename(void *file1, void *file2); +int feh_cmp_mtime(void *file1, void *file2); int feh_cmp_width(void *file1, void *file2); int feh_cmp_height(void *file1, void *file2); int feh_cmp_pixels(void *file1, void *file2); |