2020-02-17 20:53:42 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// \file webfuse_provider.h
|
|
|
|
/// \brief Convenience header to include all functionality of libfuse_provider.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
#ifndef WF_PROVIDER_H
|
|
|
|
#define WF_PROVIDER_H
|
|
|
|
|
|
|
|
#include <webfuse/core/status.h>
|
|
|
|
|
|
|
|
#include <webfuse/provider/api.h>
|
|
|
|
#include <webfuse/provider/client.h>
|
|
|
|
#include <webfuse/provider/client_config.h>
|
|
|
|
#include <webfuse/provider/client_protocol.h>
|
|
|
|
#include <webfuse/provider/dirbuffer.h>
|
|
|
|
|
|
|
|
#include <webfuse/provider/operation/error.h>
|
|
|
|
#include <webfuse/provider/operation/lookup.h>
|
|
|
|
#include <webfuse/provider/operation/getattr.h>
|
|
|
|
#include <webfuse/provider/operation/readdir.h>
|
|
|
|
#include <webfuse/provider/operation/open.h>
|
|
|
|
#include <webfuse/provider/operation/close.h>
|
|
|
|
#include <webfuse/provider/operation/read.h>
|
|
|
|
|
2019-04-26 18:49:09 +00:00
|
|
|
#include <webfuse/provider/static_filesystem.h>
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
#endif
|