diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-08-18 05:02:34 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-06-09 10:27:50 +0200 |
commit | 24e37795d2db8fdc6f7809e793dadbae80211d26 (patch) | |
tree | f2fd152fb44518222e290e555f0274af18d877bd /SixenseSDK/include/sixense_utils/export.hpp | |
parent | 9a87e2cb6e588641e3cff52655013594c492e033 (diff) |
add SDKs
Diffstat (limited to 'SixenseSDK/include/sixense_utils/export.hpp')
-rwxr-xr-x | SixenseSDK/include/sixense_utils/export.hpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/SixenseSDK/include/sixense_utils/export.hpp b/SixenseSDK/include/sixense_utils/export.hpp new file mode 100755 index 0000000..3f22ce7 --- /dev/null +++ b/SixenseSDK/include/sixense_utils/export.hpp @@ -0,0 +1,27 @@ +/* + * + * SIXENSE CONFIDENTIAL + * + * Copyright (C) 2011 Sixense Entertainment Inc. + * All Rights Reserved + * + */ + +#ifndef SIXENSE_UTILS_EXPORT_HPP +#define SIXENSE_UTILS_EXPORT_HPP + +#if defined(WIN32) + #ifdef SIXENSE_UTILS_STATIC_LIB + #define SIXENSE_UTILS_EXPORT + #else + #ifdef BUILDING_SIXENSE_UTILS + #define SIXENSE_UTILS_EXPORT __declspec(dllexport) + #else + #define SIXENSE_UTILS_EXPORT __declspec(dllimport) + #endif + #endif +#else + #define SIXENSE_UTILS_EXPORT +#endif + +#endif |