MCPcopy Create free account
hub / github.com/Kitware/CMake / GetIDESolutionFullName

Function GetIDESolutionFullName

Source/cmCallVisualStudioMacro.cxx:235–247  ·  view source on GitHub ↗

Get the FullName property from the Solution object, given the IDE object

Source from the content-addressed store, hash-verified

233
234//! Get the FullName property from the Solution object, given the IDE object
235HRESULT GetIDESolutionFullName(IDispatch* vsIDE, std::string& fullName)
236{
237 IDispatchPtr vsSolution;
238 HRESULT hr = GetSolutionObject(vsIDE, vsSolution);
239 ReportHRESULT(hr, "GetSolutionObject");
240
241 if (SUCCEEDED(hr)) {
242 GetSolutionFullName(vsSolution, fullName);
243 ReportHRESULT(hr, "GetSolutionFullName");
244 }
245
246 return hr;
247}
248
249//! Get all running objects from the Windows running object table.
250//! Save them in a map by their display names.

Callers 1

Calls 2

GetSolutionObjectFunction · 0.85
GetSolutionFullNameFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…