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
90081ca8
Commit
90081ca8
authored
Jul 29, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmp: Remove DECLSPEC_HIDDEN usage.
parent
b8c38f41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
wmp_private.h
dlls/wmp/wmp_private.h
+14
-14
No files found.
dlls/wmp/wmp_private.h
View file @
90081ca8
...
...
@@ -36,7 +36,7 @@ TID_LIST
LAST_tid
}
typeinfo_id
;
HRESULT
get_typeinfo
(
typeinfo_id
tid
,
ITypeInfo
**
typeinfo
)
DECLSPEC_HIDDEN
;
HRESULT
get_typeinfo
(
typeinfo_id
tid
,
ITypeInfo
**
typeinfo
);
typedef
struct
{
IConnectionPoint
IConnectionPoint_iface
;
...
...
@@ -111,22 +111,22 @@ struct WindowsMediaPlayer {
HWND
msg_window
;
};
BOOL
init_player
(
WindowsMediaPlayer
*
)
DECLSPEC_HIDDEN
;
void
destroy_player
(
WindowsMediaPlayer
*
)
DECLSPEC_HIDDEN
;
WMPMedia
*
unsafe_impl_from_IWMPMedia
(
IWMPMedia
*
iface
)
DECLSPEC_HIDDEN
;
WMPPlaylist
*
unsafe_impl_from_IWMPPlaylist
(
IWMPPlaylist
*
iface
)
DECLSPEC_HIDDEN
;
HRESULT
create_media_from_url
(
BSTR
url
,
double
duration
,
IWMPMedia
**
ppMedia
)
DECLSPEC_HIDDEN
;
HRESULT
create_playlist
(
BSTR
name
,
BSTR
url
,
LONG
count
,
IWMPPlaylist
**
ppPlaylist
)
DECLSPEC_HIDDEN
;
void
ConnectionPointContainer_Init
(
WindowsMediaPlayer
*
wmp
)
DECLSPEC_HIDDEN
;
void
ConnectionPointContainer_Destroy
(
WindowsMediaPlayer
*
wmp
)
DECLSPEC_HIDDEN
;
void
call_sink
(
ConnectionPoint
*
This
,
DISPID
dispid
,
DISPPARAMS
*
dispparams
)
DECLSPEC_HIDDEN
;
BOOL
init_player
(
WindowsMediaPlayer
*
);
void
destroy_player
(
WindowsMediaPlayer
*
);
WMPMedia
*
unsafe_impl_from_IWMPMedia
(
IWMPMedia
*
iface
);
WMPPlaylist
*
unsafe_impl_from_IWMPPlaylist
(
IWMPPlaylist
*
iface
);
HRESULT
create_media_from_url
(
BSTR
url
,
double
duration
,
IWMPMedia
**
ppMedia
);
HRESULT
create_playlist
(
BSTR
name
,
BSTR
url
,
LONG
count
,
IWMPPlaylist
**
ppPlaylist
);
void
ConnectionPointContainer_Init
(
WindowsMediaPlayer
*
wmp
);
void
ConnectionPointContainer_Destroy
(
WindowsMediaPlayer
*
wmp
);
void
call_sink
(
ConnectionPoint
*
This
,
DISPID
dispid
,
DISPPARAMS
*
dispparams
);
HRESULT
WINAPI
WMPFactory_CreateInstance
(
IClassFactory
*
,
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
WMPFactory_CreateInstance
(
IClassFactory
*
,
IUnknown
*
,
REFIID
,
void
**
);
void
unregister_wmp_class
(
void
)
DECLSPEC_HIDDEN
;
void
unregister_player_msg_class
(
void
)
DECLSPEC_HIDDEN
;
void
unregister_wmp_class
(
void
);
void
unregister_player_msg_class
(
void
);
extern
HINSTANCE
wmp_instance
DECLSPEC_HIDDEN
;
extern
HINSTANCE
wmp_instance
;
static
inline
HRESULT
return_bstr
(
const
WCHAR
*
value
,
BSTR
*
p
)
{
...
...
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