コード例 #1
0
        /// <summary>
        /// Create a source that is associated with a trace file and potentially one
        /// or more plugins which all think they are capable of interpreting trace-based
        /// content.
        /// </summary>
        public static CIEngineSource NewTrace(CIEngine aEngine, CFFSource[] aEntries)
        {
            CIEngineSource ret = new CIEngineSource(aEngine, aEntries);

            return(ret);
        }
コード例 #2
0
        /// <summary>
        /// Create a source that is linked with a single crash file format plugin
        /// </summary>
        public static CIEngineSource NewNative(CIEngine aEngine, CFFSource aEntry)
        {
            CIEngineSource ret = new CIEngineSource(aEngine, aEntry);

            return(ret);
        }