Remove POCO_DLL

This commit is contained in:
Robert Schulze 2023-02-15 09:29:37 +00:00
parent 91298b3617
commit 8fc46f6ea1
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
3 changed files with 0 additions and 21 deletions

View File

@ -39,13 +39,6 @@
// Foundation_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
//
#if (defined(_WIN32) || defined(_WIN32_WCE)) && defined(POCO_DLL)
# if defined(Foundation_EXPORTS)
# define Foundation_API __declspec(dllexport)
# else
# define Foundation_API __declspec(dllimport)
# endif
#endif
#if !defined(Foundation_API)

View File

@ -184,13 +184,6 @@ void EventLogChannel::setUpRegistry() const
if (disp == REG_CREATED_NEW_KEY)
{
std::string path;
#if defined(POCO_DLL)
#if defined(_DEBUG)
path = findLibrary("PocoFoundationd.dll");
#else
path = findLibrary("PocoFoundation.dll");
#endif
#endif
if (path.empty())
path = findLibrary("PocoMsg.dll");

View File

@ -32,13 +32,6 @@
// NetSSL_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
//
#if (defined(_WIN32) || defined(__CYGWIN__)) && defined(POCO_DLL)
# if defined(NetSSL_EXPORTS)
# define NetSSL_API __declspec(dllexport)
# else
# define NetSSL_API __declspec(dllimport)
# endif
#endif
#if !defined(NetSSL_API)