librsync-sys 0.1.4

Native bindings and vendored sources of librsync, for the librsync crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LIBRSYNC_EXPORT_H
#  define LIBRSYNC_EXPORT_H

#  ifdef LIBRSYNC_STATIC_DEFINE
#    define LIBRSYNC_EXPORT
#  else
#    ifdef _WIN32
#      ifdef rsync_EXPORTS
#        define LIBRSYNC_EXPORT __declspec(dllexport)
#      else
#        define LIBRSYNC_EXPORT __declspec(dllimport)
#      endif
#    else
#      define LIBRSYNC_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

#endif                          /* LIBRSYNC_EXPORT_H */