typedef struct  {    int mesgNum;                                       
    char msg[10];             
}MESSAGE;接口定义:
int Interface::Check(INPUT *pInput,MESSAGEEX *pMessage, CString& strEooroInf);调用:
MESSAGEEX* m_outputMsg;
memset( m_outputMsg , 0x00, sizeof(MESSAGEEX));
m_pSPCModuleInterface->Check(pInput,m_outputMsg, strError);********************************现接口定义为:
int Interface::Check(INPUT *pInput,CStringArray &strMessageArray, CString& strEooroInf)
结构定义为:
typedef vector<string> STDMSGARRAY;
typedef struct  {
int mesgNum;
STDMSGARRAY strMsgArray; 
}MESSAGEEX;
接口定义是不能变得,请问我怎么调用新的接口函数呢?
是不是结构还要改变,怎么变。