Return-Path: Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Delivered-To: mailing list apache-docs@apache.org Received: (qmail 30025 invoked by uid 500); 11 Oct 2000 07:52:11 -0000 Delivered-To: apmail-httpd-docs-2.0-cvs@apache.org Received: (qmail 29938 invoked by uid 1134); 11 Oct 2000 07:52:10 -0000 Date: 11 Oct 2000 07:52:10 -0000 Message-ID: <20001011075210.29937.qmail@locus.apache.org> From: wrowe@locus.apache.org To: httpd-docs-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/include ap_config.h wrowe 00/10/11 00:52:10 Modified: src/include ap_config.h Log: This much, at least, we don't need to debate. Revision Changes Path 1.42 +4 -0 apache-2.0/src/include/ap_config.h Index: ap_config.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/ap_config.h,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- ap_config.h 2000/08/06 06:07:01 1.41 +++ ap_config.h 2000/10/11 07:52:09 1.42 @@ -70,21 +70,25 @@ #define API_EXPORT(type) type #define API_EXPORT_NONSTD(type) type #define API_VAR_EXPORT +#define MODULE_EXPORT(type) type #define MODULE_VAR_EXPORT #elif defined(API_STATIC) #define API_EXPORT(type) type __stdcall #define API_EXPORT_NONSTD(type) type #define API_VAR_EXPORT +#define MODULE_EXPORT(type) type __stdcall #define MODULE_VAR_EXPORT #elif defined(API_EXPORT_SYMBOLS) #define API_EXPORT(type) __declspec(dllexport) type __stdcall #define API_EXPORT_NONSTD(type) __declspec(dllexport) type #define API_VAR_EXPORT __declspec(dllexport) +#define MODULE_EXPORT(type) __declspec(dllexport) type __stdcall #define MODULE_VAR_EXPORT __declspec(dllexport) #else #define API_EXPORT(type) __declspec(dllimport) type __stdcall #define API_EXPORT_NONSTD(type) __declspec(dllimport) type #define API_VAR_EXPORT __declspec(dllimport) +#define MODULE_EXPORT(type) __declspec(dllexport) type __stdcall #define MODULE_VAR_EXPORT __declspec(dllexport) #endif