afxdump

I have a project in Visual Studio Express 2005 and have a mistake on having used afxdump, the code is the following one:
#ifdef _DEBUG
AfxDump < < _T ("Message");
#endif
And the mistake is:
.\prueba4Dlg.cpp (54): mistake C2065: 'afxDump': undeclared identifier
I was using this in evc ++ 4.0 and was not generating mistake. Which it is the problem



Answer this question

afxdump

  • Sukh

    OK, Thank you for answering

  • MikeBarta411

    I am using Visual Studio 2005 Standard Edition and have the same problem.
  • mdelatonow

    All function starting with AFX are MFC functions. The MFC is not part of VC++ Express. You need at least the standard version.

  • afxdump