Marcus Meissner : dsound: Mark enum_callback and search_callback static.
Module: wine Branch: master Commit: a664424c198a348aa9178dd5ccc930531a058299 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a664424c198a348aa9178dd5cc... Author: Marcus Meissner <meissner(a)suse.de> Date: Mon Oct 3 13:24:12 2011 +0200 dsound: Mark enum_callback and search_callback static. --- dlls/dsound/propset.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/dsound/propset.c b/dlls/dsound/propset.c index af9b26d..242b237 100644 --- a/dlls/dsound/propset.c +++ b/dlls/dsound/propset.c @@ -111,7 +111,7 @@ struct search_data { GUID *found_guid; }; -BOOL CALLBACK search_callback(GUID *guid, const WCHAR *desc, +static BOOL CALLBACK search_callback(GUID *guid, const WCHAR *desc, const WCHAR *module, void *user) { struct search_data *search = user; @@ -276,6 +276,7 @@ static HRESULT DSPROPERTY_DescriptionW( return S_OK; } +static BOOL CALLBACK enum_callback(GUID *guid, const WCHAR *desc, const WCHAR *module, void *user) {
participants (1)
-
Alexandre Julliard