libcryfs/src/fspp/fuse/params.h

15 lines
240 B
C
Raw Normal View History

2014-11-04 22:33:43 +01:00
#pragma once
2015-10-15 13:04:57 +02:00
#ifndef MESSMER_FSPP_FUSE_PARAMS_H_
#define MESSMER_FSPP_FUSE_PARAMS_H_
2014-11-04 22:33:43 +01:00
#define FUSE_USE_VERSION 26
#ifdef __linux__
2014-11-16 00:05:28 +01:00
#include <fuse.h>
#elif __APPLE__
#include <osxfuse/fuse.h>
#else
#error System not supported
#endif
2014-11-04 22:33:43 +01:00
2015-02-17 00:48:49 +01:00
#endif