@@ -105,7 +105,7 @@ class DirHandle : private NonCopyable<DirHandle> {
105
105
* @returns
106
106
* 0 on success,
107
107
* -1 on error.
108
- * @deprecated Replaced by `DirHandle::close'
108
+ * @deprecated Replaced by `int DirHandle::close() '
109
109
*/
110
110
MBED_DEPRECATED_SINCE (" mbed-os-5.4" , " Replaced by DirHandle::close" )
111
111
virtual int closedir () { return close (); };
@@ -117,7 +117,7 @@ class DirHandle : private NonCopyable<DirHandle> {
117
117
* A pointer to a dirent structure representing the
118
118
* directory entry at the current position, or NULL on reaching
119
119
* end of directory or error.
120
- * @deprecated Replaced by `DirHandle::read'
120
+ * @deprecated Replaced by `ssize_t DirHandle::read(struct dirent *ent)
121
121
*/
122
122
MBED_DEPRECATED_SINCE (" mbed-os-5.4" , " Replaced by DirHandle::read" )
123
123
virtual struct dirent *readdir ()
@@ -127,7 +127,7 @@ class DirHandle : private NonCopyable<DirHandle> {
127
127
}
128
128
129
129
/* * Resets the position to the beginning of the directory.
130
- * @deprecated Replaced by `DirHandle::rewind'
130
+ * @deprecated Replaced by `void DirHandle::rewind() '
131
131
*/
132
132
MBED_DEPRECATED_SINCE (" mbed-os-5.4" , " Replaced by DirHandle::rewind" )
133
133
virtual void rewinddir () { rewind (); }
@@ -137,15 +137,15 @@ class DirHandle : private NonCopyable<DirHandle> {
137
137
* @returns
138
138
* the current position,
139
139
* -1 on error.
140
- * @deprecated Replaced by `DirHandle::tell'
140
+ * @deprecated Replaced by `off_t DirHandle::tell() '
141
141
*/
142
142
MBED_DEPRECATED_SINCE (" mbed-os-5.4" , " Replaced by DirHandle::tell" )
143
143
virtual off_t telldir () { return tell (); }
144
144
145
145
/* * Sets the position of the DirHandle.
146
146
*
147
147
* @param location The location to seek to. Must be a value returned by telldir.
148
- * @deprecated Replaced by `DirHandle::seek'
148
+ * @deprecated Replaced by `void DirHandle::seek(off_t offset) '
149
149
*/
150
150
MBED_DEPRECATED_SINCE (" mbed-os-5.4" , " Replaced by DirHandle::seek" )
151
151
virtual void seekdir (off_t location) { seek (location); }
0 commit comments