CListCtrl如何赋值给线程里的CListCtrl

CListCtrl怎么赋值给线程里的CListCtrl
typedef struct ThreadParameter_s{
 CListCtrl t_list;
}ThreadParameter;

class CMy111View : public CFormView
{
public:
  CListCtrl m_list;

....

函数中:

ThreadParameter tp;

 tp.t_list=m_list;  

上述中的等号怎么实现?或者

怎么才能把m_list中的ITEM使用到tp.t_list中



------解决方案--------------------
u使用指针
------解决方案--------------------
typedef struct ThreadParameter_s{
 CListCtrl* t_pList;
}ThreadParameter;


class CMy111View : public CFormView
{
public:
CListCtrl m_list;

....

函数中:

ThreadParameter tp;

 tp.t_pList=&m_list;