From b3258d8df820600ad2648a890c4efba300be1de4 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 27 Oct 2019 00:09:07 +0000 Subject: created api headers. --- include/sltdl/sltdl.h | 14 ++++++++++++++ include/sltdl/sltdl_api.h | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 include/sltdl/sltdl.h create mode 100644 include/sltdl/sltdl_api.h (limited to 'include') diff --git a/include/sltdl/sltdl.h b/include/sltdl/sltdl.h new file mode 100644 index 0000000..9d3aaac --- /dev/null +++ b/include/sltdl/sltdl.h @@ -0,0 +1,14 @@ +#ifndef SLTDL_H +#define SLTDL_H + +#include "sltdl_api.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/include/sltdl/sltdl_api.h b/include/sltdl/sltdl_api.h new file mode 100644 index 0000000..0cc9093 --- /dev/null +++ b/include/sltdl/sltdl_api.h @@ -0,0 +1,35 @@ +#ifndef SLTDL_API_H +#define SLTDL_API_H + +#include + +/* lt_export */ +#if defined(__dllexport) +#define lt_export __dllexport +#else +#define lt_export +#endif + +/* lt_import */ +#if defined(__dllimport) +#define lt_import __dllimport +#else +#define lt_import +#endif + +/* lt_api */ +#ifndef LT_APP +#if defined (LT_EXPORT) +#define lt_api lt_export +#elif defined (LT_IMPORT) +#define lt_api lt_import +#elif defined (LT_STATIC) +#define lt_api +#else +#define lt_api +#endif +#else +#define lt_api +#endif + +#endif -- cgit v1.2.3