2020-06-16 21:39:45 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// \file webfuse_provider.h
|
|
|
|
/// \brief Convenience header to include all functionality of libfuse_provider.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-06-17 14:51:08 +00:00
|
|
|
#ifndef WFP_H
|
|
|
|
#define WFP_H
|
2020-06-16 21:39:45 +00:00
|
|
|
|
|
|
|
#include <webfuse_provider/status.h>
|
|
|
|
#include <webfuse_provider/protocol_names.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/credentials.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>
|
|
|
|
|
|
|
|
#endif
|