mmmd_error_info_t

Information on the last session error.

Synopsis:

#include <mm/md.h>
typedef struct mmmd_error_info {
    mmmd_errcode_t code;
    int64_t extended_code;
    char extended_type[16];
    char extended_msg[256];
} mmmd_error_info_t;

Data:

mmmd_errcode_t code
The numeric error code.
int64_t extended_code
The numeric extended error code.
char extended_type
A string containing the extended error type.
char extended_msg
An extended error message.

Library:

libmd

Description:

The mmmd_error_info_t structure describes errors that occurred during a metadata-extraction session.

Note: This structure may change between libmd releases.