Changeset 63420 in vbox for trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp
- Timestamp:
- Aug 13, 2016 5:09:23 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp
r62496 r63420 254 254 DECLCALLBACK(int) VNCServerImpl::VRDEEnableConnections(HVRDESERVER hServer, bool fEnable) 255 255 { 256 RT_NOREF(fEnable); 256 257 VNCServerImpl *instance = (VNCServerImpl *)hServer; 257 258 … … 695 696 * @return IPRT status code. 696 697 */ 697 DECLCALLBACK(void) VNCServerImpl::VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId, 698 bool fReconnect) 699 { 698 DECLCALLBACK(void) VNCServerImpl::VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId, bool fReconnect) 699 { 700 RT_NOREF(hServer, u32ClientId, fReconnect); 700 701 } 701 702 … … 783 784 * @param cbUpdate Size of the update data. 784 785 */ 785 DECLCALLBACK(void) VNCServerImpl::VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, 786 void *pvUpdate,uint32_t cbUpdate) 787 { 786 DECLCALLBACK(void) VNCServerImpl::VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, void *pvUpdate,uint32_t cbUpdate) 787 { 788 RT_NOREF(uScreenId); 788 789 char *ptr = (char *)pvUpdate; 789 790 VNCServerImpl *instance = (VNCServerImpl *)hServer; … … 926 927 DECLCALLBACK(void) VNCServerImpl::VRDEHidePointer(HVRDESERVER hServer) 927 928 { 928 VNCServerImpl *instance = (VNCServerImpl *)hServer; 929 VNCServerImpl *pInstance = (VNCServerImpl *)hServer; 930 RT_NOREF(pInstance); 929 931 930 932 ///@todo: what's behavior for this. hide doesn't seems right 931 //rfbSetCursor( instance->mVNCServer, NULL);933 //rfbSetCursor(pInstance->mVNCServer, NULL); 932 934 } 933 935 … … 947 949 VRDEAUDIOFORMAT format) 948 950 { 951 RT_NOREF(hServer, pvSamples, cSamples, format); 949 952 } 950 953 … … 962 965 uint16_t u16Right) 963 966 { 967 RT_NOREF(hServer, u16Left, u16Right); 964 968 } 965 969 … … 982 986 uint32_t cbParm) 983 987 { 988 RT_NOREF(hServer, u32ClientId, pvParm, cbParm); 984 989 } 985 990 … … 1007 1012 uint32_t *pcbActualRead) 1008 1013 { 1014 RT_NOREF(hServer, u32Function, u32Format, pvData, cbData, pcbActualRead); 1009 1015 } 1010 1016 … … 1074 1080 const char *pszCookie) 1075 1081 { 1082 RT_NOREF(hServer, u32ClientId, pszServer, pszUser, pszDomain, pszPassword, u32SessionId, pszCookie); 1076 1083 } 1077 1084 … … 1093 1100 uint32_t u32SamplesPerBlock) 1094 1101 { 1102 RT_NOREF(hServer, pvCtx, u32ClientId, audioFormat, u32SamplesPerBlock); 1095 1103 } 1096 1104 … … 1103 1111 * @note Initialized to NULL when the VRDECallbackAudioIn callback is NULL. 1104 1112 */ 1105 DECLCALLBACK(void) VNCServerImpl::VRDEAudioInClose(HVRDESERVER hServer, 1106 uint32_t u32ClientId) 1107 { 1113 DECLCALLBACK(void) VNCServerImpl::VRDEAudioInClose(HVRDESERVER hServer, uint32_t u32ClientId) 1114 { 1115 RT_NOREF(hServer, u32ClientId); 1108 1116 } 1109 1117
Note:
See TracChangeset
for help on using the changeset viewer.