mirror of https://github.com/MidnightCommander/mc
vfs_stamping: make opaque.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
66cf2a5a75
commit
d451d5978f
|
@ -92,6 +92,14 @@ int vfs_timeout = 60; /* VFS timeout in seconds */
|
||||||
|
|
||||||
/*** file scope type declarations ****************************************************************/
|
/*** file scope type declarations ****************************************************************/
|
||||||
|
|
||||||
|
struct vfs_stamping
|
||||||
|
{
|
||||||
|
struct vfs_class *v;
|
||||||
|
vfsid id;
|
||||||
|
struct vfs_stamping *next;
|
||||||
|
struct timeval time;
|
||||||
|
};
|
||||||
|
|
||||||
/*** file scope variables ************************************************************************/
|
/*** file scope variables ************************************************************************/
|
||||||
|
|
||||||
static struct vfs_stamping *stamps;
|
static struct vfs_stamping *stamps;
|
||||||
|
|
|
@ -14,14 +14,6 @@
|
||||||
|
|
||||||
/*** structures declarations (and typedefs of structures)*****************************************/
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
||||||
|
|
||||||
struct vfs_stamping
|
|
||||||
{
|
|
||||||
struct vfs_class *v;
|
|
||||||
vfsid id;
|
|
||||||
struct vfs_stamping *next;
|
|
||||||
struct timeval time;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*** global variables defined in .c file *********************************************************/
|
/*** global variables defined in .c file *********************************************************/
|
||||||
|
|
||||||
/*** declarations of public functions ************************************************************/
|
/*** declarations of public functions ************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue