VR-Engage  2.2
Loading...
Searching...
No Matches
mfsRwrVrvPlugin.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2025 MAK Technologies
3 * All rights reserved.
4 ******************************************************************************/
5
6
7//! \file mfsRwrVrvPlugin.h
8//! \brief Defines DLL export macros for the RadarWarningReceiver VRV plugin
9//! \ingroup vreGlsEventSignalerPlugin
10#pragma once
11
12//! \name DLL Export/Import Macros
13//! @{
14
15#ifdef _WIN32
16 #ifdef mfsRwrVrvPlugin_EXPORTS
17 //! \brief Export macro for Windows DLL symbols
18 #define DT_DLL_MFSRWRVRVPLUGIN __declspec(dllexport)
19 #else
20 //! \brief Import macro for Windows DLL symbols
21 #define DT_DLL_MFSRWRVRVPLUGIN __declspec(dllimport)
22 #endif
23#else
24 //! \brief Export/import macro for non-Windows platforms (empty)
25 #define DT_DLL_MFSRWRVRVPLUGIN
26#endif
27
28//! @}