Changeset 100108 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jun 7, 2023 8:05:13 PM (20 months ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3Lib.cpp
r98103 r100108 232 232 /* IOKit */ 233 233 mach_port_t MasterPort; 234 kern_return_t kr = IOMasterPort(MACH_PORT_NULL, &MasterPort); 234 RT_GCC_NO_WARN_DEPRECATED_BEGIN 235 kern_return_t kr = IOMasterPort(MACH_PORT_NULL, &MasterPort); /* Deprecated since 12.0. */ 236 RT_GCC_NO_WARN_DEPRECATED_END 235 237 if (kr != kIOReturnSuccess) 236 238 { … … 246 248 } 247 249 248 io_service_t ServiceObject = IOServiceGetMatchingService(kIOMasterPortDefault, ClassToMatch); 250 RT_GCC_NO_WARN_DEPRECATED_BEGIN 251 io_service_t ServiceObject = IOServiceGetMatchingService(kIOMasterPortDefault, ClassToMatch); /* kIOMasterPortDefault: Deprecated since 12.0. */ 252 RT_GCC_NO_WARN_DEPRECATED_END 249 253 if (!ServiceObject) 250 254 { -
trunk/src/VBox/Additions/darwin/VBoxClient/VBoxClientClipboardGuestToHost.cpp
r98103 r100108 46 46 #include "VBoxClientInternal.h" 47 47 48 RT_GCC_NO_WARN_DEPRECATED_BEGIN /* Much here is deprecated since 12.0 */ 49 48 50 /** 49 51 * Walk through pasteboard items and report currently available item types. … … 389 391 return rc; /** @todo r=bird: If there are multiple formats available, which rc is returned here? Does it matter? */ 390 392 } 393 394 RT_GCC_NO_WARN_DEPRECATED_END -
trunk/src/VBox/Additions/darwin/VBoxClient/VBoxClientClipboardHostToGuest.cpp
r98103 r100108 46 46 #include "VBoxClientInternal.h" 47 47 48 RT_GCC_NO_WARN_DEPRECATED_BEGIN /* Much here is deprecated since 12.0 */ 49 48 50 /** 49 51 * Allocate memory for host buffer and receive it. … … 314 316 return rc; 315 317 } 318 319 RT_GCC_NO_WARN_DEPRECATED_END
Note:
See TracChangeset
for help on using the changeset viewer.