Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
fcfc11bd
Commit
fcfc11bd
authored
Sep 15, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Those files where forgoten in [16658]
vlc_t => libvlc_int_t
parent
ccc5c5dc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
include/os_specific.h
include/os_specific.h
+3
-3
src/misc/beos_specific.cpp
src/misc/beos_specific.cpp
+3
-3
src/misc/darwin_specific.m
src/misc/darwin_specific.m
+3
-3
src/misc/win32_specific.c
src/misc/win32_specific.c
+3
-3
No files found.
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
Markdown
is supported
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