]> git.sesse.net Git - vlc/blobdiff - include/intf_msg.h
. add check for MMX EXT extensions, which doesn't work, which is a good
[vlc] / include / intf_msg.h
index 5b44f17c71b3c2deb5e04ae7d6e97e74cdf5e9fb..82d38e45fe52a61ce9111e817bc1873d685e1e10 100644 (file)
@@ -1,9 +1,25 @@
 /*****************************************************************************
  * intf_msg.h: messages interface
- * (c)1999 VideoLAN
- *****************************************************************************
  * This library provides basic functions for threads to interact with user
  * interface, such as message output. See config.h for output configuration.
+ *****************************************************************************
+ * Copyright (C) 1999, 2000 VideoLAN
+ *
+ * Authors:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -40,7 +56,7 @@ void    _intf_DbgMsgImm     ( char *psz_file, char *psz_function, int i_line,
  * intf_FlushMsg macro and function
  *****************************************************************************
  * intf_FlushMsg is a function which flushs message queue and print all messages
- * remaining. It is only usefull if INTF_MSG_QUEUE is defined. In this case, it
+ * remaining. It is only useful if INTF_MSG_QUEUE is defined. In this case, it
  * is really a function. In the other case, it is a macro doing nothing.
  *****************************************************************************/
 #ifdef INTF_MSG_QUEUE
@@ -63,7 +79,9 @@ void         intf_MsgDestroy     ( void );
 
 void         intf_Msg            ( char *psz_format, ... );
 void         intf_ErrMsg         ( char *psz_format, ... );
+void         intf_WarnMsg        ( int i_level, char *psz_format, ... );
 void         intf_IntfMsg        ( char *psz_format, ... );
 
 void         intf_MsgImm         ( char *psz_format, ... );
 void         intf_ErrMsgImm      ( char *psz_format, ... );
+void         intf_WarnMsgImm     ( int i_level, char *psz_format, ... );