Exemple #1
0
 public bool LoadLibrary(J2534Device device)
 {
     try {
         _device   = device;
         _wrapper  = new J2534DllWrapper();
         _IsLoaded = _wrapper.LoadJ2534Library(_device.FunctionLibrary);
         return(_IsLoaded);
     }
     catch (Exception)
     {
         _IsLoaded = false;
         return(_IsLoaded);
     }
 }
Exemple #2
0
 public bool LoadLibrary(J2534Device device)
 {
     m_device  = device;
     m_wrapper = new J2534DllWrapper();
     return(m_wrapper.LoadJ2534Library(m_device.FunctionLibrary));
 }
Exemple #3
0
 public bool LoadLibrary(J2534Device device)
 {
     m_device = device;
     m_wrapper = new J2534DllWrapper();
     return m_wrapper.LoadJ2534Library(m_device.FunctionLibrary);
 }