Example #1
0
 public J2534Err PassThruStartMsgFilter(int channelid, FilterType filterType, IntPtr maskMsg,
                                        IntPtr patternMsg, IntPtr flowControlMsg, ref int filterId)
 {
     return
         ((J2534Err)
          m_wrapper.StartMsgFilter(channelid, (int)filterType, maskMsg, patternMsg,
                                   flowControlMsg, ref filterId));
 }
Example #2
0
 public J2534Err PassThruStartMsgFilter(int channelid, FilterType filterType, IntPtr maskMsg,
                                        IntPtr patternMsg, IntPtr flowControlMsg, ref int filterId)
 {
     if (!IsLoaded)
     {
         return(J2534Err.ERR_DLL_NOT_LOADED);
     }
     return
         ((J2534Err)
          _wrapper.StartMsgFilter(channelid, (int)filterType, maskMsg, patternMsg,
                                  flowControlMsg, ref filterId));
 }