Windows2003-3790/inetcore/connectionwizard/icwhelp/dialerr.cpp
2020-09-30 16:53:55 +02:00

17 lines
459 B
C++

// DialErr.cpp : Implementation of CDialErr
#include "stdafx.h"
#include "icwhelp.h"
#include "DialErr.h"
/////////////////////////////////////////////////////////////////////////////
// CDialErr
HRESULT CDialErr::OnDraw(ATL_DRAWINFO& di)
{
RECT& rc = *(RECT*)di.prcBounds;
Rectangle(di.hdcDraw, rc.left, rc.top, rc.right, rc.bottom);
DrawText(di.hdcDraw, _T("ATL 2.0"), -1, &rc, DT_CENTER | DT_VCENTER | DT_SINGLELINE);
return S_OK;
}