diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2007-08-24 02:08:55 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2007-08-24 02:08:55 +0200 |
commit | 6d25549d0ec16ac36db14230f43f9bf3e457fd2e (patch) | |
tree | 8e101005a5a586a4ec68494087f130e427e06e45 /modules/aaa/mod_authz_dbd.h | |
parent | Add a comment to prevent a future upgrade of APR 2.0 or similar (diff) | |
download | apache2-6d25549d0ec16ac36db14230f43f9bf3e457fd2e.tar.xz apache2-6d25549d0ec16ac36db14230f43f9bf3e457fd2e.zip |
You can't borrow AP_ namespace for imports/exports.
They are specific to one loadable module.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@569192 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa/mod_authz_dbd.h')
-rw-r--r-- | modules/aaa/mod_authz_dbd.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/modules/aaa/mod_authz_dbd.h b/modules/aaa/mod_authz_dbd.h index f35c10dde3..1aed4e6a81 100644 --- a/modules/aaa/mod_authz_dbd.h +++ b/modules/aaa/mod_authz_dbd.h @@ -18,6 +18,27 @@ #define MOD_AUTHZ_DBD_H #include "httpd.h" -APR_DECLARE_EXTERNAL_HOOK(authz_dbd, AP, int, client_login, +/* Create a set of AUTHZ_DBD_DECLARE(type), AUTHZ_DBD_DECLARE_NONSTD(type) and + * AUTHZ_DBD_DECLARE_DATA with appropriate export and import tags + */ +#if !defined(WIN32) +#define AUTHZ_DBD_DECLARE(type) type +#define AUTHZ_DBD_DECLARE_NONSTD(type) type +#define AUTHZ_DBD_DECLARE_DATA +#elif defined(AUTHZ_DBD_DECLARE_STATIC) +#define AUTHZ_DBD_DECLARE(type) type __stdcall +#define AUTHZ_DBD_DECLARE_NONSTD(type) type +#define AUTHZ_DBD_DECLARE_DATA +#elif defined(AUTHZ_DBD_DECLARE_EXPORT) +#define AUTHZ_DBD_DECLARE(type) __declspec(dllexport) type __stdcall +#define AUTHZ_DBD_DECLARE_NONSTD(type) __declspec(dllexport) type +#define AUTHZ_DBD_DECLARE_DATA __declspec(dllexport) +#else +#define AUTHZ_DBD_DECLARE(type) __declspec(dllimport) type __stdcall +#define AUTHZ_DBD_DECLARE_NONSTD(type) __declspec(dllimport) type +#define AUTHZ_DBD_DECLARE_DATA __declspec(dllimport) +#endif + +APR_DECLARE_EXTERNAL_HOOK(authz_dbd, AUTHZ_DBD, int, client_login, (request_rec *r, int code, const char *action)) #endif |