VirtualBox

Changeset 71320 in vbox


Ignore:
Timestamp:
Mar 14, 2018 1:00:21 PM (7 years ago)
Author:
vboxsync
Message:

Guest Control: Renamed RT_NOREFx -> RT_NOREF.

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp

    r71316 r71320  
    17101710                                                       PVBOXSERVICECTRLSESSIONTHREAD pSessionThread, uint32_t uCtrlSessionThread)
    17111711{
    1712     RT_NOREF1(uCtrlSessionThread);
     1712    RT_NOREF(uCtrlSessionThread);
    17131713
    17141714    /*
     
    20742074int VGSvcGstCtrlSessionThreadWait(PVBOXSERVICECTRLSESSIONTHREAD pThread, uint32_t uTimeoutMS, uint32_t fFlags)
    20752075{
    2076     RT_NOREF1(fFlags);
     2076    RT_NOREF(fFlags);
    20772077    AssertPtrReturn(pThread, VERR_INVALID_POINTER);
    20782078    /** @todo Validate closing flags. */
  • trunk/src/VBox/HostServices/GuestControl/service.cpp

    r69500 r71320  
    55
    66/*
    7  * Copyright (C) 2011-2017 Oracle Corporation
     7 * Copyright (C) 2011-2018 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    10411041int Service::clientConnect(uint32_t u32ClientID, void *pvClient)
    10421042{
    1043     RT_NOREF1(pvClient);
     1043    RT_NOREF(pvClient);
    10441044    LogFlowFunc(("[Client %RU32] Connected\n", u32ClientID));
    10451045#ifdef VBOX_STRICT
     
    10691069int Service::clientDisconnect(uint32_t u32ClientID, void *pvClient)
    10701070{
    1071     RT_NOREF1(pvClient);
     1071    RT_NOREF(pvClient);
    10721072    LogFlowFunc(("[Client %RU32] Disconnected (%zu clients total)\n",
    10731073                 u32ClientID, mClientStateMap.size()));
     
    11731173                                   uint32_t cParms, VBOXHGCMSVCPARM paParms[])
    11741174{
    1175     RT_NOREF1(callHandle);
     1175    RT_NOREF(callHandle);
    11761176
    11771177    /*
     
    12241224                                     uint32_t cParms, VBOXHGCMSVCPARM paParms[])
    12251225{
    1226     RT_NOREF2(callHandle, paParms);
     1226    RT_NOREF(callHandle, paParms);
    12271227
    12281228    /*
     
    12521252                           uint32_t cParms, VBOXHGCMSVCPARM paParms[])
    12531253{
    1254     RT_NOREF2(callHandle, paParms);
     1254    RT_NOREF(callHandle, paParms);
    12551255
    12561256    /*
     
    15761576int Service::sessionClose(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[])
    15771577{
    1578     RT_NOREF2(u32ClientID, callHandle);
     1578    RT_NOREF(u32ClientID, callHandle);
    15791579    if (cParms < 2)
    15801580        return VERR_INVALID_PARAMETER;
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