ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
api.h
Go to the documentation of this file.
1
39#pragma once
40
41#ifdef _WIN32
42#ifdef BUILDING_ASCIICHAT_DLL
50#define ASCIICHAT_API __declspec(dllexport)
51#elif defined(BUILDING_STATIC_LIB)
59#define ASCIICHAT_API
60#else
71#define ASCIICHAT_API __declspec(dllimport)
72#endif
73#else
82#define ASCIICHAT_API __attribute__((visibility("default")))
83#endif
84