AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
agxCore_export.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGXCORE_EXPORT_H
18#define AGXCORE_EXPORT_H
19
20
21#include <agx/config.h>
22#include <agx/macros.h>
23
25
26#if defined(_WIN32) && !defined(CALLABLE_GENERATOR)
27
28#if AGX_DYNAMIC() && defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)
29# if defined( AGXCORE_LIBRARY_STATIC )
30# define AGXCORE_EXPORT
31# elif defined( AGXCORE_LIBRARY )
32# define AGXCORE_EXPORT __declspec(dllexport)
33# else
34# define AGXCORE_EXPORT __declspec(dllimport)
35# endif
36#else
37# define AGXCORE_EXPORT
38#endif
39
40#elif defined(CALLABLE_GENERATOR)
41 #define AGXCORE_EXPORT
42#else
43 // Non Win32
44 #if __GNUC__ >= 4
45 #define AGXCORE_EXPORT __attribute__ ((visibility("default")))
46 #else
47 #define AGXCORE_EXPORT
48 #endif
49#endif
50
51
52/*
53#ifndef __LOC_CORE__
54#define __STR2_CORE__(x) #x
55#define __STR1_CORE__(x) __STR2_CORE__(x)
56#define __LOC_CORE__ __FILE__ " have export mode "__STR1_CORE__(AGXCORE_EXPORT)"\n"
57#endif
58#pragma message(__LOC_CORE__"")
59*/
60
61
63
64#endif
65
#define DOXYGEN_END_INTERNAL_BLOCK()
Definition: macros.h:89
#define DOXYGEN_START_INTERNAL_BLOCK()
Definition: macros.h:88