Postfix3.3.1
マクロ定義 | 型定義 | 関数
msg_output.h ファイル
#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.h30 行目に定義があります。

#define MSG_FATAL   3 /* software error (fatal) */

msg_output.h31 行目に定義があります。

#define MSG_INFO   0 /* informative */

msg_output.h28 行目に定義があります。

#define MSG_LAST   4 /* highest-numbered severity level */

msg_output.h34 行目に定義があります。

#define MSG_PANIC   4 /* software error (fatal) */

msg_output.h32 行目に定義があります。

#define MSG_WARN   1 /* warning (non-fatal) */

msg_output.h29 行目に定義があります。

型定義詳解

typedef void(* MSG_OUTPUT_FN) (int, const char *)

msg_output.h22 行目に定義があります。

関数詳解

void msg_output ( MSG_OUTPUT_FN  )

msg_output.c115 行目に定義があります。

void msg_text ( int  ,
const char *   
)

msg_output.c168 行目に定義があります。

void const char void msg_vprintf ( int  ,
const char *  ,
va_list   
)

msg_output.c149 行目に定義があります。

void PRINTFLIKE ( ,
 
)