Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 86160 invoked by uid 500); 14 Feb 2002 03:16:19 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 86149 invoked from network); 14 Feb 2002 03:16:18 -0000 Date: 14 Feb 2002 03:16:17 -0000 Message-ID: <20020214031617.98024.qmail@icarus.apache.org> From: joes@apache.org To: httpd-apreq-cvs@apache.org Subject: cvs commit: httpd-apreq/c apache_multipart_buffer.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N joes 02/02/13 19:16:17 Modified: c apache_multipart_buffer.h Log: C++ ifdefs for apache_multipart_buffer.h Revision Changes Path 1.4 +8 -0 httpd-apreq/c/apache_multipart_buffer.h Index: apache_multipart_buffer.h =================================================================== RCS file: /home/cvs/httpd-apreq/c/apache_multipart_buffer.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- apache_multipart_buffer.h 14 Feb 2002 03:13:53 -0000 1.3 +++ apache_multipart_buffer.h 14 Feb 2002 03:16:17 -0000 1.4 @@ -7,6 +7,10 @@ #define FILLUNIT (1024 * 5) #define MPB_ERROR APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, self->r +#ifdef __cplusplus + extern "C" { +#endif + typedef struct { /* request info */ request_rec *r; @@ -30,5 +34,9 @@ int multipart_buffer_read(multipart_buffer *self, char *buf, int bytes); char *multipart_buffer_read_body(multipart_buffer *self); int multipart_buffer_eof(multipart_buffer *self); + +#ifdef __cplusplus + } +#endif #endif