public static List <VehicleScapeAPI.DAQ> GetDAQs()
        {
            List <VehicleScapeAPI.DAQ> daqList = new List <VehicleScapeAPI.DAQ>();

            if (!Initialized)
            {
                return(daqList);
            }

            int daqCount = 0;

            VehicleScapeAPI.GetDAQs(IntPtr.Zero, ref daqCount);
            if (daqCount == 0)
            {
                return(daqList);
            }
            VehicleScapeAPI.DAQ[] daqs = new VehicleScapeAPI.DAQ[daqCount];
            VehicleScapeAPI.GetDAQs(daqs, ref daqCount);
            daqList.AddRange(daqs);
            return(daqList);
        }