Move the sources to trunk
[opencv] / interfaces / ch / chfhandmade / cvSetPreprocessFuncWin32.chf
1 void cvSetPreprocessFuncWin32(CvWin32WindowCallback on_preprocess) {
2     void *fptr;
3
4     fptr = dlsym(_Chhighgui_handle, "cvSetPreprocessFuncWin32_chdl");
5     if(fptr == NULL) {
6         fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
7         return;
8     }
9     dlrunfun(fptr, NULL, cvSetPreprocessFuncWin32, on_preprocess);
10 }