ianh 02/02/04 11:10:20
Modified: include apr_file_info.h
Log:
document ino_t & dev_t for Doxygen
Revision Changes Path
1.28 +4 -1 apr/include/apr_file_info.h
Index: apr_file_info.h
===================================================================
RCS file: /home/cvs/apr/include/apr_file_info.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- apr_file_info.h 1 Feb 2002 22:11:38 -0000 1.27
+++ apr_file_info.h 4 Feb 2002 19:10:20 -0000 1.28
@@ -132,11 +132,14 @@
typedef apr_uint64_t apr_ino_t;
/**
* Structure for determining the device the file is on.
- * @defvar apr_dev_t
*/
typedef apr_uint32_t apr_dev_t;
#else
+/** The inode of the file. */
typedef ino_t apr_ino_t;
+/**
+ * Structure for determining the device the file is on.
+ */
typedef dev_t apr_dev_t;
#endif