Changeset 83794 in vbox for trunk/src/VBox/Main/src-server
- 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
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r82968 r83794 26 26 27 27 #include <VBox/version.h> 28 #include <revision-generated.h> /* VBOX_SVN_REV - PCH prevents putting it in DEFS. */ 28 29 29 30 #include "ApplianceImpl.h" -
trunk/src/VBox/Main/src-server/HostDnsService.cpp
r82968 r83794 32 32 #include <algorithm> 33 33 #include <set> 34 #include < string>34 #include <iprt/sanitized/string> 35 35 #include "HostDnsService.h" 36 36 -
trunk/src/VBox/Main/src-server/HostDnsServiceResolvConf.cpp
r82968 r83794 39 39 #include <VBox/log.h> 40 40 41 #include < string>41 #include <iprt/sanitized/string> 42 42 43 43 #include "HostDnsService.h" -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r82968 r83794 164 164 165 165 #include <algorithm> 166 #include < string>166 #include <iprt/sanitized/string> 167 167 #include <vector> 168 168 … … 646 646 { 647 647 Bstr bstrValue; 648 HRESULThrc = m->pParent->GetExtraData(aGlobalExtraDataKeys[i], bstrValue.asOutParam());648 hrc = m->pParent->GetExtraData(aGlobalExtraDataKeys[i], bstrValue.asOutParam()); 649 649 if (hrc != S_OK) 650 650 continue; -
trunk/src/VBox/Main/src-server/HostNetworkInterfaceImpl.cpp
r82968 r83794 161 161 { 162 162 AssertReturn(mVirtualBox != NULL, E_POINTER); 163 return mVirtualBox->SetExtraData(BstrFmt("HostOnly/{%RTuuid}/%s", mGuid , szParamName).raw(), Bstr(strValue).raw());163 return mVirtualBox->SetExtraData(BstrFmt("HostOnly/{%RTuuid}/%s", mGuid.raw(), szParamName).raw(), Bstr(strValue).raw()); 164 164 } 165 165 … … 167 167 { 168 168 AssertReturn(mVirtualBox != NULL, E_POINTER); 169 return mVirtualBox->SetExtraData(BstrFmt("HostOnly/{%RTuuid}/%s", mGuid , szParamName).raw(), NULL);169 return mVirtualBox->SetExtraData(BstrFmt("HostOnly/{%RTuuid}/%s", mGuid.raw(), szParamName).raw(), NULL); 170 170 } 171 171 … … 204 204 return false; /* Trigger config update, which will fail with proper return code */ 205 205 Bstr tmpName; 206 mVirtualBox->GetExtraData(BstrFmt("HostOnly/{%RTuuid}/Name", mGuid ).raw(), tmpName.asOutParam());206 mVirtualBox->GetExtraData(BstrFmt("HostOnly/{%RTuuid}/Name", mGuid.raw()).raw(), tmpName.asOutParam()); 207 207 return (tmpName.isNotEmpty() && tmpName == mInterfaceName); 208 208 -
trunk/src/VBox/Main/src-server/USBIdDatabaseGenerator.cpp
r82972 r83794 24 24 #include <algorithm> 25 25 #include <map> 26 #include < string>26 #include <iprt/sanitized/string> 27 27 #include <vector> 28 28 -
trunk/src/VBox/Main/src-server/darwin/HostDnsServiceDarwin.cpp
r82968 r83794 28 28 #include <SystemConfiguration/SCDynamicStore.h> 29 29 30 #include < string>30 #include <iprt/sanitized/string> 31 31 #include <vector> 32 32 #include "../HostDnsService.h" -
trunk/src/VBox/Main/src-server/linux/HostDnsServiceLinux.cpp
r82968 r83794 44 44 #include <sys/socket.h> 45 45 46 #include < string>46 #include <iprt/sanitized/string> 47 47 #include <vector> 48 48 #include "../HostDnsService.h" -
trunk/src/VBox/Main/src-server/solaris/NetIf-solaris.cpp
r82968 r83794 36 36 37 37 #include <map> 38 #include < string>38 #include <iprt/sanitized/string> 39 39 #include <fcntl.h> 40 40 #include <unistd.h> -
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.