]> git.sesse.net Git - vlc/blob - include/intf_msg.h
Encore un commit venu tout droit des abysses de l'enfer, d�sol� pour
[vlc] / include / intf_msg.h
1 /*****************************************************************************
2  * intf_msg.h: messages interface
3  * This library provides basic functions for threads to interact with user
4  * interface, such as message output. See config.h for output configuration.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VideoLAN
7  *
8  * Authors:
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public
21  * License along with this program; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * intf_DbgMsg macros and functions
28  *****************************************************************************
29  * The intf_DbgMsg* functions are defined as macro to be able to use the
30  * compiler extensions and print the file, the function and the line number
31  * from which they have been called. They call _intf_DbgMsg*() functions after
32  * having added debugging informations.
33  * Outside DEBUG mode, intf_DbgMsg* functions do nothing.
34  *****************************************************************************/
35 #ifdef DEBUG
36
37 /* DEBUG mode */
38 void    _intf_DbgMsg        ( char *psz_file, char *psz_function, int i_line,
39                               char *psz_format, ... );
40 void    _intf_DbgMsgImm     ( char *psz_file, char *psz_function, int i_line,
41                               char *psz_format, ... );
42
43 #define intf_DbgMsg( format, args... ) \
44     _intf_DbgMsg( __FILE__, __FUNCTION__, __LINE__, format, ## args )
45 #define intf_DbgMsgImm( format, args... ) \
46     _intf_DbgMsg( __FILE__, __FUNCTION__, __LINE__, format, ## args )
47
48 #else
49
50 /* Non-DEBUG mode */
51 #define intf_DbgMsg( format, args... )
52 #define intf_DbgMsgImm( format, args...)
53
54 #endif
55
56 /*****************************************************************************
57  * intf_FlushMsg macro and function
58  *****************************************************************************
59  * intf_FlushMsg is a function which flushs message queue and print all messages
60  * remaining. It is only usefull if INTF_MSG_QUEUE is defined. In this case, it
61  * is really a function. In the other case, it is a macro doing nothing.
62  *****************************************************************************/
63 #ifdef INTF_MSG_QUEUE
64
65 /* Message queue mode */
66 void    intf_FlushMsg       ( void );
67
68 #else
69
70 /* Direct mode */
71 #define intf_FlushMsg()     ;
72
73 #endif
74
75 /*****************************************************************************
76  * Prototypes
77  *****************************************************************************/
78 p_intf_msg_t intf_MsgCreate      ( void );
79 void         intf_MsgDestroy     ( void );
80
81 void         intf_Msg            ( char *psz_format, ... );
82 void         intf_ErrMsg         ( char *psz_format, ... );
83 void         intf_IntfMsg        ( char *psz_format, ... );
84
85 void         intf_MsgImm         ( char *psz_format, ... );
86 void         intf_ErrMsgImm      ( char *psz_format, ... );