summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-12-30 09:01:23 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-12-30 09:01:23 +0000
commitdf1d04ec18c2a7e5877a01c53f20dd565d8dd5a5 (patch)
tree06d69060c6d1a1c624d521d3dde9d765abd5b246
parent2004-12-30 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-df1d04ec18c2a7e5877a01c53f20dd565d8dd5a5.tar.bz2
2004-12-30 Ralf Corsepius <ralf.corsepius@rtems.org>
* httpd/rtems_webserver.h: Add doxygen preamble. Add C++ guards.
-rw-r--r--cpukit/ChangeLog2
-rw-r--r--cpukit/httpd/rtems_webserver.h17
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 <ralf.corsepius@rtems.org>
* httpd/Makefile.am: Remove -DOS="RTEMS".
+ * httpd/rtems_webserver.h: Add doxygen preamble.
+ Add C++ guards.
2004-12-29 Ralf Corsepius <ralf.corsepius@rtems.org>
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