43 lines
854 B
C
43 lines
854 B
C
![]() |
|
||
|
#ifndef K4A_EXPORT_H
|
||
|
#define K4A_EXPORT_H
|
||
|
|
||
|
#ifdef K4A_STATIC_DEFINE
|
||
|
# define K4A_EXPORT
|
||
|
# define K4A_NO_EXPORT
|
||
|
#else
|
||
|
# ifndef K4A_EXPORT
|
||
|
# ifdef k4a_EXPORTS
|
||
|
/* We are building this library */
|
||
|
# define K4A_EXPORT __declspec(dllexport)
|
||
|
# else
|
||
|
/* We are using this library */
|
||
|
# define K4A_EXPORT __declspec(dllimport)
|
||
|
# endif
|
||
|
# endif
|
||
|
|
||
|
# ifndef K4A_NO_EXPORT
|
||
|
# define K4A_NO_EXPORT
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#ifndef K4A_DEPRECATED
|
||
|
# define K4A_DEPRECATED __declspec(deprecated)
|
||
|
#endif
|
||
|
|
||
|
#ifndef K4A_DEPRECATED_EXPORT
|
||
|
# define K4A_DEPRECATED_EXPORT K4A_EXPORT K4A_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
#ifndef K4A_DEPRECATED_NO_EXPORT
|
||
|
# define K4A_DEPRECATED_NO_EXPORT K4A_NO_EXPORT K4A_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
||
|
# ifndef K4A_NO_DEPRECATED
|
||
|
# define K4A_NO_DEPRECATED
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#endif /* K4A_EXPORT_H */
|