winealsa.drv: Make functions static where possible.

This helps detect dead code.
This commit is contained in:
Francois Gouget 2022-08-25 13:01:13 +02:00 committed by Alexandre Julliard
parent 4f75dd8c44
commit 516e6dd921

View file

@ -142,7 +142,7 @@ static HKEY reg_open_hkcu_key( const WCHAR *name, ULONG name_len )
return key;
}
ULONG reg_query_value( HKEY hkey, const WCHAR *name,
static ULONG reg_query_value( HKEY hkey, const WCHAR *name,
KEY_VALUE_PARTIAL_INFORMATION *info, ULONG size )
{
unsigned int name_size = name ? wcslen( name ) * sizeof(WCHAR) : 0;