From a664424c198a348aa9178dd5ccc930531a058299 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Mon, 3 Oct 2011 13:24:12 +0200 Subject: [PATCH] dsound: Mark enum_callback and search_callback static. --- dlls/dsound/propset.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/dsound/propset.c b/dlls/dsound/propset.c index af9b26d9d08..242b23740b7 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) {