Commit fcfc11bd authored by Christophe Mutricy's avatar Christophe Mutricy

Those files where forgoten in [16658]

vlc_t => libvlc_int_t
parent ccc5c5dc
...@@ -44,9 +44,9 @@ extern "C" { ...@@ -44,9 +44,9 @@ extern "C" {
* Prototypes * Prototypes
*****************************************************************************/ *****************************************************************************/
#ifdef _NEED_OS_SPECIFIC_H #ifdef _NEED_OS_SPECIFIC_H
void system_Init ( vlc_t *, int *, char *[] ); void system_Init ( libvlc_int_t *, int *, char *[] );
void system_Configure ( vlc_t *, int *, char *[] ); void system_Configure ( libvlc_int_t *, int *, char *[] );
void system_End ( vlc_t * ); void system_End ( libvlc_int_t * );
#else #else
# define system_Init( a, b, c ) {} # define system_Init( a, b, c ) {}
# define system_Configure( a, b, c ) {} # define system_Configure( a, b, c ) {}
......
...@@ -77,7 +77,7 @@ static void AppThread( vlc_object_t *p_appthread ); ...@@ -77,7 +77,7 @@ static void AppThread( vlc_object_t *p_appthread );
/***************************************************************************** /*****************************************************************************
* system_Init: create a BApplication object and fill in program path. * 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 = p_this->p_libvlc_global->p_appthread =
(vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) ); (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[] ) ...@@ -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. * 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. * 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 */ /* Tell the BApplication to die */
be_app->PostMessage( REALLY_QUIT ); be_app->PostMessage( REALLY_QUIT );
......
...@@ -81,7 +81,7 @@ static int FindLanguage( const char * psz_lang ) ...@@ -81,7 +81,7 @@ static int FindLanguage( const char * psz_lang )
return 0; 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 i_dummy;
char *p_char, *p_oldchar = &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[] ) ...@@ -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. * 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[] ) ...@@ -140,7 +140,7 @@ void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
/***************************************************************************** /*****************************************************************************
* system_End: free the program path. * 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 ); free( p_this->p_libvlc_global->psz_vlcpath );
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
/***************************************************************************** /*****************************************************************************
* system_Init: initialize winsock and misc other things. * 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; WSADATA Data;
...@@ -117,7 +117,7 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) ...@@ -117,7 +117,7 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
static void IPCHelperThread( vlc_object_t * ); static void IPCHelperThread( vlc_object_t * );
LRESULT CALLBACK WMCOPYWNDPROC( HWND, UINT, WPARAM, LPARAM ); 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 ) #if !defined( UNDER_CE )
p_this->p_libvlc_global->b_fast_mutex = config_GetInt( p_this, "fast-mutex" ); 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, ...@@ -349,7 +349,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
/***************************************************************************** /*****************************************************************************
* system_End: terminate winsock. * 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 ) if( p_this && p_this->p_libvlc_global && p_this->p_libvlc_global->psz_vlcpath )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment