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
be666ef4
Commit
be666ef4
authored
Nov 21, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmloader: Don't force a calling convention on internal functions.
parent
e1e651c8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
container.c
dlls/dmloader/container.c
+1
-1
dmloader_main.c
dlls/dmloader/dmloader_main.c
+1
-1
dmloader_private.h
dlls/dmloader/dmloader_private.h
+5
-5
loader.c
dlls/dmloader/loader.c
+1
-1
loaderstream.c
dlls/dmloader/loaderstream.c
+3
-3
No files found.
dlls/dmloader/container.c
View file @
be666ef4
...
...
@@ -647,7 +647,7 @@ static const IPersistStreamVtbl persiststream_vtbl = {
};
/* for ClassFactory */
HRESULT
WINAPI
create_dmcontainer
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmcontainer
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicContainerImpl
*
obj
;
HRESULT
hr
;
...
...
dlls/dmloader/dmloader_main.c
View file @
be666ef4
...
...
@@ -40,7 +40,7 @@ LONG module_ref = 0;
typedef
struct
{
IClassFactory
IClassFactory_iface
;
HRESULT
WINAPI
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ppv
);
HRESULT
(
*
fnCreateInstance
)(
REFIID
riid
,
void
**
ppv
);
}
IClassFactoryImpl
;
/******************************************************************
...
...
dlls/dmloader/dmloader_private.h
View file @
be666ef4
...
...
@@ -62,11 +62,11 @@ typedef struct IDirectMusicLoaderGenericStream IDirectMusicLoaderGenericStream;
/*****************************************************************************
* Creation helpers
*/
extern
HRESULT
WINAPI
create_dmloader
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmcontainer
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderFileStream
(
LPVOID
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderResourceStream
(
LPVOID
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderGenericStream
(
LPVOID
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmloader
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
create_dmcontainer
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicLoaderFileStream
(
void
*
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicLoaderResourceStream
(
void
*
*
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicLoaderGenericStream
(
void
*
*
ppobj
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectMusicLoaderFileStream implementation structure
...
...
dlls/dmloader/loader.c
View file @
be666ef4
...
...
@@ -903,7 +903,7 @@ static HRESULT DMUSIC_GetDefaultGMPath (WCHAR wszPath[MAX_PATH]) {
}
/* for ClassFactory */
HRESULT
WINAPI
create_dmloader
(
REFIID
lpcGUID
,
void
**
ppobj
)
HRESULT
create_dmloader
(
REFIID
lpcGUID
,
void
**
ppobj
)
{
IDirectMusicLoaderImpl
*
obj
;
DMUS_OBJECTDESC
Desc
;
...
...
dlls/dmloader/loaderstream.c
View file @
be666ef4
...
...
@@ -288,7 +288,7 @@ static const IDirectMusicGetLoaderVtbl DirectMusicLoaderFileStream_GetLoader_Vtb
IDirectMusicLoaderFileStream_IDirectMusicGetLoader_GetLoader
};
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderFileStream
(
LPVOID
*
ppobj
)
{
HRESULT
DMUSIC_CreateDirectMusicLoaderFileStream
(
void
*
*
ppobj
)
{
IDirectMusicLoaderFileStream
*
obj
;
TRACE
(
"(%p)
\n
"
,
ppobj
);
...
...
@@ -545,7 +545,7 @@ static const IDirectMusicGetLoaderVtbl DirectMusicLoaderResourceStream_GetLoader
IDirectMusicLoaderResourceStream_IDirectMusicGetLoader_GetLoader
};
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderResourceStream
(
LPVOID
*
ppobj
)
{
HRESULT
DMUSIC_CreateDirectMusicLoaderResourceStream
(
void
*
*
ppobj
)
{
IDirectMusicLoaderResourceStream
*
obj
;
TRACE
(
"(%p)
\n
"
,
ppobj
);
...
...
@@ -797,7 +797,7 @@ static const IDirectMusicGetLoaderVtbl DirectMusicLoaderGenericStream_GetLoader_
IDirectMusicLoaderGenericStream_IDirectMusicGetLoader_GetLoader
};
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderGenericStream
(
LPVOID
*
ppobj
)
{
HRESULT
DMUSIC_CreateDirectMusicLoaderGenericStream
(
void
*
*
ppobj
)
{
IDirectMusicLoaderGenericStream
*
obj
;
TRACE
(
"(%p)
\n
"
,
ppobj
);
...
...
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