1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef USERLAND_FS_FUSE_FUSE_FS_H
6#define USERLAND_FS_FUSE_FUSE_FS_H
7
8#include "fuse_api.h"
9
10
11struct fuse_fs {
12	void*			userData;
13	fuse_operations	ops;
14};
15
16
17#endif	// USERLAND_FS_FUSE_FUSE_FS_H
18