VTK  9.3.0
zSpaceCoreCompatibilityPlatformDefines.h
Go to the documentation of this file.
1 //
3 // Copyright (C) 2022 zSpace, Inc. All Rights Reserved.
4 //
6 
7 #ifndef __ZSPACE_CORE_COMPATIBILITY_PLATFORM_DEFINES_H__
8 #define __ZSPACE_CORE_COMPATIBILITY_PLATFORM_DEFINES_H__
9 
10 #if defined(_WIN32)
11 # define ZC_COMPAT_API_FUNC_CALL __stdcall
12 # define ZC_COMPAT_API_FUNC_PTR ZC_COMPAT_API_FUNC_CALL
13 #else
14 # define ZC_COMPAT_API_FUNC_CALL
15 # define ZC_COMPAT_API_FUNC_PTR ZC_COMPAT_API_FUNC_CALL
16 #endif // Platform
17 
18 #endif // __ZSPACE_CORE_COMPATIBILITY_PLATFORM_DEFINES_H__