diff options
author | Ian Holsman <ianh@apache.org> | 2002-02-04 19:10:20 +0000 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2002-02-04 19:10:20 +0000 |
commit | 0993d7929e953c6f839b6dc0cb0fc50b13b72f51 (patch) | |
tree | 0871cbc3ff1fef60d3eb431c95e8b65f900691ab /include/apr_file_info.h | |
parent | 56307e79bc532dc6ac68d79632f0560bce3dbea5 (diff) | |
download | apr-0993d7929e953c6f839b6dc0cb0fc50b13b72f51.tar.gz |
document ino_t & dev_t for Doxygen
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://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.h | 5 |
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 |