msi: Make reg_get_{multi}sz() static.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-01-07 14:40:10 +01:00 committed by Alexandre Julliard
parent dcf146991b
commit 167de42705
1 changed files with 2 additions and 2 deletions

View File

@ -3350,7 +3350,7 @@ INSTALLSTATE WINAPI MsiUseFeatureA( LPCSTR szProduct, LPCSTR szFeature )
return MsiUseFeatureExA(szProduct, szFeature, 0, 0);
}
WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name )
static WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name )
{
WCHAR *ret;
DWORD len, type;
@ -3359,7 +3359,7 @@ WCHAR *reg_get_multisz( HKEY hkey, const WCHAR *name )
return ret;
}
WCHAR *reg_get_sz( HKEY hkey, const WCHAR *name )
static WCHAR *reg_get_sz( HKEY hkey, const WCHAR *name )
{
WCHAR *ret;
DWORD len, type;