2009-02-07 15:54:58 +03:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief Header: Virtual File System: garbage collection code
|
|
|
|
*/
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
#ifndef MC__VFS_GC_H
|
|
|
|
#define MC__VFS_GC_H
|
2003-11-08 02:43:55 +03:00
|
|
|
|
2011-02-15 16:44:17 +03:00
|
|
|
#include "vfs.h"
|
2004-08-17 03:18:42 +04:00
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
2019-01-26 16:26:02 +03:00
|
|
|
gboolean vfs_stamp (struct vfs_class *vclass, vfsid id);
|
2003-11-27 00:25:30 +03:00
|
|
|
void vfs_rmstamp (struct vfs_class *vclass, vfsid id);
|
2003-11-27 00:10:42 +03:00
|
|
|
void vfs_stamp_create (struct vfs_class *vclass, vfsid id);
|
2003-11-08 02:43:55 +03:00
|
|
|
void vfs_gc_done (void);
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
2010-04-17 12:06:09 +04:00
|
|
|
#endif /* MC_VFS_GC_H */
|