VR-Forces Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
dllExport.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (c) 2018 MAK Technologies, Inc.
3  * All rights reserved.
4  *****************************************************************************/
5 
9 
10 #pragma once
11 
12 // Get proper local export symbol
13 #ifdef _WIN32
14 # ifdef vrvAudioShared_EXPORTS
15 # define DT_DLL_VRVAUDIOSHARED __declspec ( dllexport )
16 # else
17 # define DT_DLL_VRVAUDIOSHARED __declspec ( dllimport )
18 # endif
19 #else
20 # define DT_DLL_VRVAUDIOSHARED
21 #endif
22 
23 // Make VR-Vantage VRLink code export with library
24 #ifdef DL_DLL_IGCONVRLINK
25 #undef DL_DLL_IGCONVRLINK
26 #endif // DL_DLL_IGCONVRLINK
27 #define DL_DLL_IGCONVRLINK DT_DLL_VRVAUDIOSHARED
28 
29 // Define the appropriate protocol namespace and tell
30 // the shared VRLink classes to export appropriately
31 #ifdef DtDIS
32 # define DT_PROTOCOL_NAMESPACE vrvDis
33 #elif DtHLA
34 # ifdef DtHLA_1516
35 # ifdef DtHLA_4
36 # define DT_PROTOCOL_NAMESPACE vrvHla4
37 # elif DtHLA_1516_EVOLVED
38 # define DT_PROTOCOL_NAMESPACE vrvHla1516e
39 # else
40 # define DT_PROTOCOL_NAMESPACE vrvHla1516
41 # endif
42 # else
43 # define DT_PROTOCOL_NAMESPACE vrvHla13
44 # endif
45 #else
46 # error "Protocol must be defined before including audio export header."
47 #endif
48 
49 #include <vrvUtil/signalslib.h>

Document ID: Generated on Thu Oct 23 22:29:17 EDT 2025 from SVN revision 280951
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (www.mak.com)