]> git.sesse.net Git - vlc/blobdiff - include/intf_msg.h
* GNU/Hurd configuration and compilation fixes.
[vlc] / include / intf_msg.h
index d36b481c5e24d7b01a4a57c3b3168a603b7ed29b..71f8e9d0c65fc9de62f67c1ce28a9d9c447c43f6 100644 (file)
@@ -4,7 +4,7 @@
  * interface, such as message output. See config.h for output configuration.
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: intf_msg.h,v 1.13 2001/04/30 15:00:59 massiot Exp $
+ * $Id: intf_msg.h,v 1.15 2001/05/31 03:12:49 sam Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -48,8 +48,13 @@ void    _intf_DbgMsgImm     ( char *psz_file, char *psz_function, int i_line,
 #else
 
 /* Non-TRACE mode */
-#define intf_DbgMsg( format, args... )
-#define intf_DbgMsgImm( format, args...)
+#if defined( _MSC_VER )
+#   define intf_DbgMsg
+#   define intf_DbgMsgImm
+#else
+#   define intf_DbgMsg( format, args... )
+#   define intf_DbgMsgImm( format, args...)
+#endif
 
 #endif