Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
fcfc11bd
Commit
fcfc11bd
authored
Sep 15, 2006
by
Christophe Mutricy
Browse files
Those files where forgoten in [16658]
vlc_t => libvlc_int_t
parent
ccc5c5dc
Changes
4
Hide whitespace changes
Inline
Side-by-side
include/os_specific.h
View file @
fcfc11bd
...
...
@@ -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 ) {}
...
...
src/misc/beos_specific.cpp
View file @
fcfc11bd
...
...
@@ -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
);
...
...
src/misc/darwin_specific.m
View file @
fcfc11bd
...
...
@@ -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
);
...
...
src/misc/win32_specific.c
View file @
fcfc11bd
...
...
@@ -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
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment