Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / ch / chfhandmade / cvSetMouseCallback.chf
diff --git a/interfaces/ch/chfhandmade/cvSetMouseCallback.chf b/interfaces/ch/chfhandmade/cvSetMouseCallback.chf
deleted file mode 100644 (file)
index c1c380b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-void cvSetMouseCallback(char* window_name, CvMouseCallback on_mouse) {
-    void *fptr;
-
-    fptr = dlsym(_Chhighgui_handle, "cvSetMouseCallback_chdl");
-    if(fptr == NULL) {
-        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
-        return;
-    }
-    dlrunfun(fptr, NULL, cvSetMouseCallback, window_name, on_mouse);
-}