~choreonoid/choreonoid/debian

« back to all changes in this revision

Viewing changes to src/BodyPlugin/exportdecl.h

  • Committer: Thomas Moulard
  • Date: 2012-10-23 12:43:24 UTC
  • Revision ID: git-v1:351cf736ad49bc7a9a7b9767dee760a013517a5d
Tags: upstream/1.1.0
ImportedĀ UpstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifdef CNOID_EXPORT
 
3
#undef CNOID_EXPORT
 
4
#endif
 
5
 
 
6
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
 
7
# ifdef CnoidBodyPlugin_EXPORTS
 
8
#  define CNOID_EXPORT __declspec(dllexport)
 
9
# else
 
10
#  define CNOID_EXPORT __declspec(dllimport)
 
11
# endif
 
12
#else
 
13
# define CNOID_EXPORT
 
14
#endif