Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6bf23c4a
Commit
6bf23c4a
authored
Nov 21, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmstyle: Don't force a calling convention on internal functions.
parent
5dab1e4e
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
16 deletions
+16
-16
auditiontrack.c
dlls/dmstyle/auditiontrack.c
+1
-1
chordtrack.c
dlls/dmstyle/chordtrack.c
+1
-1
commandtrack.c
dlls/dmstyle/commandtrack.c
+1
-1
dmstyle_main.c
dlls/dmstyle/dmstyle_main.c
+2
-2
dmstyle_private.h
dlls/dmstyle/dmstyle_private.h
+7
-7
motiftrack.c
dlls/dmstyle/motiftrack.c
+1
-1
mutetrack.c
dlls/dmstyle/mutetrack.c
+1
-1
style.c
dlls/dmstyle/style.c
+1
-1
styletrack.c
dlls/dmstyle/styletrack.c
+1
-1
No files found.
dlls/dmstyle/auditiontrack.c
View file @
6bf23c4a
...
...
@@ -316,7 +316,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmauditiontrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmauditiontrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicAuditionTrack
*
track
;
HRESULT
hr
;
...
...
dlls/dmstyle/chordtrack.c
View file @
6bf23c4a
...
...
@@ -415,7 +415,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmchordtrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmchordtrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicChordTrack
*
track
;
HRESULT
hr
;
...
...
dlls/dmstyle/commandtrack.c
View file @
6bf23c4a
...
...
@@ -368,7 +368,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmcommandtrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmcommandtrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicCommandTrack
*
track
;
HRESULT
hr
;
...
...
dlls/dmstyle/dmstyle_main.c
View file @
6bf23c4a
...
...
@@ -41,10 +41,10 @@ LONG DMSTYLE_refCount = 0;
typedef
struct
{
IClassFactory
IClassFactory_iface
;
HRESULT
WINAPI
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ret_iface
);
HRESULT
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ret_iface
);
}
IClassFactoryImpl
;
static
HRESULT
WINAPI
create_direct_music_section
(
REFIID
riid
,
void
**
ret_iface
)
static
HRESULT
create_direct_music_section
(
REFIID
riid
,
void
**
ret_iface
)
{
FIXME
(
"(%s, %p) stub
\n
"
,
debugstr_dmguid
(
riid
),
ret_iface
);
...
...
dlls/dmstyle/dmstyle_private.h
View file @
6bf23c4a
...
...
@@ -44,13 +44,13 @@
/*****************************************************************************
* ClassFactory
*/
extern
HRESULT
WINAPI
create_dmstyle
(
REFIID
lpcGUID
,
LPVOID
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmauditiontrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmchordtrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmcommandtrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmmotiftrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmmutetrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmstyletrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmstyle
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmauditiontrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmchordtrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmcommandtrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmmotiftrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmmutetrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmstyletrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* Auxiliary definitions
...
...
dlls/dmstyle/motiftrack.c
View file @
6bf23c4a
...
...
@@ -288,7 +288,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmmotiftrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmmotiftrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicMotifTrack
*
track
;
HRESULT
hr
;
...
...
dlls/dmstyle/mutetrack.c
View file @
6bf23c4a
...
...
@@ -297,7 +297,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmmutetrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmmutetrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicMuteTrack
*
track
;
HRESULT
hr
;
...
...
dlls/dmstyle/style.c
View file @
6bf23c4a
...
...
@@ -973,7 +973,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmstyle
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmstyle
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicStyle8Impl
*
obj
;
HRESULT
hr
;
...
...
dlls/dmstyle/styletrack.c
View file @
6bf23c4a
...
...
@@ -502,7 +502,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmstyletrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmstyletrack
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicStyleTrack
*
track
;
HRESULT
hr
;
...
...
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