mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
dsound: Mark enum_callback and search_callback static.
This commit is contained in:
parent
22d7af02e6
commit
a664424c19
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue