Вам нужно будет включить следующие заголовки (лучше в предварительно скомпилированные заголовки, такие как stdafx.h / cpp)
#include <afx.h>
#include <afxwin.h> // MFC core and standard components
Вы также должны инициализировать инфраструктуру MFC, вызвав:
// initialize MFC and print and error on failure
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
_tcerr << _T("Fatal Error: MFC initialization failed") << endl;
}
Надеюсь, это поможет.