Example #1
0
        public ResultManager(string file, string frameInfoFile, ResultManagerConfig rmcfg, string[] colnames)
        {
            string scsColNames = colnames != null?string.Join(";", colnames) : "";

            if (frameInfoFile == null)
            {
                frameInfoFile = "";
            }
            rmcfg.numFrameInfoColumns = colnames == null ? 0 : colnames.Length;
            inst       = QTrkDLL.RMCreate(file, frameInfoFile, ref rmcfg, scsColNames);
            this.rmcfg = rmcfg;
        }
Example #2
0
 public static extern void RMGetConfig(IntPtr rm, out ResultManagerConfig cfg);
Example #3
0
 public static extern IntPtr RMCreate(string file, string frameinfo, [In] ref ResultManagerConfig cfg, string semicolonSeparatedNames);