summaryrefslogtreecommitdiff
path: root/include/util_ldap.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2011-05-31 19:57:07 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2011-05-31 19:57:07 +0000
commit07c1a9d29ceaa79e96089b378e445fd3d514043f (patch)
tree0c6652e5c6ba44df23ccbb2dd95855e3f2986874 /include/util_ldap.h
parentc2f135f7bf30bffe32403a3d377b36c59b5d3840 (diff)
downloadhttpd-07c1a9d29ceaa79e96089b378e445fd3d514043f.tar.gz
Shift declaration logic of LDAP_DECLARE to ap_ldap.h from util_ldap.h
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1129886 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_ldap.h')
-rw-r--r--include/util_ldap.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/util_ldap.h b/include/util_ldap.h
index 2ab4b7eb3f..5ee3fb6043 100644
--- a/include/util_ldap.h
+++ b/include/util_ldap.h
@@ -56,27 +56,6 @@
#include "http_request.h"
#include "apr_optional.h"
-/* Create a set of LDAP_DECLARE macros with appropriate export
- * and import tags for the platform
- */
-#if !defined(WIN32)
-#define LDAP_DECLARE(type) type
-#define LDAP_DECLARE_NONSTD(type) type
-#define LDAP_DECLARE_DATA
-#elif defined(LDAP_DECLARE_STATIC)
-#define LDAP_DECLARE(type) type __stdcall
-#define LDAP_DECLARE_NONSTD(type) type
-#define LDAP_DECLARE_DATA
-#elif defined(LDAP_DECLARE_EXPORT)
-#define LDAP_DECLARE(type) __declspec(dllexport) type __stdcall
-#define LDAP_DECLARE_NONSTD(type) __declspec(dllexport) type
-#define LDAP_DECLARE_DATA __declspec(dllexport)
-#else
-#define LDAP_DECLARE(type) __declspec(dllimport) type __stdcall
-#define LDAP_DECLARE_NONSTD(type) __declspec(dllimport) type
-#define LDAP_DECLARE_DATA __declspec(dllimport)
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif