lipsum-cpp 0.5.4
A basic library written in C++ for generating placeholder Lorem Ipsum text.
Loading...
Searching...
No Matches
core.h
Go to the documentation of this file.
1
13#pragma once
14
15#ifndef LIPSUMC_CORE_H
16# define LIPSUMC_CORE_H
17
18# include "version.h"
19
28# ifdef LIPSUM_BUILD_SHARED
29# ifdef _WIN32
30# ifdef LIPSUM_EXPORT_SHARED
31# define LIPSUMC_API __declspec(dllexport)
32# else
33# define LIPSUMC_API __declspec(dllimport)
34# endif
35# else
36# define LIPSUMC_API
37# endif
38# else
39# define LIPSUMC_API
40# endif
41
42# ifndef LIPSUM_BUILD_STATIC
43# error Cannot use C wrapper without building a static or shared library.
44# endif
45
46#endif
Version macros for lipsum-cpp.