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