VR-Engage  2.2
Loading...
Searching...
No Matches
sarClientPlugin.h
Go to the documentation of this file.
1/******************************************************************************
2** Copyright (c) 2025 MAK Technologies
3** All rights reserved.
4******************************************************************************/
5
6//! \file sarClientPlugin.h
7//! \brief Defines DLL export macros for the SAR client plugin
8//! \ingroup sarClient
9
10#pragma once
11
12#ifdef _WIN32
13 #ifdef sarClient_EXPORTS
14 #define DT_DLL_sarClient __declspec(dllexport)
15 #else
16 #define DT_DLL_sarClient __declspec(dllimport)
17 #endif
18#else
19 #define DT_DLL_sarClient
20#endif
21
22#include <vrvUtil/signalslib.h>