Пример #1
0
/**
 * \req RS_18_01 Signal watch configuration dialog box
 *
 * Signal watch configuration dialog box
 * lists frames / messages from the loaded database (combo box / list box).
 */
HRESULT CSignalWatch_CAN::SW_ShowAddDelSignalsDlg(CWnd* pParent, CMainEntryList* podMainSubList)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    CSigWatchAddDelDlg odDlg(pParent, podMainSubList);
    return (HRESULT)odDlg.DoModal();
}
HRESULT CBaseSignalWatchImp::SW_ShowAddDelSignalsDlg(CWnd* pParent, void* /*dbCluster*/)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());
    //mDbCluster = (IBMNetWorkGetService*)dbCluster;

    //cluster[LIN].m_nChannelsConfigured;
    CMsgSignalSelect odDlg(mDbCluster, mBusType, pParent, m_mapMsgIDtoSignallst, m_omCritSecSW);

    //WndPlace=odDlg.wpPosition();

    int nRet = odDlg.DoModal();
    return (HRESULT)nRet;
}
Пример #3
0
/**
* \req RS_18_01 Signal watch configuration dialog box
*
* Signal watch configuration dialog box
* lists frames / messages from the loaded database (combo box / list box).
*/
HRESULT CSignalWatch_LIN::SW_ShowAddDelSignalsDlg(CWnd* pParent, void* m_ouCluster)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    //cluster[LIN].m_nChannelsConfigured;
    CMsgSignalSelect odDlg(cluster, pParent, m_mapMsgIDtoSignallst);

    //WndPlace=odDlg.wpPosition();

    int nRet = odDlg.DoModal();
    return (HRESULT)nRet;

}