Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c6a41b08
Commit
c6a41b08
authored
Feb 07, 2010
by
Rémi Denis-Courmont
Browse files
VLM: remove leading underscores
parent
8e2f8915
Changes
3
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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