Mercurial > geeqie
view src/filecache.h @ 968:065a129fd42b
Simplify things related to ViewFileInfoList * and ViewFileInfoIcon * type casting:
- drop VFICON_INFO() and VFLIST_INFO() macros
- rename VFLIST_INFO_POINTER() and VFICON_INFO_POINTER() to shorter VFLIST() and VFICON().
- replace all related occurrences by shorter expressions.
For example:
VFICON_INFO(vf, columns) becomes VFICON(vf)->columns
VFLIST_INFO(vf, click_fd) becomes VFLIST(vf)->click_fd
author | zas_ |
---|---|
date | Sun, 17 Aug 2008 09:30:45 +0000 |
parents | bd3bdceb1230 |
children | 1646720364cf |
line wrap: on
line source
/* * Geeqie * Copyright (C) 2008 The Geeqie Team * * Author: Vladimir Nadvornik * * This software is released under the GNU General Public License (GNU GPL). * Please read the included file COPYING for more information. * This software comes with no warranty of any kind, use at your own risk! */ #ifndef FILECACHE_H #define FILECACHE_H #include "main.h" #include "filedata.h" typedef struct _FileCacheData FileCacheData; typedef void (*FileCacheReleaseFunc)(FileData *fd); FileCacheData *file_cache_new(FileCacheReleaseFunc release, gulong max_size); gboolean file_cache_get(FileCacheData *fc, FileData *fd); void file_cache_put(FileCacheData *fc, FileData *fd, gulong size); void file_cache_dump(FileCacheData *fc); void file_cache_set_size(FileCacheData *fc, gulong size); gulong file_cache_get_max_size(FileCacheData *fc); gulong file_cache_get_size(FileCacheData *fc); void file_cache_set_max_size(FileCacheData *fc, gulong size); #endif