windows-nt/Source/XPSP1/NT/admin/pchealth/sysinfo/msconfig/control/msconfigctl.cpp

21 lines
466 B
C++
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// MSConfigCtl.cpp : Implementation of CMSConfigCtl
#include "stdafx.h"
#include "Msconfig.h"
#include "MSConfigCtl.h"
#include "pagegeneral.h"
/////////////////////////////////////////////////////////////////////////////
// CMSConfigCtl
STDMETHODIMP CMSConfigCtl::SetParentHWND(DWORD_PTR dwHWND)
{
AFX_MANAGE_STATE(AfxGetStaticModuleState());
if (m_fDoNotRun)
return S_OK;
m_hwndParent = (HWND)dwHWND; // TBD - fix this for 64-bit windows
return S_OK;
}