Update the changelog
[opencv] / interfaces / ch / chfhandmade / cvcamSetProperty.chf
1 int cvcamSetProperty(int camera, char* property, void* value) {
2     void *fptr;
3     int retval;
4
5     fptr = dlsym(_Chcvcam_handle, "cvcamSetProperty_chdl");
6     if(fptr == NULL) {
7         fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
8         return -1;
9     }
10     dlrunfun(fptr, &retval, cvcamSetProperty, camera, property, value);
11     return retval;
12 }