Momentum Scripting v1
Loading...
Searching...
No Matches
export.h
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 without having a written signed agreement with Algoryx Simulation AB.
9
10Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
11from using this software, unless otherwise stated in written agreements with
12Algoryx Simulation AB.
13*/
14
15#ifndef MOMENTUM_EXPORT_H
16#define MOMENTUM_EXPORT_H
17
18
19#include <agx/config.h>
20
22
23#ifdef _WIN32
24
25#if AGX_DYNAMIC() && defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)
26# if defined( MOMENTUM_LIBRARY_STATIC )
27# define AGXOSG_EXPORT
28# elif defined( MOMENTUM_LIBRARY )
29# define MOMENTUM_EXPORT __declspec(dllexport)
30# else
31# define MOMENTUM_EXPORT __declspec(dllimport)
32# endif
33#else
34# define MOMENTUM_EXPORT
35#endif
36
37#else
38#define MOMENTUM_EXPORT
39#endif
40
42
43#endif