3
0
mirror of https://github.com/isar/libmdbx.git synced 2025-03-30 13:42:58 +08:00

mdbx: корректировка doxygen-комментариев (backport).

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2024-12-18 01:25:50 +03:00
parent 42561e3b8e
commit d41ebfa399

4
mdbx.h

@ -5038,7 +5038,7 @@ LIBMDBX_API int mdbx_cursor_del(MDBX_cursor *cursor, MDBX_put_flags_t flags);
* sorted duplicate data items \ref MDBX_DUPSORT.
*
* \param [in] cursor A cursor handle returned by \ref mdbx_cursor_open().
* \param [out] pcount Address where the count will be stored.
* \param [out] count Address where the count will be stored.
*
* \returns A non-zero error value on failure and 0 on success,
* some possible errors are:
@ -5046,7 +5046,7 @@ LIBMDBX_API int mdbx_cursor_del(MDBX_cursor *cursor, MDBX_put_flags_t flags);
* by current thread.
* \retval MDBX_EINVAL Cursor is not initialized, or an invalid parameter
* was specified. */
LIBMDBX_API int mdbx_cursor_count(const MDBX_cursor *cursor, size_t *pcount);
LIBMDBX_API int mdbx_cursor_count(const MDBX_cursor *cursor, size_t *count);
/** \brief Determines whether the cursor is pointed to a key-value pair or not,
* i.e. was not positioned or points to the end of data.