Changeset 76592 in vbox for trunk/src/VBox/Main/src-server/win
- Timestamp:
- Jan 1, 2019 8:13:07 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127895
- Location:
- trunk/src/VBox/Main/src-server/win
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/win/HostPowerWin.cpp
r76553 r76592 1 1 /* $Id$ */ 2 2 /** @file 3 *4 3 * VirtualBox interface to host's power notification service 5 4 */ … … 21 20 * Header Files * 22 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_MAIN_HOST 23 23 #include <iprt/win/windows.h> 24 24 /* Some SDK versions lack the extern "C" and thus cause linking failures. … … 31 31 #include <iprt/errcore.h> 32 32 #include "HostPower.h" 33 #include "Logging .h"33 #include "LoggingNew.h" 34 34 35 35 -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r76553 r76592 21 21 * Header Files * 22 22 *********************************************************************************************************************************/ 23 #define LOG_GROUP LOG_GROUP_MAIN 23 #define LOG_GROUP LOG_GROUP_MAIN_HOST 24 24 25 25 #define NETIF_WITHOUT_NETCFG … … 42 42 #include <iprt/win/ntddndis.h> 43 43 44 #include "Logging .h"44 #include "LoggingNew.h" 45 45 #include "HostNetworkInterfaceImpl.h" 46 46 #include "ProgressImpl.h" -
trunk/src/VBox/Main/src-server/win/PerformanceWin.cpp
r76553 r76592 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VBox Windows-specific Performance Classes implementation. 6 4 */ … … 18 16 */ 19 17 18 #define LOG_GROUP LOG_GROUP_MAIN_PERFORMANCECOLLECTOR 20 19 #ifndef _WIN32_WINNT 21 # define _WIN32_WINNT 0x050020 # define _WIN32_WINNT 0x0500 22 21 #else /* !_WIN32_WINNT */ 23 # if (_WIN32_WINNT < 0x0500)24 # error Win XP or later required!25 # endif /* _WIN32_WINNT < 0x0500 */22 # if (_WIN32_WINNT < 0x0500) 23 # error Win XP or later required! 24 # endif /* _WIN32_WINNT < 0x0500 */ 26 25 #endif /* !_WIN32_WINNT */ 27 26 … … 41 40 #include <map> 42 41 43 #include "Logging .h"42 #include "LoggingNew.h" 44 43 #include "Performance.h" 45 44 -
trunk/src/VBox/Main/src-server/win/USBProxyBackendWindows.cpp
r76553 r76592 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_MAIN_USBPROXYBACKEND 22 23 #include "USBProxyBackend.h" 23 #include "Logging .h"24 #include "LoggingNew.h" 24 25 25 26 #include <VBox/usb.h> -
trunk/src/VBox/Main/src-server/win/svchlp.cpp
r76553 r76592 16 16 */ 17 17 18 #define LOG_GROUP LOG_GROUP_MAIN 18 19 #include "svchlp.h" 19 20 20 21 //#include "HostImpl.h" 21 #include "Logging .h"22 #include "LoggingNew.h" 22 23 23 24 #include <iprt/errcore.h> 24 25 25 int netIfNetworkInterfaceHelperServer (SVCHlpClient *aClient, 26 SVCHlpMsg::Code aMsgCode); 26 int netIfNetworkInterfaceHelperServer(SVCHlpClient *aClient, SVCHlpMsg::Code aMsgCode); 27 27 28 28 using namespace com; -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r76553 r76592 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 # include <iprt/win/windows.h> 22 #define LOG_GROUP LOG_GROUP_MAIN_VBOXSVC 23 #include <iprt/win/windows.h> 23 24 #ifdef DEBUG_bird 24 25 # include <RpcAsync.h> … … 30 31 31 32 #include "VirtualBoxImpl.h" 32 #include "Logging .h"33 #include "LoggingNew.h" 33 34 34 35 #include "svchlp.h"
Note:
See TracChangeset
for help on using the changeset viewer.