00001 #ifndef LIBRSYNC_EXPORT_H
00002 # define LIBRSYNC_EXPORT_H
00003
00004 # ifdef LIBRSYNC_STATIC_DEFINE
00005 # define LIBRSYNC_EXPORT
00006 # else
00007 # ifdef _WIN32
00008 # ifdef rsync_EXPORTS
00009 # define LIBRSYNC_EXPORT __declspec(dllexport)
00010 # else
00011 # define LIBRSYNC_EXPORT __declspec(dllimport)
00012 # endif
00013 # else
00014 # define LIBRSYNC_EXPORT __attribute__((visibility("default")))
00015 # endif
00016 # endif
00017
00018 #endif