Changeset 85193 in vbox
- Timestamp:
- Jul 10, 2020 3:09:57 PM (4 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
-
Network/DevINIP.cpp (modified) (1 diff)
-
build/VBoxDDUDeps.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevINIP.cpp
r85121 r85193 131 131 * using .a libraries for now. 132 132 */ 133 static const PFNRTg_pDevINILinkHack[] =134 { 135 (PFNRT)lwip_socket,136 (PFNRT)lwip_close,137 (PFNRT)lwip_setsockopt,138 (PFNRT)lwip_recv,139 (PFNRT)lwip_send,140 (PFNRT)lwip_select133 static const struct CLANG11WEIRDNESS { PFNRT pfn; } g_pDevINILinkHack[] = 134 { 135 { (PFNRT)lwip_socket }, 136 { (PFNRT)lwip_close }, 137 { (PFNRT)lwip_setsockopt }, 138 { (PFNRT)lwip_recv }, 139 { (PFNRT)lwip_send }, 140 { (PFNRT)lwip_select }, 141 141 }; 142 142 -
trunk/src/VBox/Devices/build/VBoxDDUDeps.cpp
r82968 r85193 34 34 * function pointers to code which is wanted in the link. 35 35 */ 36 PFNRTg_apfnVBoxDDUDeps[] =36 struct CLANG11WEIRDNESS { PFNRT pfn; } g_apfnVBoxDDUDeps[] = 37 37 { 38 (PFNRT)VDInit,39 (PFNRT)VDIfCreateVfsStream,40 (PFNRT)VDIfCreateFromVfsStream,41 (PFNRT)VDCreateVfsFileFromDisk,42 (PFNRT)VDIfTcpNetInstDefaultCreate,38 { (PFNRT)VDInit }, 39 { (PFNRT)VDIfCreateVfsStream }, 40 { (PFNRT)VDIfCreateFromVfsStream }, 41 { (PFNRT)VDCreateVfsFileFromDisk }, 42 { (PFNRT)VDIfTcpNetInstDefaultCreate }, 43 43 #ifdef VBOX_WITH_USB 44 (PFNRT)USBFilterInit,45 (PFNRT)USBLibHashSerial,44 { (PFNRT)USBFilterInit }, 45 { (PFNRT)USBLibHashSerial }, 46 46 # ifdef RT_OS_OS2 47 (PFNRT)UsbOpen,47 { (PFNRT)UsbOpen }, 48 48 # endif 49 49 # if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) /* PORTME */ 50 (PFNRT)USBLibInit,50 { (PFNRT)USBLibInit }, 51 51 # endif 52 52 #endif /* VBOX_WITH_USB */ 53 NULL53 { NULL }, 54 54 }; 55 55
Note:
See TracChangeset
for help on using the changeset viewer.

