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