summaryrefslogtreecommitdiff
path: root/include/apr_file_info.h
diff options
context:
space:
mode:
authorianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2002-02-04 19:10:20 +0000
committerianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2002-02-04 19:10:20 +0000
commit96a45cb89e9cd48749b16b9943dfe1d33e50c697 (patch)
tree0871cbc3ff1fef60d3eb431c95e8b65f900691ab /include/apr_file_info.h
parent748b7b7e28df4c73604e0a6efd198d42b4b5b44b (diff)
downloadlibapr-96a45cb89e9cd48749b16b9943dfe1d33e50c697.tar.gz
document ino_t & dev_t for Doxygen
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62908 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_file_info.h')
-rw-r--r--include/apr_file_info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 42f123b28..073fdc94a 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -132,11 +132,14 @@ typedef apr_int32_t apr_fileperms_t;
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