1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*****************************************************************************
- * HError.h
- *****************************************************************************
- *
- * Project: HALCON/libhalcon
- * Description: Error messages
- *
- * (c) 1996-2020 by MVTec Software GmbH
- * www.mvtec.com
- *
- *****************************************************************************
- *
- *
- */
- #ifndef HERROR_H
- #define HERROR_H
- #if defined(__cplusplus)
- extern "C" {
- #endif
- extern HLibExport Herror HSetExtendedErrorInfo(Hproc_handle ph,
- INT4_8 error_code,
- char const* error_message);
- extern HLibExport Herror HSetExtendedErrorInfoF(Hproc_handle ph,
- INT4_8 error_code,
- char const* error_message,
- ...);
- extern HLibExport Herror HClearExtendedErrorInfo(Hproc_handle ph);
- extern HLibExport Herror HSetErrText(char* text);
- extern HLibExport Herror HErrText(Herror message, char* err_text);
- extern HLibExport Herror HErrorMessage(Herror message, char* msg_text);
- #if defined(__cplusplus)
- }
- #endif
- #endif
|