Error logging

Error logging — Hooks for defining your own log-handling functions

Functions

IptcLog * iptc_log_new ()
IptcLog * iptc_log_new_mem ()
void iptc_log_ref ()
void iptc_log_unref ()
void iptc_log_free ()
const char * iptc_log_code_get_title ()
const char * iptc_log_code_get_message ()
void (*IptcLogFunc) ()
void iptc_log_set_func ()
void iptc_log ()
#define IPTC_LOG_NO_MEMORY()

Types and Values

Description

Functions

iptc_log_new ()

IptcLog *
iptc_log_new (void);

Returns


iptc_log_new_mem ()

IptcLog *
iptc_log_new_mem (IptcMem *Param1);

Returns


iptc_log_ref ()

void
iptc_log_ref (IptcLog *log);


iptc_log_unref ()

void
iptc_log_unref (IptcLog *log);


iptc_log_free ()

void
iptc_log_free (IptcLog *log);


iptc_log_code_get_title ()

const char *
iptc_log_code_get_title (IptcLogCode Param1);

Returns


iptc_log_code_get_message ()

const char *
iptc_log_code_get_message (IptcLogCode Param1);

Returns


IptcLogFunc ()

void
(*IptcLogFunc) (IptcLog *log,
                IptcLogCode Param2,
                const char *domain,
                const char *format,
                va_list args,
                void *data);


iptc_log_set_func ()

void
iptc_log_set_func (IptcLog *log,
                   IptcLogFunc func,
                   void *data);


iptc_log ()

void
iptc_log (IptcLog *log,
          IptcLogCode Param2,
          const char *domain,
          const char *format);


IPTC_LOG_NO_MEMORY()

#define IPTC_LOG_NO_MEMORY(l,d,s) iptc_log (l, IPTC_LOG_CODE_NO_MEMORY, d, "Could not allocate %i byte(s).", s)

Types and Values

IptcLog

typedef struct _IptcLog IptcLog;


enum IptcLogCode

Members

IPTC_LOG_CODE_NONE

   

IPTC_LOG_CODE_DEBUG

   

IPTC_LOG_CODE_NO_MEMORY

   

IPTC_LOG_CODE_CORRUPT_DATA