dsound: Mark enum_callback and search_callback static.

This commit is contained in:
Marcus Meissner 2011-10-03 13:24:12 +02:00 committed by Alexandre Julliard
parent 22d7af02e6
commit a664424c19
1 changed files with 2 additions and 1 deletions

View File

@ -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)
{