Postfix3.3.1
|
#include <stdarg.h>
マクロ定義 | |
#define | MSG_INFO 0 /* informative */ |
#define | MSG_WARN 1 /* warning (non-fatal) */ |
#define | MSG_ERROR 2 /* error (fatal) */ |
#define | MSG_FATAL 3 /* software error (fatal) */ |
#define | MSG_PANIC 4 /* software error (fatal) */ |
#define | MSG_LAST 4 /* highest-numbered severity level */ |
型定義 | |
typedef void(* | MSG_OUTPUT_FN) (int, const char *) |
関数 | |
void | msg_output (MSG_OUTPUT_FN) |
void | PRINTFLIKE (2, 3) msg_printf(int |
void const char void | msg_vprintf (int, const char *, va_list) |
void | msg_text (int, const char *) |
#define MSG_ERROR 2 /* error (fatal) */ |
msg_output.h の 30 行目に定義があります。
#define MSG_FATAL 3 /* software error (fatal) */ |
msg_output.h の 31 行目に定義があります。
#define MSG_INFO 0 /* informative */ |
msg_output.h の 28 行目に定義があります。
#define MSG_LAST 4 /* highest-numbered severity level */ |
msg_output.h の 34 行目に定義があります。
#define MSG_PANIC 4 /* software error (fatal) */ |
msg_output.h の 32 行目に定義があります。
#define MSG_WARN 1 /* warning (non-fatal) */ |
msg_output.h の 29 行目に定義があります。
typedef void(* MSG_OUTPUT_FN) (int, const char *) |
msg_output.h の 22 行目に定義があります。
void msg_output | ( | MSG_OUTPUT_FN | ) |
msg_output.c の 115 行目に定義があります。
void msg_text | ( | int | , |
const char * | |||
) |
msg_output.c の 168 行目に定義があります。
void const char void msg_vprintf | ( | int | , |
const char * | , | ||
va_list | |||
) |
msg_output.c の 149 行目に定義があります。
void PRINTFLIKE | ( | 2 | , |
3 | |||
) |