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
81a6c8c8
Commit
81a6c8c8
authored
Nov 21, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Don't force a calling convention on internal functions.
parent
0b004131
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
collection.c
dlls/dmusic/collection.c
+1
-1
dmusic.c
dlls/dmusic/dmusic.c
+1
-1
dmusic_main.c
dlls/dmusic/dmusic_main.c
+1
-1
dmusic_private.h
dlls/dmusic/dmusic_private.h
+2
-2
No files found.
dlls/dmusic/collection.c
View file @
81a6c8c8
...
...
@@ -522,7 +522,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
HRESULT
WINAPI
DMUSIC_CreateDirectMusicCollectionImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
HRESULT
DMUSIC_CreateDirectMusicCollectionImpl
(
REFIID
lpcGUID
,
void
**
ppobj
,
IUnknown
*
pUnkOuter
)
{
IDirectMusicCollectionImpl
*
obj
;
HRESULT
hr
;
...
...
dlls/dmusic/dmusic.c
View file @
81a6c8c8
...
...
@@ -588,7 +588,7 @@ static void create_system_ports_list(IDirectMusic8Impl* object)
}
/* For ClassFactory */
HRESULT
WINAPI
DMUSIC_CreateDirectMusicImpl
(
LPCGUID
riid
,
LPVOID
*
ret_iface
,
LPUNKNOWN
unkouter
)
HRESULT
DMUSIC_CreateDirectMusicImpl
(
REFIID
riid
,
void
**
ret_iface
,
IUnknown
*
unkouter
)
{
IDirectMusic8Impl
*
dmusic
;
HRESULT
ret
;
...
...
dlls/dmusic/dmusic_main.c
View file @
81a6c8c8
...
...
@@ -43,7 +43,7 @@ LONG DMUSIC_refCount = 0;
typedef
struct
{
IClassFactory
IClassFactory_iface
;
HRESULT
WINAPI
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ppv
,
IUnknown
*
pUnkOuter
);
HRESULT
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ppv
,
IUnknown
*
pUnkOuter
);
}
IClassFactoryImpl
;
/******************************************************************
...
...
dlls/dmusic/dmusic_private.h
View file @
81a6c8c8
...
...
@@ -95,8 +95,8 @@ typedef struct instrument_articulation {
*/
/* CLSID */
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicCollectionImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicImpl
(
REFIID
riid
,
void
**
ret_iface
,
IUnknown
*
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicCollectionImpl
(
REFIID
riid
,
void
**
ppobj
,
IUnknown
*
pUnkOuter
)
DECLSPEC_HIDDEN
;
/* Internal */
extern
HRESULT
DMUSIC_CreateDirectMusicBufferImpl
(
LPDMUS_BUFFERDESC
desc
,
LPVOID
*
ret_iface
)
DECLSPEC_HIDDEN
;
...
...
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