
CImageList linking problem
I'm trying to get an image list working for a Tree View in a dialog. The
following line compiles OK but gets a link error.
...
#include <atlcontrols.h>
using namespace ATLControls;
...
CImageList m_TVOImage;
m_TVOImage.Create(IDB_TVO_BITMAPS, 16, 0, 4, (COLORREF)0xFFFFFF);
...
Link Error is
BCiTool_Services error LNK2019: unresolved external symbol
ATLControls::CImageList::Create(int,int,unsigned int,int,int)"
Am I missing a header file somewhere?
Any help appreciated. Thanks in advance.
David Bell