Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
ed8e860998216216ef74bb93b35404c435a44f26
/
.
/
Tests
/
BundleUtilities
/
shared.h
blob: 5d5b6335c4e3109811153bf37f4ef4da9393c36a [
file
] [
log
] [
blame
]
#ifndef
shared_h
#define
shared_h
#ifdef
WIN32
# ifdef shared_EXPORTS
# define SHARED_EXPORT __declspec(dllexport)
# else
# define SHARED_EXPORT __declspec(dllimport)
# endif
#else
# define SHARED_EXPORT
#endif
void
SHARED_EXPORT shared
();
#endif