Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1df9a924
Commit
1df9a924
authored
Feb 22, 2018
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmp: Make the WMPControls_*() functions static.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
402c0de2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
player.c
dlls/wmp/player.c
+16
-16
No files found.
dlls/wmp/player.c
View file @
1df9a924
...
@@ -940,7 +940,7 @@ static const IWMPSettingsVtbl WMPSettingsVtbl = {
...
@@ -940,7 +940,7 @@ static const IWMPSettingsVtbl WMPSettingsVtbl = {
WMPSettings_put_enableErrorDialogs
WMPSettings_put_enableErrorDialogs
};
};
HRESULT
WINAPI
WMPControls_QueryInterface
(
IWMPControls
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
WMPControls_QueryInterface
(
IWMPControls
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
{
if
(
IsEqualGUID
(
riid
,
&
IID_IDispatch
))
{
if
(
IsEqualGUID
(
riid
,
&
IID_IDispatch
))
{
*
ppv
=
iface
;
*
ppv
=
iface
;
...
@@ -1008,105 +1008,105 @@ static HRESULT WINAPI WMPControls_get_isAvailable(IWMPControls *iface, BSTR bstr
...
@@ -1008,105 +1008,105 @@ static HRESULT WINAPI WMPControls_get_isAvailable(IWMPControls *iface, BSTR bstr
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_play
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_play
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_stop
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_stop
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_pause
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_pause
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_fastForward
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_fastForward
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_fastReverse
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_fastReverse
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_get_currentPosition
(
IWMPControls
*
iface
,
DOUBLE
*
pdCurrentPosition
)
static
HRESULT
WINAPI
WMPControls_get_currentPosition
(
IWMPControls
*
iface
,
DOUBLE
*
pdCurrentPosition
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pdCurrentPosition
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pdCurrentPosition
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_put_currentPosition
(
IWMPControls
*
iface
,
DOUBLE
dCurrentPosition
)
static
HRESULT
WINAPI
WMPControls_put_currentPosition
(
IWMPControls
*
iface
,
DOUBLE
dCurrentPosition
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%f)
\n
"
,
This
,
dCurrentPosition
);
FIXME
(
"(%p)->(%f)
\n
"
,
This
,
dCurrentPosition
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_get_currentPositionString
(
IWMPControls
*
iface
,
BSTR
*
pbstrCurrentPosition
)
static
HRESULT
WINAPI
WMPControls_get_currentPositionString
(
IWMPControls
*
iface
,
BSTR
*
pbstrCurrentPosition
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pbstrCurrentPosition
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pbstrCurrentPosition
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_next
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_next
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_previous
(
IWMPControls
*
iface
)
static
HRESULT
WINAPI
WMPControls_previous
(
IWMPControls
*
iface
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_get_currentItem
(
IWMPControls
*
iface
,
IWMPMedia
**
ppIWMPMedia
)
static
HRESULT
WINAPI
WMPControls_get_currentItem
(
IWMPControls
*
iface
,
IWMPMedia
**
ppIWMPMedia
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
ppIWMPMedia
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
ppIWMPMedia
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_put_currentItem
(
IWMPControls
*
iface
,
IWMPMedia
*
pIWMPMedia
)
static
HRESULT
WINAPI
WMPControls_put_currentItem
(
IWMPControls
*
iface
,
IWMPMedia
*
pIWMPMedia
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pIWMPMedia
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pIWMPMedia
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_get_currentMarker
(
IWMPControls
*
iface
,
LONG
*
plMarker
)
static
HRESULT
WINAPI
WMPControls_get_currentMarker
(
IWMPControls
*
iface
,
LONG
*
plMarker
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
plMarker
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
plMarker
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_put_currentMarker
(
IWMPControls
*
iface
,
LONG
lMarker
)
static
HRESULT
WINAPI
WMPControls_put_currentMarker
(
IWMPControls
*
iface
,
LONG
lMarker
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%d)
\n
"
,
This
,
lMarker
);
FIXME
(
"(%p)->(%d)
\n
"
,
This
,
lMarker
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
HRESULT
WINAPI
WMPControls_playItem
(
IWMPControls
*
iface
,
IWMPMedia
*
pIWMPMedia
)
static
HRESULT
WINAPI
WMPControls_playItem
(
IWMPControls
*
iface
,
IWMPMedia
*
pIWMPMedia
)
{
{
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
WindowsMediaPlayer
*
This
=
impl_from_IWMPControls
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pIWMPMedia
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pIWMPMedia
);
...
...
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