]> git.sesse.net Git - vlc/blobdiff - include/os_specific.h
* ./src/libvlc.c: p_vlc->pf_memset is now usable (it's always the libc
[vlc] / include / os_specific.h
index c697701147b1ca11cf394a632eb6e1ae377096b9..ae0a4288577ded9d07a5dae471b99e39a4f49068 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.9 2002/06/02 14:26:15 gbazin Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *          Gildas Bazin <gbazin@netcourrier.com>
 extern "C" {
 #   endif
 
-/*****************************************************************************
- * main_sys_t: system specific descriptor
- ****************************************************************************/
-struct main_sys_s;
-
 /*****************************************************************************
  * Prototypes
  *****************************************************************************/
 #ifdef _NEED_OS_SPECIFIC_H
-    void system_Init ( int *pi_argc, char *ppsz_argv[], char *ppsz_env[] );
-    void system_Configure  ( void );
-    void system_End  ( void );
+    void system_Init       ( vlc_t *, int *, char *[] );
+    void system_Configure  ( vlc_t * );
+    void system_End        ( vlc_t * );
 #else
-#   define system_Init(...) {}
-#   define system_Configure(...) {}
-#   define system_End(...) {}
+#   define system_Init( a, b, c ) {}
+#   define system_Configure( a ) {}
+#   define system_End( a ) {}
 #endif
 
 #   ifdef __cplusplus
 }
 #   endif
-