예제 #1
0
        public static int regTestSetup(int argc, string argv, out L_RegParams prp)
        {
            var strPtr = new string[] { argv };
            var ret    = Native.DllImports.regTestSetup(argc, strPtr, out IntPtr prpPtr);

            if (prpPtr != null)
            {
                prp = new L_RegParams(prpPtr);
            }
            else
            {
                prp = null;
            }
            return(ret);
        }
예제 #2
0
 public static int regTestSetup(int argc, IntPtr argv, out L_RegParams prp)
 {
     throw new NotImplementedException();
 }
예제 #3
0
 public static IntPtr regTestGenLocalFilename(this L_RegParams rp, int index, int format)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public static int regTestWritePixAndCheck(this L_RegParams rp, Pix pix, int format)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public static int regTestCompareFiles(this L_RegParams rp, int index1, int index2)
 {
     throw new NotImplementedException();
 }
예제 #6
0
 public static int regTestCheckFile(this L_RegParams rp, string localname)
 {
     throw new NotImplementedException();
 }
예제 #7
0
 public static int regTestCompareSimilarPix(this L_RegParams rp, Pix pix1, Pix pix2, int mindiff, float maxfract, int printstats)
 {
     throw new NotImplementedException();
 }
예제 #8
0
 public static int regTestComparePix(this L_RegParams rp, Pix pix1, Pix pix2)
 {
     throw new NotImplementedException();
 }
예제 #9
0
 public static int regTestCompareStrings(this L_RegParams rp, IntPtr string1, IntPtr bytes1, IntPtr string2, IntPtr bytes2)
 {
     throw new NotImplementedException();
 }
예제 #10
0
 public static int regTestCompareValues(this L_RegParams rp, float val1, float val2, float delta)
 {
     throw new NotImplementedException();
 }
예제 #11
0
 public static int regTestCleanup(this L_RegParams rp)
 {
     throw new NotImplementedException();
 }
예제 #12
0
 public static int regTestWritePixAndCheck(this L_RegParams rp, Pix pix, ImageFileFormatTypes format)
 {
     return(Native.DllImports.regTestWritePixAndCheck((HandleRef)rp, (HandleRef)pix, (int)format));
 }
예제 #13
0
 public static int regTestCleanup(this L_RegParams rp)
 {
     return(Native.DllImports.regTestCleanup((HandleRef)rp));
 }