1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 14:20:44 +00:00
falk-werner_webfuse-provider/src/wsfs/server_protocol_intern.h

20 lines
420 B
C
Raw Normal View History

#ifndef _WSFS_SERVER_PROTOCOL_INTERN_H
#define _WSFS_SERVER_PROTOCOL_INTERN_H
#include "wsfs/server_protocol.h"
#include "wsfs/filesystem.h"
struct wsfs_server_protocol
{
struct wsfs_filesystem filesystem;
};
extern void wsfs_server_protocol_init(
struct wsfs_server_protocol * protocol,
char * mount_point);
extern void wsfs_server_protocol_cleanup(
struct wsfs_server_protocol * protocol);
#endif