Remove unused QCA_PLUGIN_EXPORT magic, and irrelevant

API documentation.

CCMAIL:justin@affinix.com


svn path=/trunk/kdesupport/qca/; revision=522575
This commit is contained in:
Brad Hards 2006-03-26 03:48:42 +00:00
parent 6ff80e4f25
commit 31650bf97f

View File

@ -21,9 +21,11 @@
/**
\file qca_export.h
Preprocessor magic to allow export of library symbols.
Preprocessor magic to allow export of library symbols.
\note You should not use this header directly from an
This is strictly internal.
\note You should not include this header directly from an
application. You should just use <tt> \#include \<QtCrypto>
</tt> instead.
*/
@ -33,13 +35,6 @@
#include <QtGlobal>
/**
\def QCA_EXPORT
\internal
Makes this QCA symbol visible.
*/
#ifdef Q_OS_WIN32
# ifndef QCA_STATIC
# ifdef QCA_MAKEDLL
@ -53,22 +48,4 @@
# define QCA_EXPORT
#endif
/**
\def QCA_PLUGIN_EXPORT
\internal
Makes this symbol from a plugin visible.
*/
#ifdef Q_OS_WIN32
# ifdef QCA_PLUGIN_DLL
# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllexport)
# else
# define QCA_PLUGIN_EXPORT extern "C" __declspec(dllimport)
# endif
#endif
#ifndef QCA_PLUGIN_EXPORT
# define QCA_PLUGIN_EXPORT extern "C"
#endif
#endif