Changeset 62842 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Aug 1, 2016 5:25:25 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109438
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp
r62521 r62842 490 490 uint32_t iLockBuf = 0; 491 491 uint32_t iParm; 492 492 RT_NOREF1(cbCallInfo); 493 #ifndef USE_BOUNCE_BUFFERS 494 RT_NOREF1(fIsUser); 495 #endif 493 496 494 497 /* … … 769 772 #endif 770 773 uint32_t iParm; 774 RT_NOREF1(pParmInfo); 775 #ifndef USE_BOUNCE_BUFFERS 776 RT_NOREF1(fIsUser); 777 #endif 771 778 772 779 /* -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r62521 r62842 85 85 __try { 86 86 /* Calls to MmProbeAndLockPages must be enclosed in a try/except block. */ 87 RT_NOREF1(fFlags); /** @todo fFlags on windows */ 87 88 MmProbeAndLockPages(pMdl, 88 89 /** @todo (fFlags & VBGLR0_HGCMCALL_F_MODE_MASK) == VBGLR0_HGCMCALL_F_USER? UserMode: KernelMode */ … … 232 233 static NTSTATUS vbglDriverIOCtlCompletion(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp, IN PVOID Context) 233 234 { 235 RT_NOREF2(DeviceObject, Irp); 234 236 Log(("VBGL completion %x\n", Irp)); 235 237 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestUser.cpp
r62521 r62842 60 60 uint32_t cbBase = sizeof(VMMDevReportGuestUserState); 61 61 uint32_t cbUser = (uint32_t)strlen(pszUser) + 1; /* Include terminating zero */ 62 uint32_t cbDomain = pszDomain ? strlen(pszDomain) + 1 /* Ditto */ : 0;62 uint32_t cbDomain = pszDomain ? (uint32_t)strlen(pszDomain) + 1 /* Ditto */ : 0; 63 63 64 64 /* Allocate enough space for all fields. */ -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibHostChannel.cpp
r62521 r62842 261 261 { 262 262 VBoxHostChannelEventCancel parms; 263 RT_NOREF1(u32ChannelHandle); 263 264 264 265 parms.hdr.result = VERR_WRONG_ORDER; -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibModule.cpp
r62521 r62842 164 164 return rc; 165 165 #else 166 RT_NOREF3(pPage, pfShared, puPageFlags); 166 167 return VERR_NOT_IMPLEMENTED; 167 168 #endif
Note:
See TracChangeset
for help on using the changeset viewer.