8 lines
146 B
C++
8 lines
146 B
C++
#pragma once
|
|
|
|
#if defined(_WIN32)
|
|
#define LOGGER_API __declspec(dllexport)
|
|
#else
|
|
#define LOGGER_API __attribute__((visibility("default")))
|
|
#endif
|