aboutsummaryrefslogtreecommitdiff
path: root/src/parsec_server/include/sys_msg_sv.h
blob: 9a7affa9a50bf4f10af16c5520c7c1c203b5232c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * PARSEC HEADER: sys_msg_sv.h
 */

#ifndef _SYS_MSG_SV_H_
#define _SYS_MSG_SV_H_

// ----------------------------------------------------------------------------
// SYSTEM SUBSYSTEM (SYS) MESSAGE OUTPUT                                      -
// ----------------------------------------------------------------------------

int		SYSs_MsgOut				( const char *format, ... );
int		SYSs_MsgPut				( const char *format, ... );
int		SYS_WriteLogFileMessage	( const char *format, ... );

// wrappers

#define MSGOUT			SYSs_MsgOut
#define MSGPUT			SYSs_MsgPut

#define DBGOUT			SYSs_MsgOut
#define DMSGOUT			SYSs_MsgOut

#undef LOGOUT
#define LOGOUT(x)		SYS_WriteLogFileMessage x

#endif // _SYS_MSG_SV_H_