Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / ch / chfhandmade / cvcamSetProperty.chf
diff --git a/interfaces/ch/chfhandmade/cvcamSetProperty.chf b/interfaces/ch/chfhandmade/cvcamSetProperty.chf
deleted file mode 100644 (file)
index 72973ea..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-int cvcamSetProperty(int camera, char* property, void* value) {
-    void *fptr;
-    int retval;
-
-    fptr = dlsym(_Chcvcam_handle, "cvcamSetProperty_chdl");
-    if(fptr == NULL) {
-        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
-        return -1;
-    }
-    dlrunfun(fptr, &retval, cvcamSetProperty, camera, property, value);
-    return retval;
-}