blob: 3ef3e5b8e67bad0176be13fe30e52c75d81ef13d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// generates export.hpp for each module from compat/linkage.hpp
#pragma once
#include "compat/linkage-macros.hpp"
#ifdef BUILD_USER_INTERFACE
# define OTR_GUI_EXPORT OTR_GENERIC_EXPORT
#else
# define OTR_GUI_EXPORT OTR_GENERIC_IMPORT
#endif
|