You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Ian Holsman <ia...@cnet.com> on 2001/08/12 04:21:27 UTC

[PATCH/DOX] apr.h.in & apr.hw

Patch creates the group 'APR' which groups all the APR functions together.

C:\src\apache\httpd-2.0>cvs diff -u srclib\apr\include\apr.h.in
Index: srclib/apr/include/apr.h.in
===================================================================
RCS file: /home/cvspublic/apr/include/apr.h.in,v
retrieving revision 1.88
diff -u -r1.88 apr.h.in
--- srclib/apr/include/apr.h.in 2001/07/25 18:00:57     1.88
+++ srclib/apr/include/apr.h.in 2001/08/12 02:15:24
@@ -5,6 +5,10 @@
  * @file apr.h
  * @brief Basic APR header
  */
+/**
+ * @defgroup APR APR Functions
+ * @{
+ */

 /* So that we can use inline on some critical functions, and use
  * GNUC attributes (such as to get -Wall warnings for printf-like
@@ -291,5 +295,5 @@
 #else
 #error no decision has been made on APR_PATH_MAX for your platform
 #endif
-
+/** @} */
 #endif /* APR_H */

Index: srclib/apr/include/apr.hw
===================================================================
RCS file: /home/cvspublic/apr/include/apr.hw,v
retrieving revision 1.74
diff -u -r1.74 apr.hw
--- srclib/apr/include/apr.hw   2001/07/25 18:00:57     1.74
+++ srclib/apr/include/apr.hw   2001/08/12 02:17:34
@@ -56,6 +56,16 @@
  * Note: This is a Windows specific version of apr.h. It is copied as
  * apr.h at the start of a Windows build.
  */
+/**
+ * @file apr.h
+ * @brief Basic APR header
+ */
+
+/**
+ * @defgroup APR APR Functions
+ * @{
+ */
+

 #ifdef WIN32
 #ifndef APR_H
@@ -343,3 +353,4 @@

 #endif /* APR_H */
 #endif /* WIN32 */
+/** @} */