From df1d04ec18c2a7e5877a01c53f20dd565d8dd5a5 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 30 Dec 2004 09:01:23 +0000 Subject: 2004-12-30 Ralf Corsepius * httpd/rtems_webserver.h: Add doxygen preamble. Add C++ guards. --- cpukit/ChangeLog | 2 ++ cpukit/httpd/rtems_webserver.h | 17 ++++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index ccc2780d56..77d06f3bcc 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,6 +1,8 @@ 2004-12-30 Ralf Corsepius * httpd/Makefile.am: Remove -DOS="RTEMS". + * httpd/rtems_webserver.h: Add doxygen preamble. + Add C++ guards. 2004-12-29 Ralf Corsepius diff --git a/cpukit/httpd/rtems_webserver.h b/cpukit/httpd/rtems_webserver.h index f62790b601..d2e1362865 100644 --- a/cpukit/httpd/rtems_webserver.h +++ b/cpukit/httpd/rtems_webserver.h @@ -1,6 +1,17 @@ -/* - * rtems_webserver.h -- - * +/** + * @file rtems/rtems_webserver.h */ +#ifndef _rtems_rtems_webserver_h +#define _rtems_rtems_webserver_h + +#ifdef __cplusplus +extern "C" { +#endif + int rtems_initialize_webserver(); + +#ifdef __cplusplus +} +#endif +#endif -- cgit v1.2.3