The Error callback that can be registered by cvRedirectError

C# | Visual Basic | Visual C++ |
public delegate int CvErrorCallback( int status, string funcName, string errMsg, string fileName, int line, IntPtr userData )

- status (Int32)
- The numeric code for error status
- funcName (String)
- The source file name where error is encountered
- errMsg (String)
- A description of the error
- fileName (String)
- The source file name where error is encountered
- line (Int32)
- The line number in the souce where error is encountered
- userData (IntPtr)
- Arbitrary pointer that is transparetly passed to the error handler.
