2004-12-30 Ralf Corsepius <ralf.corsepius@rtems.org>

* httpd/rtems_webserver.h: Add doxygen preamble.
	Add C++ guards.
This commit is contained in:
Ralf Corsepius
2004-12-30 09:01:23 +00:00
parent 2707ce2119
commit df1d04ec18
2 changed files with 16 additions and 3 deletions

View File

@@ -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>

View File

@@ -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