VirtualBox

Ignore:
Timestamp:
Aug 13, 2016 5:09:23 PM (8 years ago)
Author:
vboxsync
Message:

ExtPacks/VNC: warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp

    r62496 r63420  
    254254DECLCALLBACK(int) VNCServerImpl::VRDEEnableConnections(HVRDESERVER hServer, bool fEnable)
    255255{
     256    RT_NOREF(fEnable);
    256257    VNCServerImpl *instance = (VNCServerImpl *)hServer;
    257258
     
    695696 * @return IPRT status code.
    696697 */
    697 DECLCALLBACK(void) VNCServerImpl::VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId,
    698                                                  bool fReconnect)
    699 {
     698DECLCALLBACK(void) VNCServerImpl::VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId, bool fReconnect)
     699{
     700    RT_NOREF(hServer, u32ClientId, fReconnect);
    700701}
    701702
     
    783784 * @param cbUpdate  Size of the update data.
    784785 */
    785 DECLCALLBACK(void) VNCServerImpl::VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId,
    786                                              void *pvUpdate,uint32_t cbUpdate)
    787 {
     786DECLCALLBACK(void) VNCServerImpl::VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, void *pvUpdate,uint32_t cbUpdate)
     787{
     788    RT_NOREF(uScreenId);
    788789    char *ptr = (char *)pvUpdate;
    789790    VNCServerImpl *instance = (VNCServerImpl *)hServer;
     
    926927DECLCALLBACK(void) VNCServerImpl::VRDEHidePointer(HVRDESERVER hServer)
    927928{
    928     VNCServerImpl *instance = (VNCServerImpl *)hServer;
     929    VNCServerImpl *pInstance = (VNCServerImpl *)hServer;
     930    RT_NOREF(pInstance);
    929931
    930932    ///@todo: what's behavior for this. hide doesn't seems right
    931     //rfbSetCursor(instance->mVNCServer, NULL);
     933    //rfbSetCursor(pInstance->mVNCServer, NULL);
    932934}
    933935
     
    947949                                                   VRDEAUDIOFORMAT format)
    948950{
     951    RT_NOREF(hServer, pvSamples, cSamples, format);
    949952}
    950953
     
    962965                                                  uint16_t u16Right)
    963966{
     967    RT_NOREF(hServer, u16Left, u16Right);
    964968}
    965969
     
    982986                                                 uint32_t cbParm)
    983987{
     988    RT_NOREF(hServer, u32ClientId, pvParm, cbParm);
    984989}
    985990
     
    10071012                                                uint32_t *pcbActualRead)
    10081013{
     1014    RT_NOREF(hServer, u32Function, u32Format, pvData, cbData, pcbActualRead);
    10091015}
    10101016
     
    10741080                                               const char *pszCookie)
    10751081{
     1082    RT_NOREF(hServer, u32ClientId, pszServer, pszUser, pszDomain, pszPassword, u32SessionId, pszCookie);
    10761083}
    10771084
     
    10931100                                                  uint32_t u32SamplesPerBlock)
    10941101{
     1102    RT_NOREF(hServer, pvCtx, u32ClientId, audioFormat, u32SamplesPerBlock);
    10951103}
    10961104
     
    11031111 * @note Initialized to NULL when the VRDECallbackAudioIn callback is NULL.
    11041112 */
    1105 DECLCALLBACK(void) VNCServerImpl::VRDEAudioInClose(HVRDESERVER hServer,
    1106                                                    uint32_t u32ClientId)
    1107 {
     1113DECLCALLBACK(void) VNCServerImpl::VRDEAudioInClose(HVRDESERVER hServer, uint32_t u32ClientId)
     1114{
     1115    RT_NOREF(hServer, u32ClientId);
    11081116}
    11091117
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