1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

added shared library

This commit is contained in:
Falk Werner
2019-02-09 20:08:42 +01:00
parent 083ebbefe3
commit d060017805
3 changed files with 29 additions and 4 deletions

View File

@@ -3,5 +3,7 @@
#include "wsfs/api.h"
#include "wsfs/server.h"
#include "wsfs/server_config.h"
#include "wsfs/server_protocol.h"
#endif

View File

@@ -5,4 +5,12 @@
#define WSFS_API
#endif
#ifndef WSFS_EXPORT
#ifdef __GNUC__
#define WSFS_EXPORT __attribute__ ((visibility ("default")))
#else
#define WSFS_EXPORT
#endif
#endif
#endif