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
b1a69eab
Commit
b1a69eab
authored
Jun 29, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmsynth: Remove DECLSPEC_HIDDEN usage.
parent
a0cd5e05
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dmsynth_private.h
dlls/dmsynth/dmsynth_private.h
+4
-4
No files found.
dlls/dmsynth/dmsynth_private.h
View file @
b1a69eab
...
@@ -49,8 +49,8 @@ typedef struct IDirectMusicSynthSinkImpl IDirectMusicSynthSinkImpl;
...
@@ -49,8 +49,8 @@ typedef struct IDirectMusicSynthSinkImpl IDirectMusicSynthSinkImpl;
/*****************************************************************************
/*****************************************************************************
* ClassFactory
* ClassFactory
*/
*/
extern
HRESULT
DMUSIC_CreateDirectMusicSynthImpl
(
REFIID
riid
,
void
**
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicSynthImpl
(
REFIID
riid
,
void
**
ppobj
);
extern
HRESULT
DMUSIC_CreateDirectMusicSynthSinkImpl
(
REFIID
riid
,
void
**
ppobj
)
DECLSPEC_HIDDEN
;
extern
HRESULT
DMUSIC_CreateDirectMusicSynthSinkImpl
(
REFIID
riid
,
void
**
ppobj
);
/*****************************************************************************
/*****************************************************************************
* IDirectMusicSynth8Impl implementation structure
* IDirectMusicSynth8Impl implementation structure
...
@@ -83,7 +83,7 @@ struct IDirectMusicSynthSinkImpl {
...
@@ -83,7 +83,7 @@ struct IDirectMusicSynthSinkImpl {
/**********************************************************************
/**********************************************************************
* Dll lifetime tracking declaration for dmsynth.dll
* Dll lifetime tracking declaration for dmsynth.dll
*/
*/
extern
LONG
DMSYNTH_refCount
DECLSPEC_HIDDEN
;
extern
LONG
DMSYNTH_refCount
;
static
inline
void
DMSYNTH_LockModule
(
void
)
{
InterlockedIncrement
(
&
DMSYNTH_refCount
);
}
static
inline
void
DMSYNTH_LockModule
(
void
)
{
InterlockedIncrement
(
&
DMSYNTH_refCount
);
}
static
inline
void
DMSYNTH_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
DMSYNTH_refCount
);
}
static
inline
void
DMSYNTH_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
DMSYNTH_refCount
);
}
...
@@ -106,6 +106,6 @@ typedef struct {
...
@@ -106,6 +106,6 @@ typedef struct {
#define GE(x) { &x, #x }
#define GE(x) { &x, #x }
/* returns name of given GUID */
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
)
DECLSPEC_HIDDEN
;
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
#endif
/* __WINE_DMSYNTH_PRIVATE_H */
#endif
/* __WINE_DMSYNTH_PRIVATE_H */
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