示例#1
0
        /* Specific system targetted scans */

        public static DiscInspector ScanPSX(string cuePath)
        {
            var inter = new Interrogator(cuePath, true);
            var res   = inter.Start(DetectedDiscType.SonyPSX);

            // run the cue routine
            res = CueHandler.CueRoutine(res, cuePath, true);

            return(res);
        }
示例#2
0
        /// <summary>
        /// Return a DiscInspector Object
        /// IntensiveScan will return more matches but may take longer
        /// </summary>
        /// <param name="cuePath"></param>
        /// <param name="IntensiveScan"></param>
        public static DiscInspector ScanDisc(string cuePath, bool IntensiveScan)
        {
            var inter = new Interrogator(cuePath, IntensiveScan);
            var res   = inter.Start();

            // run the cue routine
            res = CueHandler.CueRoutine(res, cuePath, IntensiveScan);

            return(res);
        }