MCPcopy Create free account
hub / github.com/LegacyUpdate/LegacyUpdate / GetMiscStatus

Method GetMiscStatus

LegacyUpdate/ProgressBarControl.cpp:199–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197}
198
199STDMETHODIMP CProgressBarControl_IOleObject::GetMiscStatus(DWORD dwAspect, DWORD *pdwStatus) {
200 if (pdwStatus == NULL) {
201 return E_POINTER;
202 }
203
204 if (dwAspect == DVASPECT_CONTENT) {
205 *pdwStatus = PROGRESSBARCONTROL_MISCSTATUS;
206 return S_OK;
207 }
208
209 *pdwStatus = 0;
210 return S_OK;
211}
212
213STDMETHODIMP CProgressBarControl_IOleObject::Close(DWORD dwSaveOption) {
214 m_pParent->DestroyControlWindow();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected