Example #1
0
 public void GetVisualIndicators(out int nLEDIndicator, out int nLaserIndicator, out int nSimGpsLedIndicator)
 {
     nLEDIndicator       = 0;
     nLaserIndicator     = 0;
     nSimGpsLedIndicator = 0;
     if (this.IsConnected)
     {
         try
         {
             CiteDLL.XX_GetViaualIndicatorSetting(this.CamSerial, out nLEDIndicator, out nLaserIndicator, out nSimGpsLedIndicator);
         }
         catch
         {
         }
     }
 }