Changeset 85171 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jul 10, 2020 12:09:50 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139135
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r85041 r85171 484 484 * rest of the kernel modules on darwin. 485 485 */ 486 PFNRTg_apfnVBoxDrvIPRTDeps[] =486 struct CLANG11WERIDNESS { PFNRT pfn; } g_apfnVBoxDrvIPRTDeps[] = 487 487 { 488 488 /* VBoxNetAdp */ 489 (PFNRT)RTRandBytes,489 { (PFNRT)RTRandBytes }, 490 490 /* VBoxUSB */ 491 (PFNRT)RTPathStripFilename,491 { (PFNRT)RTPathStripFilename }, 492 492 #if !defined(RT_OS_FREEBSD) 493 (PFNRT)RTHandleTableAlloc,494 (PFNRT)RTStrPurgeEncoding,493 { (PFNRT)RTHandleTableAlloc }, 494 { (PFNRT)RTStrPurgeEncoding }, 495 495 #endif 496 NULL496 { NULL } 497 497 }; 498 498 #endif /* RT_OS_DARWIN || RT_OS_SOLARIS || RT_OS_FREEBSD */
Note:
See TracChangeset
for help on using the changeset viewer.