Commit 8c65500e authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Ahhh... the missing file from Ben's and my experiments


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88686 13f79535-47bb-0310-9956-ffa450edef68
parent 6c82a3f1
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -132,6 +132,12 @@
 *
 * @deffunc module AP_MODULE_DECLARE_DATA mod_tag
 */
#if defined(WIN32)
#define AP_MODULE_DECLARE(type)            type __stdcall
#else
#define AP_MODULE_DECLARE(type)            type
#endif
#define AP_MODULE_DECLARE_NONSTD(type)     type
#define AP_MODULE_DECLARE_DATA
#else
/**
@@ -144,6 +150,8 @@
 * @deffunc AP_MODULE_DECLARE_EXPORT
 */
#define AP_MODULE_DECLARE_EXPORT
#define AP_MODULE_DECLARE(type)          __declspec(dllexport) type __stdcall
#define AP_MODULE_DECLARE_NONSTD(type)   __declspec(dllexport) type
#define AP_MODULE_DECLARE_DATA           __declspec(dllexport)
#endif