Subversion Repositories HelenOS

Rev

Rev 2642 | Rev 2644 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2642 Rev 2643
Line 34... Line 34...
34
 */
34
 */
35
 
35
 
36
#ifndef LIBFS_LIBFS_H_
36
#ifndef LIBFS_LIBFS_H_
37
#define LIBFS_LIBFS_H_ 
37
#define LIBFS_LIBFS_H_ 
38
 
38
 
-
 
39
#include "../../srv/vfs/vfs.h"
-
 
40
#include <stdint.h>
-
 
41
#include <ipc/ipc.h>
-
 
42
#include <async.h>
-
 
43
 
-
 
44
typedef struct {
-
 
45
    int fs_handle;      /**< File system handle. */
-
 
46
    ipcarg_t vfs_phonehash; /**< Initial VFS phonehash. */
-
 
47
    uint8_t *plb_ro;    /**< Read-only PLB view. */
-
 
48
} fs_reg_t;
-
 
49
 
-
 
50
extern int fs_register(int, fs_reg_t *, vfs_info_t *, async_client_conn_t);
-
 
51
 
39
#endif
52
#endif
40
 
53
 
41
/** @}
54
/** @}
42
 */
55
 */
43
 
56