Splittet the vfs.h header into a user's part (vfs.h) and an implementor's part (vfs-impl.h).

This commit is contained in:
Roland Illig 2004-08-16 23:18:42 +00:00
parent 3cf53917e1
commit 34a8088483
10 changed files with 12 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#include <config.h>
#include <errno.h>
#include "utilvfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_rmstamp */
#include "xdirentry.h"

View File

@ -28,6 +28,7 @@
#include <errno.h>
#include "utilvfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_rmstamp */
#include "xdirentry.h"

View File

@ -37,6 +37,7 @@
#include "utilvfs.h"
#include "../src/execute.h" /* For shell_execute */
#include "vfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_rmstamp */
#undef ERRNOR

View File

@ -43,6 +43,7 @@
#include "xdirentry.h"
#include "vfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_stamp_create */
#include "tcputil.h"

View File

@ -72,6 +72,7 @@ What to do with this?
#include "xdirentry.h"
#include "vfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_stamp_create */
#include "tcputil.h"
#include "../src/setup.h" /* for load_anon_passwd */

View File

@ -32,6 +32,7 @@
#include <ctype.h> /* is_digit() */
#include "utilvfs.h"
#include "vfs-impl.h"
#include "gc.h"
#include "vfs.h"

View File

@ -1,6 +1,8 @@
#ifndef __GC_H
#define __GC_H
#include "vfs-impl.h"
struct vfs_stamping {
struct vfs_class *v;
vfsid id;

View File

@ -1,6 +1,8 @@
#ifndef _VFS_LOCAL_H_
#define _VFS_LOCAL_H_
#include "vfs-impl.h"
extern int local_close (void *data);
extern int local_read (void *data, char *buffer, int count);
extern int local_fstat (void *data, struct stat *buf);

View File

@ -51,6 +51,7 @@
#include "utilvfs.h"
#include "vfs.h"
#include "vfs-impl.h"
#include "mcfs.h"
#include "mcfsutil.h"
#include "tcputil.h"

View File

@ -22,6 +22,7 @@
#include "utilvfs.h"
#include "vfs.h"
#include "vfs-impl.h"
#include "gc.h" /* vfs_stamp_create */
#include "local.h"
#include "../src/execute.h" /* EXECUTE_AS_SHELL */