From fcfc11bd0f6ada52543bf1f213d4f0d86de59b8e Mon Sep 17 00:00:00 2001 From: Christophe Mutricy Date: Fri, 15 Sep 2006 17:15:09 +0000 Subject: [PATCH] Those files where forgoten in [16658] vlc_t => libvlc_int_t --- include/os_specific.h | 6 +++--- src/misc/beos_specific.cpp | 6 +++--- src/misc/darwin_specific.m | 6 +++--- src/misc/win32_specific.c | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/include/os_specific.h b/include/os_specific.h index b58b0cf585..ec733fe219 100644 --- a/include/os_specific.h +++ b/include/os_specific.h @@ -44,9 +44,9 @@ extern "C" { * Prototypes *****************************************************************************/ #ifdef _NEED_OS_SPECIFIC_H - void system_Init ( vlc_t *, int *, char *[] ); - void system_Configure ( vlc_t *, int *, char *[] ); - void system_End ( vlc_t * ); + void system_Init ( libvlc_int_t *, int *, char *[] ); + void system_Configure ( libvlc_int_t *, int *, char *[] ); + void system_End ( libvlc_int_t * ); #else # define system_Init( a, b, c ) {} # define system_Configure( a, b, c ) {} diff --git a/src/misc/beos_specific.cpp b/src/misc/beos_specific.cpp index aa36cc6434..e9a5378292 100644 --- a/src/misc/beos_specific.cpp +++ b/src/misc/beos_specific.cpp @@ -77,7 +77,7 @@ static void AppThread( vlc_object_t *p_appthread ); /***************************************************************************** * system_Init: create a BApplication object and fill in program path. *****************************************************************************/ -void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { p_this->p_libvlc_global->p_appthread = (vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) ); @@ -90,14 +90,14 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) /***************************************************************************** * system_Configure: check for system specific configuration options. *****************************************************************************/ -void system_Configure( vlc_t *, int *pi_argc, char *ppsz_argv[] ) +void system_Configure( libvlc_int_t *, int *pi_argc, char *ppsz_argv[] ) { } /***************************************************************************** * system_End: destroy the BApplication object. *****************************************************************************/ -void system_End( vlc_t *p_this ) +void system_End( libvlc_int_t *p_this ) { /* Tell the BApplication to die */ be_app->PostMessage( REALLY_QUIT ); diff --git a/src/misc/darwin_specific.m b/src/misc/darwin_specific.m index e9e8f7bd41..fd7847a99a 100644 --- a/src/misc/darwin_specific.m +++ b/src/misc/darwin_specific.m @@ -81,7 +81,7 @@ static int FindLanguage( const char * psz_lang ) return 0; } -void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { char i_dummy; char *p_char, *p_oldchar = &i_dummy; @@ -132,7 +132,7 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) /***************************************************************************** * system_Configure: check for system specific configuration options. *****************************************************************************/ -void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { } @@ -140,7 +140,7 @@ void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) /***************************************************************************** * system_End: free the program path. *****************************************************************************/ -void system_End( vlc_t *p_this ) +void system_End( libvlc_int_t *p_this ) { free( p_this->p_libvlc_global->psz_vlcpath ); diff --git a/src/misc/win32_specific.c b/src/misc/win32_specific.c index bc8a249f9f..3d816322d2 100644 --- a/src/misc/win32_specific.c +++ b/src/misc/win32_specific.c @@ -42,7 +42,7 @@ /***************************************************************************** * system_Init: initialize winsock and misc other things. *****************************************************************************/ -void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { WSADATA Data; @@ -117,7 +117,7 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) static void IPCHelperThread( vlc_object_t * ); LRESULT CALLBACK WMCOPYWNDPROC( HWND, UINT, WPARAM, LPARAM ); -void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) +void system_Configure( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] ) { #if !defined( UNDER_CE ) p_this->p_libvlc_global->b_fast_mutex = config_GetInt( p_this, "fast-mutex" ); @@ -349,7 +349,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam, /***************************************************************************** * system_End: terminate winsock. *****************************************************************************/ -void system_End( vlc_t *p_this ) +void system_End( libvlc_int_t *p_this ) { if( p_this && p_this->p_libvlc_global && p_this->p_libvlc_global->psz_vlcpath ) { -- 2.39.5