~ubuntu-branches/ubuntu/trusty/log4shib/trusty

« back to all changes in this revision

Viewing changes to include/log4shib/Export.hh

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2012-06-05 21:20:25 UTC
  • Revision ID: package-import@ubuntu.com-20120605212025-uyigtav7dqwvnf41
Tags: upstream-1.0.4
ImportĀ upstreamĀ versionĀ 1.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _LOG4SHIB_EXPORT_HH
 
2
#define _LOG4SHIB_EXPORT_HH
 
3
 
 
4
#ifdef LOG4SHIB_HAS_DLL
 
5
#       ifdef LOG4SHIB_BUILD_DLL
 
6
#               define LOG4SHIB_EXPORT __declspec(dllexport)
 
7
#       else
 
8
#               define LOG4SHIB_EXPORT __declspec(dllimport)
 
9
#       endif
 
10
#else
 
11
#       define LOG4SHIB_EXPORT 
 
12
#endif
 
13
 
 
14
#endif // _LOG4SHIB_EXPORT_HH
 
15