Windows2003-3790/inetcore/connectionwizard/icwhelp/dialerr.cpp

17 lines
459 B
C++
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
// 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;
}