VR-Engage  2.2
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright (c) 2024 MAK Technologies
3 * All rights reserved.
4 *****************************************************************************/
5
6//! \file export.h
7//! \brief Contains the DLL export macro.
8//! \ingroup vreCigiHost
9
10#pragma once
11
12// Get proper local export symbol
13#ifdef _WIN32
14 #ifdef CIGIHOST_EXPORTS
15 #define CIGIHOST_DLL __declspec(dllexport)
16 #else
17 #define CIGIHOST_DLL __declspec(dllimport)
18 #endif
19#else
20 #define CIGIHOST_DLL
21#endif