1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/inc/wsfs/api.h
2019-02-09 20:08:42 +01:00

17 lines
228 B
C

#ifndef _WSFS_API_H
#define _WSFS_API_H
#ifndef WSFS_API
#define WSFS_API
#endif
#ifndef WSFS_EXPORT
#ifdef __GNUC__
#define WSFS_EXPORT __attribute__ ((visibility ("default")))
#else
#define WSFS_EXPORT
#endif
#endif
#endif