VirtualBox

Ignore:
Timestamp:
Jan 4, 2017 5:11:32 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
112626
Message:

HostServices: doxygen fixes

Location:
trunk/src/VBox/HostServices/SharedClipboard
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard-win.cpp

    r63549 r65123  
    790790}
    791791
    792 int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient, bool)
    793 {
     792int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient, bool fHeadless)
     793{
     794    NOREF(fHeadless);
    794795    Log(("vboxClipboardConnect\n"));
    795796
     
    10471048 * Check that the source string contains CF_HTML struct
    10481049 *
    1049  * @returns @c true if the @source string is in CF_HTML format
     1050 * @param   pszSource   source string.
     1051 *
     1052 * @returns @c true if the @a pszSource string is in CF_HTML format
    10501053 */
    10511054static bool IsWindowsHTML(const char *pszSource)
  • trunk/src/VBox/HostServices/SharedClipboard/darwin.cpp

    r65102 r65123  
    151151 *
    152152 * @param   pClient Structure containing context information about the guest system
     153 * @param   fHeadless Whether headless.
    153154 * @returns RT status code
    154155 */
    155 int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient, bool)
    156 {
     156int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient, bool fHeadless)
     157{
     158    NOREF(fHeadless);
    157159    if (g_ctx.pClient != NULL)
    158160    {
  • trunk/src/VBox/HostServices/SharedClipboard/x11-clipboard.cpp

    r62876 r65123  
    250250 * @param  pCtx  request context information
    251251 * @param  rc    the completion status of the request
    252  * @param  cbActual  on successful completion, the number of bytes of data
    253  *                   actually written, on buffer overflow the size of the
    254  *                   buffer needed, ignored otherwise
     252 * @param  pReq  request
     253 * @param  pv    address
     254 * @param  cb    size
     255 *
    255256 * @todo   change this to deal with the buffer issues rather than offloading
    256257 *         them onto the caller
    257258 */
    258259void ClipCompleteDataRequestFromX11(VBOXCLIPBOARDCONTEXT *pCtx, int rc,
    259                                     CLIPREADCBREQ *pReq, void *pv,
    260                                     uint32_t cb)
     260                                    CLIPREADCBREQ *pReq, void *pv, uint32_t cb)
    261261{
    262262    if (cb <= pReq->cb)
  • trunk/src/VBox/HostServices/SharedClipboard/x11-stub.cpp

    r62489 r65123  
    4949  * Enable the shared clipboard - called by the hgcm clipboard subsystem.
    5050  *
    51   * @param   pClient Structure containing context information about the guest system
     51  * @param   pClient    Structure containing context information about the guest system
     52  * @param   fHeadless  Whether headless.
    5253  * @returns RT status code
    5354  */
    54 int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA * /* pClient */,
    55                           bool /* fHeadless */)
     55int vboxClipboardConnect (VBOXCLIPBOARDCLIENTDATA *pClient,
     56                          bool fHeadless)
    5657{
     58    NOREF(pClient, fHeadless);
    5759    LogFlowFunc(("called, returning VINF_SUCCESS.\n"));
    5860    return VINF_SUCCESS;
     
    7173/**
    7274 * Shut down the shared clipboard subsystem and "disconnect" the guest.
     75 *
     76 * @param   pClient    Structure containing context information about the guest system
    7377 */
    74 void vboxClipboardDisconnect (VBOXCLIPBOARDCLIENTDATA * /* pClient */)
     78void vboxClipboardDisconnect (VBOXCLIPBOARDCLIENTDATA *pClient)
    7579{
     80    NOREF(pClient);
    7681    LogFlowFunc(("called, returning.\n"));
    7782}
     
    8489 * @param u32Formats Clipboard formats the guest is offering
    8590 */
    86 void vboxClipboardFormatAnnounce (VBOXCLIPBOARDCLIENTDATA * /* pClient */,
    87                                   uint32_t /* u32Formats */)
     91void vboxClipboardFormatAnnounce (VBOXCLIPBOARDCLIENTDATA *pClient,
     92                                  uint32_t u32Formats)
    8893{
     94    NOREF(pClient, u32Formats);
    8995    LogFlowFunc(("called, returning.\n"));
    9096}
     
    99105 * @param pcbActual Where to write the actual size of the written data
    100106 */
    101 int vboxClipboardReadData (VBOXCLIPBOARDCLIENTDATA * /* pClient */, uint32_t /* u32Format */,
    102                            void * /* pv */, uint32_t /* cb */, uint32_t * pcbActual)
     107int vboxClipboardReadData (VBOXCLIPBOARDCLIENTDATA *pClient, uint32_t u32Format,
     108                           void *pv, uint32_t cb, uint32_t *pcbActual)
    103109{
     110    NOREF(pClient, u32Format, pv, cb);
    104111    LogFlowFunc(("called, returning VINF_SUCCESS.\n"));
    105112    /* No data available. */
     
    116123 * @param u32Format The format of the data written
    117124 */
    118 void vboxClipboardWriteData (VBOXCLIPBOARDCLIENTDATA * /* pClient */, void * /* pv */,
    119                              uint32_t /* cb */, uint32_t /* u32Format */)
     125void vboxClipboardWriteData (VBOXCLIPBOARDCLIENTDATA *pClient, void *pv,
     126                             uint32_t cb, uint32_t u32Format)
    120127{
     128    NOREF(pClient, pv, cb, u32Format);
    121129    LogFlowFunc(("called, returning.\n"));
    122130}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette