]> git.sesse.net Git - vlc/commitdiff
* ./include/os_specific.h: fixed a C++ compilation issue.
authorSam Hocevar <sam@videolan.org>
Sun, 28 Apr 2002 02:27:39 +0000 (02:27 +0000)
committerSam Hocevar <sam@videolan.org>
Sun, 28 Apr 2002 02:27:39 +0000 (02:27 +0000)
include/os_specific.h

index c697701147b1ca11cf394a632eb6e1ae377096b9..1892bb3030a943b63fc238ddf25ba22dbe0da1bf 100644 (file)
@@ -2,7 +2,7 @@
  * os_specific.h: OS specific features
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: os_specific.h,v 1.4 2002/04/27 22:11:22 gbazin Exp $
+ * $Id: os_specific.h,v 1.5 2002/04/28 02:27:39 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *          Gildas Bazin <gbazin@netcourrier.com>
@@ -53,9 +53,9 @@ struct main_sys_s;
     void system_Configure  ( void );
     void system_End  ( void );
 #else
-#   define system_Init(...) {}
-#   define system_Configure(...) {}
-#   define system_End(...) {}
+#   define system_Init ( dummy, dummy, dummy ) {}
+#   define system_Configure ( ) {}
+#   define system_End ( ) {}
 #endif
 
 #   ifdef __cplusplus