VirtualBox

Changeset 65123 in vbox


Ignore:
Timestamp:
Jan 4, 2017 5:11:32 PM (8 years ago)
Author:
vboxsync
Message:

HostServices: doxygen fixes

Location:
trunk/src/VBox/HostServices
Files:
6 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}
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r63619 r65123  
    149149 * @param  fShflFlags shared folder create flags
    150150 * @param  fMode      file attributes
     151 * @param  handleInitial initial handle
    151152 * @retval pfOpen     iprt create flags
    152153 */
     
    700701 *
    701702 * @returns iprt status code (currently VINF_SUCCESS)
    702  * @param   pszFullPath    The path of the file to be looked up
     703 * @param   pClient    client data
     704 * @param   pszPath    The path of the file to be looked up
    703705 * @retval  pParms->Result Status of the operation (success or error)
    704706 * @retval  pParms->Info   On success, information returned about the file
     
    757759}
    758760#endif
     761
    759762/**
    760763 * Create or open a file or folder.  Perform character set and case
  • trunk/src/VBox/HostServices/SharedFolders/vbsfpath.h

    r62489 r65123  
    3737 * @param ppszHostPath           Returned full host path: root prefix + guest path.
    3838 * @param pcbHostPathRoot        Length of the root prefix in bytes. Optional, can be NULL.
    39  * @param fWildCard              Whether the last component may contain
    40  *                               wildcards and thus might require exclusion
    41  *                               from the case correction.
    42  * @param fPreserveLastComponent Always exclude the last component from case
    43  *                               correction if set.
     39 * @param fu32Options            Options.
    4440 * @param pfu32PathFlags         VBSF_F_PATH_* flags. Optional, can be NULL.
    4541 */
     
    4743                        PSHFLSTRING pGuestString, uint32_t cbGuestString,
    4844                        char **ppszHostPath, uint32_t *pcbHostPathRoot,
    49                         uint32_t fu32Options,
    50                         uint32_t *pfu32PathFlags);
     45                        uint32_t fu32Options, uint32_t *pfu32PathFlags);
    5146
    5247/** Free the host path returned by vbsfPathGuestToHost.
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