1
0
mirror of https://github.com/falk-werner/webfuse synced 2025-06-13 12:54:15 +00:00
falk-werner_webfuse/src/wsfs/fuse_wrapper.h
2019-02-02 09:37:18 +01:00

18 lines
194 B
C

#ifndef _WSFS_FUSE_H
#define _WSFS_FUSE_H
#ifdef __cplusplus
extern "C" {
#endif
#define FUSE_USE_VERSION 31
#include <fuse.h>
#include <fuse_lowlevel.h>
#ifdef __cplusplus
}
#endif
#endif