VR-Engage
2.2
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1
/*********************************************************************************
2
** Copyright (c) 2025 MAK Technologies
3
** All rights reserved.
4
*********************************************************************************/
5
6
//! \file export.h
7
//! \brief Defines export macros for the RadarFx Shared library
8
//! \ingroup vreRadarFxShared
9
10
#pragma once
11
12
//! \name DLL Export/Import Macros
13
//! @{
14
15
#ifdef _WIN32
16
#ifdef RFX_SHARED_EXPORTS
17
//! \brief Export macro for Windows DLL symbols
18
#define RFX_DLL_SHARED __declspec(dllexport)
19
#else
20
//! \brief Import macro for Windows DLL symbols
21
#define RFX_DLL_SHARED __declspec(dllimport)
22
#endif
23
#else
24
//! \brief Export/import macro for non-Windows platforms (empty)
25
#define RFX_DLL_SHARED
26
#endif
27
28
//! @}
Generated on 2026-01-13 from SVN revision 282860 - Copyright © 2005-2026 MAK Technologies. All Rights Reserved.