Commit a664424c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dsound: Mark enum_callback and search_callback static.

parent 22d7af02
...@@ -111,7 +111,7 @@ struct search_data { ...@@ -111,7 +111,7 @@ struct search_data {
GUID *found_guid; 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) const WCHAR *module, void *user)
{ {
struct search_data *search = user; struct search_data *search = user;
...@@ -276,6 +276,7 @@ static HRESULT DSPROPERTY_DescriptionW( ...@@ -276,6 +276,7 @@ static HRESULT DSPROPERTY_DescriptionW(
return S_OK; return S_OK;
} }
static
BOOL CALLBACK enum_callback(GUID *guid, const WCHAR *desc, const WCHAR *module, BOOL CALLBACK enum_callback(GUID *guid, const WCHAR *desc, const WCHAR *module,
void *user) void *user)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment