Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
628ec1a0
Commit
628ec1a0
authored
Jan 16, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define vlc_curent_object in include/vlc_objects.h
parent
01473463
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
extras/zsh.cpp
extras/zsh.cpp
+1
-2
include/vlc_objects.h
include/vlc_objects.h
+1
-1
src/control/core.c
src/control/core.c
+1
-3
No files found.
extras/zsh.cpp
View file @
628ec1a0
...
...
@@ -40,7 +40,6 @@ void PrintModuleList( vlc_t *p_vlc, mmap &mods, mcmap &mods2 );
void
ParseOption
(
module_config_t
*
p_item
,
mmap
&
mods
,
mcmap
&
mods2
);
void
PrintOption
(
char
*
psz_option
,
char
i_short
,
char
*
psz_exlusive
,
char
*
psz_text
,
char
*
psz_longtext
,
char
*
psz_args
);
extern
"C"
{
vlc_t
*
vlc_current_object
(
int
i_object
);}
int
main
(
int
i_argc
,
char
**
ppsz_argv
)
{
...
...
@@ -49,7 +48,7 @@ int main( int i_argc, char **ppsz_argv )
/* Create a libvlc structure */
int
i_ret
=
VLC_Create
();
vlc_t
*
p_vlc
;
if
(
i_ret
<
0
)
{
return
i_ret
;
...
...
include/vlc_objects.h
View file @
628ec1a0
...
...
@@ -93,7 +93,7 @@ VLC_EXPORT( void, __vlc_object_yield, ( vlc_object_t * ) );
VLC_EXPORT
(
void
,
__vlc_object_release
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
vlc_list_t
*
,
__vlc_list_find
,
(
vlc_object_t
*
,
int
,
int
)
);
VLC_EXPORT
(
void
,
vlc_list_release
,
(
vlc_list_t
*
)
);
VLC_EXPORT
(
vlc_t
*
,
vlc_current_object
,
(
int
)
);
/*}@*/
#define vlc_object_create(a,b) \
...
...
src/control/core.c
View file @
628ec1a0
...
...
@@ -4,7 +4,7 @@
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
* Authors: Cl
me
nt Stenac <zorglub@videolan.org>
* Authors: Cl
�en
t Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -26,8 +26,6 @@
#include <vlc/intf.h>
vlc_t
*
vlc_current_object
(
int
);
/*************************************************************************
* Exceptions handling
*************************************************************************/
...
...
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