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
dffb1b2c
Commit
dffb1b2c
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dswave: Mark internal symbols with hidden visibility.
parent
9eb9040e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
dswave_private.h
dlls/dswave/dswave_private.h
+5
-5
No files found.
dlls/dswave/dswave_private.h
View file @
dffb1b2c
...
@@ -48,7 +48,7 @@ typedef struct IDirectMusicWaveImpl IDirectMusicWaveImpl;
...
@@ -48,7 +48,7 @@ typedef struct IDirectMusicWaveImpl IDirectMusicWaveImpl;
/*****************************************************************************
/*****************************************************************************
* ClassFactory
* ClassFactory
*/
*/
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicWaveImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicWaveImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
/*****************************************************************************
...
@@ -70,7 +70,7 @@ struct IDirectMusicWaveImpl {
...
@@ -70,7 +70,7 @@ struct IDirectMusicWaveImpl {
/**********************************************************************
/**********************************************************************
* Dll lifetime tracking declaration for dswave.dll
* Dll lifetime tracking declaration for dswave.dll
*/
*/
extern
LONG
DSWAVE_refCount
;
extern
LONG
DSWAVE_refCount
DECLSPEC_HIDDEN
;
static
inline
void
DSWAVE_LockModule
(
void
)
{
InterlockedIncrement
(
&
DSWAVE_refCount
);
}
static
inline
void
DSWAVE_LockModule
(
void
)
{
InterlockedIncrement
(
&
DSWAVE_refCount
);
}
static
inline
void
DSWAVE_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
DSWAVE_refCount
);
}
static
inline
void
DSWAVE_UnlockModule
(
void
)
{
InterlockedDecrement
(
&
DSWAVE_refCount
);
}
...
@@ -107,10 +107,10 @@ typedef struct {
...
@@ -107,10 +107,10 @@ typedef struct {
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
/* FOURCC to string conversion for debug messages */
/* FOURCC to string conversion for debug messages */
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
);
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
)
DECLSPEC_HIDDEN
;
/* returns name of given GUID */
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
)
DECLSPEC_HIDDEN
;
/* dump whole DMUS_OBJECTDESC struct */
/* dump whole DMUS_OBJECTDESC struct */
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_DSWAVE_PRIVATE_H */
#endif
/* __WINE_DSWAVE_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