Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
cf249e3a
Commit
cf249e3a
authored
Jun 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mediacontrol: include vlc_common and fix ABI (= avoid bool)
parent
6349569e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
include/vlc/mediacontrol.h
include/vlc/mediacontrol.h
+3
-3
src/control/mediacontrol_audio_video.c
src/control/mediacontrol_audio_video.c
+1
-1
src/control/mediacontrol_core.c
src/control/mediacontrol_core.c
+1
-1
src/control/mediacontrol_util.c
src/control/mediacontrol_util.c
+1
-1
No files found.
include/vlc/mediacontrol.h
View file @
cf249e3a
...
...
@@ -38,9 +38,9 @@ extern "C" {
#if defined( WIN32 )
#include <windows.h>
#define WINDOWHANDLE HWND
typedef
HWND
WINDOWHANDLE
;
#else
#define WINDOWHANDLE int
typedef
int
WINDOWHANDLE
;
#endif
#include <vlc/libvlc.h>
...
...
@@ -286,7 +286,7 @@ VLC_PUBLIC_API void mediacontrol_sound_set_volume( mediacontrol_Instance *self,
* \param visual_id the Xid or HWND, depending on the platform
* \param exception an initialized exception pointer
*/
VLC_PUBLIC_API
bool
mediacontrol_set_visual
(
mediacontrol_Instance
*
self
,
VLC_PUBLIC_API
int
mediacontrol_set_visual
(
mediacontrol_Instance
*
self
,
WINDOWHANDLE
visual_id
,
mediacontrol_Exception
*
exception
);
...
...
src/control/mediacontrol_audio_video.c
View file @
cf249e3a
...
...
@@ -270,7 +270,7 @@ mediacontrol_sound_set_volume( mediacontrol_Instance *self,
HANDLE_LIBVLC_EXCEPTION_VOID
(
&
ex
);
}
bool
mediacontrol_set_visual
(
mediacontrol_Instance
*
self
,
int
mediacontrol_set_visual
(
mediacontrol_Instance
*
self
,
WINDOWHANDLE
visual_id
,
mediacontrol_Exception
*
exception
)
{
...
...
src/control/mediacontrol_core.c
View file @
cf249e3a
...
...
@@ -25,10 +25,10 @@
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc/mediacontrol.h>
#include <vlc/libvlc.h>
#include <vlc_common.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
...
...
src/control/mediacontrol_util.c
View file @
cf249e3a
...
...
@@ -26,8 +26,8 @@
#endif
#include <vlc/mediacontrol.h>
#include <vlc/libvlc.h>
#include <vlc_common.h>
#include <vlc_vout.h>
#include <vlc_osd.h>
#include "mediacontrol_internal.h"
...
...
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