Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / ch / chfhandmade / cvGet2D.chf
diff --git a/interfaces/ch/chfhandmade/cvGet2D.chf b/interfaces/ch/chfhandmade/cvGet2D.chf
deleted file mode 100644 (file)
index 0bcfef8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <cv.h>
-#include <dlfcn.h>
-
-CvScalar cvGet2D(const CvArr* arr, int idx1, int idx2) {
-    void *fptr;
-    CvScalar retval, *temp;
-
-    fptr = dlsym(_Chcv_handle, "cvGet2D_chdl");
-    if(fptr == NULL) {
-        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
-        return retval;
-    }
-    dlrunfun(fptr, &temp,cvGet2D, arr, idx1, idx2);
-    retval = *temp;
-    free(temp);
-    return retval;
-}