mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
fa78e23533
* added API stub of static_filesystem * added callback functions * added basic directory listing * resize filesystem if necessary * added path stub * adds imlementation and tests of path * adds mock of wpf_request * adds test implementation and some matchers * added matcher of readdir results * fixes default directory test * adds implementation of static_filesystem_add and add_text * added implementation of read * adds implementation of filesystem_read * corrects naming of some functions * removes Flawfinder comments, since Flawfinder is disabled
23 lines
663 B
C
23 lines
663 B
C
#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>
|
|
|
|
#include <webfuse/provider/static_filesystem.h>
|
|
|
|
#endif
|