Changeset 63549 in vbox
- Timestamp:
- Aug 16, 2016 12:55:14 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110204
- Location:
- trunk
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r63491 r63549 251 251 */ 252 252 # undef bool 253 typedef _Bool bool; 253 typedef _Bool bool; 254 254 # endif 255 255 # else -
trunk/include/iprt/win/iphlpapi.h
r62695 r63549 37 37 #endif 38 38 39 -
trunk/include/iprt/win/objidl.h
r62781 r63549 37 37 #endif 38 38 39 -
trunk/include/iprt/win/setupapi.h
r62687 r63549 37 37 #endif 38 38 39 -
trunk/include/iprt/win/shlwapi.h
r62811 r63549 37 37 #endif 38 38 39 40 -
trunk/include/iprt/win/ws2tcpip.h
r62761 r63549 37 37 #endif 38 38 39 40 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPDriver.cpp
r63039 r63549 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 17 18 18 19 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/WINNT/Installer/RegCleanup.cpp
r63090 r63549 28 28 There seems to be a subtle problem with the VirtualBox util. 29 29 */ 30 30 31 31 32 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r63099 r63549 23 23 24 24 #include <malloc.h> 25 25 26 26 27 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxIPC.cpp
r63100 r63549 17 17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 18 18 */ 19 19 20 20 21 /********************************************************************************************************************************* -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-netbsd.c
r63455 r63549 106 106 107 107 #define VBOXGUEST_STATE_INITOK 1 << 0 108 108 109 109 110 /********************************************************************************************************************************* … … 652 653 653 654 error = devsw_attach("vboxguest", NULL, &bmajor, &g_VBoxGuestNetBSDChrDevSW, &cmajor); 654 655 655 656 if (error == EEXIST) 656 657 error = 0; /* maybe built-in ... improve eventually */ -
trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp
r63547 r63549 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 17 18 18 19 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Audio/DrvHostNullAudio.cpp
r63534 r63549 41 41 * THE SOFTWARE. 42 42 */ 43 43 44 44 45 /********************************************************************************************************************************* -
trunk/src/VBox/Devices/Graphics/DevVGA_VDMA.cpp
r63478 r63549 44 44 # include <iprt/memcache.h> 45 45 #endif 46 46 47 47 48 /********************************************************************************************************************************* -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/drv/VBoxNetFltRt-win.cpp
r62711 r63549 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 17 18 18 19 /********************************************************************************************************************************* -
trunk/src/VBox/HostDrivers/VBoxUSB/win/dev/VBoxUsbRt.cpp
r62707 r63549 16 16 */ 17 17 18 18 19 /********************************************************************************************************************************* 19 20 * Header Files * … … 36 37 37 38 #define VBOXUSB_MAGIC 0xABCF1423 39 38 40 39 41 /********************************************************************************************************************************* -
trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard-win.cpp
r63122 r63549 41 41 typedef BOOL WINAPI FNREMOVECLIPBOARDFORMATLISTENER(HWND); 42 42 typedef FNREMOVECLIPBOARDFORMATLISTENER *PFNREMOVECLIPBOARDFORMATLISTENER; 43 43 44 44 45 /********************************************************************************************************************************* -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r62701 r63549 174 174 BOOL result = FALSE; 175 175 typedef BOOL(WINAPI *PFNSHUTDOWNBLOCKREASONDESTROY)(HWND hWnd); 176 176 177 177 PFNSHUTDOWNBLOCKREASONDESTROY pfn = (PFNSHUTDOWNBLOCKREASONDESTROY)GetProcAddress( 178 178 GetModuleHandle(L"User32.dll"), "ShutdownBlockReasonDestroy"); … … 248 248 wc.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1); 249 249 wc.lpszClassName = MAIN_WND_CLASS; 250 250 251 251 252 252 ATOM atomWindowClass = RegisterClass(&wc); -
trunk/src/VBox/Runtime/r0drv/netbsd/alloc-r0drv-netbsd.c
r63329 r63549 39 39 * OTHER DEALINGS IN THE SOFTWARE. 40 40 */ 41 41 42 42 43 /********************************************************************************************************************************* -
trunk/src/VBox/Runtime/r0drv/netbsd/memobj-r0drv-netbsd.c
r63191 r63549 3 3 * IPRT - Ring-0 Memory Objects, NetBSD. 4 4 */ 5 5 6 6 7 /********************************************************************************************************************************* -
trunk/src/VBox/Runtime/r0drv/netbsd/semeventmulti-r0drv-netbsd.c
r63346 r63549 64 64 #define RTSEMEVENTMULTIBSD_STATE_GEN_INIT UINT32_C(0xfffffffc) 65 65 /** @} */ 66 66 67 67 68 /********************************************************************************************************************************* -
trunk/src/VBox/Runtime/r0drv/netbsd/spinlock-r0drv-netbsd.c
r63354 r63549 28 28 * OTHER DEALINGS IN THE SOFTWARE. 29 29 */ 30 30 31 31 32 /********************************************************************************************************************************* -
trunk/src/VBox/Runtime/r3/netbsd/rtProcInitExePath-netbsd.cpp
r63190 r63549 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #define LOG_GROUP RTLOGGROUP_PROCESS 31 32 #include <sys/param.h> -
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r63052 r63549 99 99 ts.tv_nsec = 0; 100 100 } 101 101 102 102 nanosleep(&delta, &remaining); 103 103
Note:
See TracChangeset
for help on using the changeset viewer.