From cce940527809c155886986c3752b7978dc4cf5ce Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Mon, 19 Jan 2026 13:40:35 +0100 Subject: remove ZENCORE_API completely (#718) initially we had ZENCORE_API macros to potentially allow for DLL linkage. It turns out that this is not useful and the macros just contribute noise, so this change removes them completely. --- src/zencore/base64.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/zencore/base64.cpp') diff --git a/src/zencore/base64.cpp b/src/zencore/base64.cpp index b97dfebbf..1f56ee6c3 100644 --- a/src/zencore/base64.cpp +++ b/src/zencore/base64.cpp @@ -101,7 +101,7 @@ Base64::Encode(const uint8_t* Source, uint32_t Length, CharType* Dest) return uint32_t(EncodedBytes - Dest); } -template ZENCORE_API uint32_t Base64::Encode(const uint8_t* Source, uint32_t Length, char* Dest); -template ZENCORE_API uint32_t Base64::Encode(const uint8_t* Source, uint32_t Length, wchar_t* Dest); +template uint32_t Base64::Encode(const uint8_t* Source, uint32_t Length, char* Dest); +template uint32_t Base64::Encode(const uint8_t* Source, uint32_t Length, wchar_t* Dest); } // namespace zen -- cgit v1.2.3