libclues
Linux C++ Tracing Library
Loading...
Searching...
No Matches
dso_export.h
1#pragma once
2
3/*
4 * Helper macro to control visibility of public APIs of the cosmos shared
5 * library.
6 * The object files are compiled with -fvisibility=hidden, thus each public
7 * interface needs to be explicitly made visible again.
8 */
9#if defined(CLUES_EXPORT)
10# define CLUES_API __attribute__ ((visibility ("default")))
11#else
12# define CLUES_API
13#endif