Changeset 83794 in vbox for trunk/src/VBox/Main/src-server/win
- Timestamp:
- Apr 18, 2020 1:25:05 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137320
- Location:
- trunk/src/VBox/Main/src-server/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/win/HostDnsServiceWin.cpp
r82968 r83794 38 38 39 39 #include <algorithm> 40 #include < sstream>41 #include < string>40 #include <iprt/sanitized/sstream> 41 #include <iprt/sanitized/string> 42 42 #include <vector> 43 43 -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r82968 r83794 1910 1910 { 1911 1911 std::list<BoundAdapter> boundAdapters; 1912 HRESULThr = netIfGetBoundAdapters(boundAdapters);1912 hr = netIfGetBoundAdapters(boundAdapters); 1913 1913 #if 0 1914 1914 if (hr != S_OK) -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r82968 r83794 185 185 if (hEventShutdown == NULL) 186 186 return false; 187 DWORD dwThreadID;188 HANDLE h = CreateThread(NULL, 0, MonitorProc, this, 0, & dwThreadID);187 DWORD idThreadIgnored; 188 HANDLE h = CreateThread(NULL, 0, MonitorProc, this, 0, &idThreadIgnored); 189 189 return (h != NULL); 190 190 } … … 240 240 241 241 private: 242 HRESULT VirtualBoxClassFactory::i_registerWithSds(IUnknown **ppOtherVirtualBox);243 void VirtualBoxClassFactory::i_deregisterWithSds(void);242 HRESULT i_registerWithSds(IUnknown **ppOtherVirtualBox); 243 void i_deregisterWithSds(void); 244 244 245 245 friend VBoxSVCRegistration;
Note:
See TracChangeset
for help on using the changeset viewer.