"MFC is not a language; it is a native (unmanaged) class library which is a thin wrapper around the Win32 API."
now see these header function:
void CMyAxUICtrl::OnDraw(CDC* pdc, const CRect& rcBounds, const CRect& /*rcInvalid*/)
i belive the CMyAxUICtrl is the instance\object name but it's used outside of main function: can i do these in C++?
(like you see: the OnDraw is used, but imagine that the programmer don't use it)
(sorry if my question is confused... but i'm trying)