DLL中用到CList的问题
如果我想用应该怎么办啊!
像这样用怎么样啊!
把指针传进去怎么样啊!
extern "C" _declspec(dllexport) int GetMatchInfo(int &rows,CmptrList *pList)
{
recMatch_INFO* pInfo = (recMatch_INFO*)malloc(sizeof(recMatch_INFO));
pList->AddTail(pInfo);
recMatch_INFO *pMatch = (recMatch_INFO *)pList->GetAt(pList->FindIndex(0)); //这里正确
}

