]> git.sesse.net Git - vlc/blobdiff - src/misc/beos_specific.cpp
* ./include/os_specific.h: changed prototype of system_*() to use vlc_t
[vlc] / src / misc / beos_specific.cpp
index 09ecf599bed5b4fc667ff680c8a0930700eaad9f..e98dd891be09ced5f54a107f28d6caf7e0bb3499 100644 (file)
@@ -2,7 +2,7 @@
  * beos_init.cpp: Initialization for BeOS specific features 
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: beos_specific.cpp,v 1.22 2002/06/02 09:03:54 sam Exp $
+ * $Id: beos_specific.cpp,v 1.23 2002/06/02 14:26:15 gbazin Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *
@@ -64,7 +64,7 @@ static void AppThread( vlc_object_t *p_appthread );
 /*****************************************************************************
  * system_Init: create a BApplication object and fill in program path.
  *****************************************************************************/
-void system_Init( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[] )
+void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
 {
     p_this->p_vlc->p_appthread =
             (vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) );
@@ -76,7 +76,7 @@ void system_Init( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[] )
 /*****************************************************************************
  * system_Configure: check for system specific configuration options.
  *****************************************************************************/
-void system_Configure( vlc_object_t * )
+void system_Configure( vlc_t * )
 {
 
 }
@@ -84,7 +84,7 @@ void system_Configure( vlc_object_t * )
 /*****************************************************************************
  * system_End: destroy the BApplication object.
  *****************************************************************************/
-void system_End( vlc_object_t *p_this )
+void system_End( vlc_t *p_this )
 {
     /* Tell the BApplication to die */
     be_app->PostMessage( B_QUIT_REQUESTED );
@@ -167,4 +167,3 @@ void VlcApplication::ReadyToRun( )
     /* Tell the main thread we are finished initializing the BApplication */
     vlc_thread_ready( p_this );
 }
-