qvm_outlbl

Label types

Synopsis:

#include <qvm/outpipe.h>
enum qvm_outlbl {
    QVM_OUTAL_NONE,
    QVM_OUTAL_INTERNAL,
    QVM_OUTAL_FATAL,
    QVM_OUTAL_ERROR,
    QVM_OUTAL_WARN,
    QVM_OUTAL_INFO,
    QVM_OUTAL_VERBOSE,
    QVM_OUTAL_DEBUG,
    QVM_OUT_NUM_LBLS
};

Data:

QVM_OUTAL_NONE

Internal use only to indicate that no label is specified.

QVM_OUTAL_INTERNAL

Internal error; will generate a core file.

QVM_OUTAL_FATAL

Fatal error.

QVM_OUTAL_ERROR

Error.

QVM_OUTAL_WARN

Warning.

QVM_OUTAL_INFO

Information.

QVM_OUTAL_VERBOSE

Verbose output.

QVM_OUTAL_DEBUG

Debug output (very verbose).

QVM_OUT_NUM_LBLS

Internal use only, to calculate how many members in total.

Library:

Provided by qvm; no external library is required.