sparrow-ipc 0.2.0
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1#pragma once
2
3#if defined(_WIN32)
4# if defined(SPARROW_IPC_STATIC_LIB)
5# define SPARROW_IPC_API
6# elif defined(SPARROW_IPC_EXPORTS)
7# define SPARROW_IPC_API __declspec(dllexport)
8# else
9# define SPARROW_IPC_API __declspec(dllimport)
10# endif
11#else
12# define SPARROW_IPC_API __attribute__((visibility("default")))
13#endif