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
c6a41b08
Commit
c6a41b08
authored
Feb 07, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLM: remove leading underscores
parent
8e2f8915
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
include/vlc_vlm.h
include/vlc_vlm.h
+2
-2
src/input/vlm.c
src/input/vlm.c
+4
-3
src/libvlccore.sym
src/libvlccore.sym
+1
-1
No files found.
include/vlc_vlm.h
View file @
c6a41b08
...
...
@@ -184,8 +184,8 @@ struct vlm_message_t
extern
"C"
{
#endif
#define vlm_New( a ) __vlm_New( VLC_OBJECT(a) )
VLC_EXPORT
(
vlm_t
*
,
__vlm_New
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
vlm_t
*
,
vlm_New
,
(
vlc_object_t
*
)
);
#define vlm_New( a ) vlm_New( VLC_OBJECT(a) )
VLC_EXPORT
(
void
,
vlm_Delete
,
(
vlm_t
*
)
);
VLC_EXPORT
(
int
,
vlm_ExecuteCommand
,
(
vlm_t
*
,
const
char
*
,
vlm_message_t
**
)
);
VLC_EXPORT
(
int
,
vlm_Control
,
(
vlm_t
*
p_vlm
,
int
i_query
,
...
)
);
...
...
src/input/vlm.c
View file @
c6a41b08
...
...
@@ -113,12 +113,13 @@ static int InputEvent( vlc_object_t *p_this, char const *psz_cmd,
return
VLC_SUCCESS
;
}
static
vlc_mutex_t
vlm_mutex
=
VLC_STATIC_MUTEX
;
#undef vlm_New
/*****************************************************************************
* vlm_New:
*****************************************************************************/
static
vlc_mutex_t
vlm_mutex
=
VLC_STATIC_MUTEX
;
vlm_t
*
__vlm_New
(
vlc_object_t
*
p_this
)
vlm_t
*
vlm_New
(
vlc_object_t
*
p_this
)
{
vlm_t
*
p_vlm
=
NULL
,
**
pp_vlm
=
&
(
libvlc_priv
(
p_this
->
p_libvlc
)
->
p_vlm
);
char
*
psz_vlmconf
;
...
...
src/libvlccore.sym
View file @
c6a41b08
...
...
@@ -594,7 +594,7 @@ vlm_MessageAdd
vlm_MessageDelete
vlm_MessageNew
vlm_MessageSimpleNew
__
vlm_New
vlm_New
__vout_AllocatePicture
vout_ChromaCmp
vout_Close
...
...
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