Beispiel #1
0
        public static QTrkComputedConfig FromConfig(QTrkConfig cfg)
        {
            QTrkComputedConfig cc;

            QTrkDLL.QTrkGetComputedConfig(ref cfg, out cc);
            return(cc);
        }
Beispiel #2
0
        public QTrkInstance(QTrkConfig config)
        {
            if (!IsDLLSelected)
            {
                throw new ApplicationException("Use QTrkInstance::SelectDLL before creating an instance");
            }

            inst = QTrkDLL.QTrkCreateInstance(ref config);
            QTrkDLL.QTrkGetComputedConfig(ref config, out cc);
        }
Beispiel #3
0
 public static extern void QTrkGetComputedConfig([In] ref QTrkConfig cfg, [Out] out QTrkComputedConfig cc);
Beispiel #4
0
 public static extern IntPtr QTrkCreateInstance([In] ref QTrkConfig cfg);
Beispiel #5
0
 public static extern void QTrkGetDefaultConfig([Out] out QTrkConfig cfg);