Get the FullName property from the Solution object, given the IDE object
| 233 | |
| 234 | //! Get the FullName property from the Solution object, given the IDE object |
| 235 | HRESULT 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. |
no test coverage detected
searching dependent graphs…