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
8d1a9bb5
Commit
8d1a9bb5
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmloader: Mark internal symbols with hidden visibility.
parent
ba8455d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
22 deletions
+22
-22
debug.h
dlls/dmloader/debug.h
+10
-10
dmloader_private.h
dlls/dmloader/dmloader_private.h
+12
-12
No files found.
dlls/dmloader/debug.h
View file @
8d1a9bb5
...
...
@@ -42,23 +42,23 @@ typedef struct {
#define GE(x) { &x, #x }
/* check whether chunkID is valid dmobject form chunk */
extern
BOOL
IS_VALID_DMFORM
(
FOURCC
chunkID
);
extern
BOOL
IS_VALID_DMFORM
(
FOURCC
chunkID
)
DECLSPEC_HIDDEN
;
/* translate STREAM_SEEK flag to string */
extern
const
char
*
resolve_STREAM_SEEK
(
DWORD
flag
);
extern
const
char
*
resolve_STREAM_SEEK
(
DWORD
flag
)
DECLSPEC_HIDDEN
;
/* FOURCC to string conversion for debug messages */
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
);
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
)
DECLSPEC_HIDDEN
;
/* DMUS_VERSION struct to string conversion for debug messages */
extern
const
char
*
debugstr_dmversion
(
const
DMUS_VERSION
*
version
);
extern
const
char
*
debugstr_dmversion
(
const
DMUS_VERSION
*
version
)
DECLSPEC_HIDDEN
;
/* FILETIME struct to string conversion for debug messages */
extern
const
char
*
debugstr_filetime
(
const
FILETIME
*
time
);
extern
const
char
*
debugstr_filetime
(
const
FILETIME
*
time
)
DECLSPEC_HIDDEN
;
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
)
DECLSPEC_HIDDEN
;
/* returns name of given error code */
extern
const
char
*
debugstr_dmreturn
(
DWORD
code
);
extern
const
char
*
debugstr_dmreturn
(
DWORD
code
)
DECLSPEC_HIDDEN
;
/* dump whole DMUS_OBJECTDESC struct */
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
extern
const
char
*
debugstr_DMUS_IO_CONTAINER_HEADER
(
LPDMUS_IO_CONTAINER_HEADER
pHeader
);
extern
const
char
*
debugstr_DMUS_IO_CONTAINED_OBJECT_HEADER
(
LPDMUS_IO_CONTAINED_OBJECT_HEADER
pHeader
);
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
)
DECLSPEC_HIDDEN
;
extern
const
char
*
debugstr_DMUS_IO_CONTAINER_HEADER
(
LPDMUS_IO_CONTAINER_HEADER
pHeader
)
DECLSPEC_HIDDEN
;
extern
const
char
*
debugstr_DMUS_IO_CONTAINED_OBJECT_HEADER
(
LPDMUS_IO_CONTAINED_OBJECT_HEADER
pHeader
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_DMLOADER_DEBUG_H */
dlls/dmloader/dmloader_private.h
View file @
8d1a9bb5
...
...
@@ -45,8 +45,8 @@
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
/* dmloader.dll global (for DllCanUnloadNow) */
extern
LONG
dwDirectMusicLoader
;
/* number of DirectMusicLoader(CF) instances */
extern
LONG
dwDirectMusicContainer
;
/* number of DirectMusicContainer(CF) instances */
extern
LONG
dwDirectMusicLoader
DECLSPEC_HIDDEN
;
/* number of DirectMusicLoader(CF) instances */
extern
LONG
dwDirectMusicContainer
DECLSPEC_HIDDEN
;
/* number of DirectMusicContainer(CF) instances */
/*****************************************************************************
* Interfaces
...
...
@@ -64,14 +64,14 @@ typedef struct IDirectMusicLoaderGenericStream IDirectMusicLoaderGenericStream;
/*****************************************************************************
* Creation helpers
*/
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderCF
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicContainerCF
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderCF
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicContainerCF
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicContainerImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderFileStream
(
LPVOID
*
ppobj
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderResourceStream
(
LPVOID
*
ppobj
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderGenericStream
(
LPVOID
*
ppobj
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLoaderImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicContainerImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
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
;
/*****************************************************************************
* IDirectMusicLoaderCF implementation structure
...
...
@@ -170,7 +170,7 @@ struct IDirectMusicLoaderFileStream {
};
/* Custom: */
extern
HRESULT
WINAPI
IDirectMusicLoaderFileStream_Attach
(
LPSTREAM
iface
,
LPCWSTR
wzFile
,
LPDIRECTMUSICLOADER8
pLoader
);
extern
HRESULT
WINAPI
IDirectMusicLoaderFileStream_Attach
(
LPSTREAM
iface
,
LPCWSTR
wzFile
,
LPDIRECTMUSICLOADER8
pLoader
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectMusicLoaderResourceStream implementation structure
...
...
@@ -191,7 +191,7 @@ struct IDirectMusicLoaderResourceStream {
};
/* Custom: */
extern
HRESULT
WINAPI
IDirectMusicLoaderResourceStream_Attach
(
LPSTREAM
iface
,
LPBYTE
pbMemData
,
LONGLONG
llMemLength
,
LONGLONG
llPos
,
LPDIRECTMUSICLOADER8
pLoader
);
extern
HRESULT
WINAPI
IDirectMusicLoaderResourceStream_Attach
(
LPSTREAM
iface
,
LPBYTE
pbMemData
,
LONGLONG
llMemLength
,
LONGLONG
llPos
,
LPDIRECTMUSICLOADER8
pLoader
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectMusicLoaderGenericStream implementation structure
...
...
@@ -209,7 +209,7 @@ struct IDirectMusicLoaderGenericStream {
};
/* Custom: */
extern
HRESULT
WINAPI
IDirectMusicLoaderGenericStream_Attach
(
LPSTREAM
iface
,
LPSTREAM
pStream
,
LPDIRECTMUSICLOADER8
pLoader
);
extern
HRESULT
WINAPI
IDirectMusicLoaderGenericStream_Attach
(
LPSTREAM
iface
,
LPSTREAM
pStream
,
LPDIRECTMUSICLOADER8
pLoader
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* Misc.
...
...
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