Changeset 86819 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Nov 6, 2020 11:43:05 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141263
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibHostVersion.cpp
r82968 r86819 61 61 VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(HGCMCLIENTID idClient, bool *pfUpdate, char **ppszHostVersion, char **ppszGuestVersion) 62 62 { 63 #ifdef VBOX_WITH_GUEST_PROPS 63 64 Assert(idClient > 0); 64 65 AssertPtr(pfUpdate); … … 166 167 } 167 168 return rc; 169 #else /* !VBOX_WITH_GUEST_PROPS */ 170 RT_NOREF(idClient, pfUpdate, ppszHostVersion, ppszGuestVersion); 171 return VERR_NOT_SUPPORTED; 172 #endif 168 173 } 169 174 … … 179 184 VBGLR3DECL(int) VbglR3HostVersionLastCheckedLoad(HGCMCLIENTID idClient, char **ppszVer) 180 185 { 186 #ifdef VBOX_WITH_GUEST_PROPS 181 187 Assert(idClient > 0); 182 188 AssertPtr(ppszVer); 183 189 return VbglR3GuestPropReadValueAlloc(idClient, "/VirtualBox/GuestAdd/HostVerLastChecked", ppszVer); 190 #else /* !VBOX_WITH_GUEST_PROPS */ 191 RT_NOREF(idClient, ppszVer); 192 return VERR_NOT_SUPPORTED; 193 #endif 184 194 } 185 195 … … 195 205 VBGLR3DECL(int) VbglR3HostVersionLastCheckedStore(HGCMCLIENTID idClient, const char *pszVer) 196 206 { 207 #ifdef VBOX_WITH_GUEST_PROPS 197 208 Assert(idClient > 0); 198 209 AssertPtr(pszVer); 199 210 return VbglR3GuestPropWriteValue(idClient, "/VirtualBox/GuestAdd/HostVerLastChecked", pszVer); 211 #else /* !VBOX_WITH_GUEST_PROPS */ 212 RT_NOREF(idClient, pszVer); 213 return VERR_NOT_SUPPORTED; 214 #endif 200 215 } 201 216 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibVideo.cpp
r82968 r86819 405 405 return rc; 406 406 #else /* !VBOX_WITH_GUEST_PROPS */ 407 RT_NOREF(pcScreen); 407 408 return VERR_NOT_SUPPORTED; 408 409 #endif /* !VBOX_WITH_GUEST_PROPS */ … … 482 483 return rc; 483 484 #else /* !VBOX_WITH_GUEST_PROPS */ 485 RT_NOREF(idScreen, cx, cy, cBits, x, y, fEnabled); 484 486 return VERR_NOT_SUPPORTED; 485 487 #endif /* !VBOX_WITH_GUEST_PROPS */ … … 571 573 return rc; 572 574 #else /* !VBOX_WITH_GUEST_PROPS */ 575 RT_NOREF(idScreen, pcx, pcy, pcBits, px, py, pfEnabled); 573 576 return VERR_NOT_SUPPORTED; 574 577 #endif /* !VBOX_WITH_GUEST_PROPS */
Note:
See TracChangeset
for help on using the changeset viewer.