Skip to content

Commit 4b49f1e

Browse files
committed
Recording: Doxygen fixes. bugref:11069
svn:sync-xref-src-repo-rev: r173142
1 parent 91ce431 commit 4b49f1e

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

include/iprt/circbuf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ RTDECL(void) RTCircBufReleaseWriteBlock(PRTCIRCBUF pBuf, size_t cbSize);
179179
*
180180
* @param pBuf The buffer handle.
181181
* @param offRead Offset from the current read position to start peeking at.
182-
* @param pvDst Where to store the peeked bytes.
183-
* @param cbToCopy How many bytes to try to copy.
184-
* @param pcbCopied Where to return how many bytes were copied.
182+
* @param cbReq How many bytes we want to peek for.
183+
* @param ppv Where to store return the pointer of the data on a successful peek.
184+
* @param pcbAvail Where to return the available bytes of \a ppv on a successful peek.
185185
*/
186186
RTDECL(int) RTCircBufPeek(PRTCIRCBUF pBuf, size_t offRead, size_t cbReq, const void **ppv, size_t *pcbAvail);
187187

src/VBox/Main/src-client/RecordingContext.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: RecordingContext.cpp 113380 2026-03-13 10:01:45Z andreas.loeffler@oracle.com $ */
1+
/* $Id: RecordingContext.cpp 113388 2026-03-13 14:24:11Z andreas.loeffler@oracle.com $ */
22
/** @file
33
* Recording context code.
44
*/
@@ -172,6 +172,8 @@ void RecordingCursorState::Destroy(void)
172172
*
173173
* @returns VBox status code.
174174
* @param fAlpha Whether the pixel data contains alpha channel information or not.
175+
* @param xHot X offset within the frame of the "hot" (i.e. clicking) point of the shape.
176+
* @param yHot Y offset within the frame of the "hot" (i.e. clicking) point of the shape.
175177
* @param uWidth Width (in pixel) of new cursor shape.
176178
* @param uHeight Height (in pixel) of new cursor shape.
177179
* @param pu8Shape Pixel data of new cursor shape.

0 commit comments

Comments
 (0)