コード例 #1
0
        /**
         * Get the current pressure switch value
         * @return true if the pressure is low by reading the pressure switch that is
         *         plugged into the PCM
         */
        public bool GetPressureSwitchValue()
        {
            bool retval;

            HandleErr(m_impl.GetPressureSwitchState(out retval));
            return(retval);
        }