msi/tests: Make enum_stream_names() and package_RegDeleteTreeW() static.

This commit is contained in:
Francois Gouget 2008-12-13 12:05:56 +01:00 committed by Alexandre Julliard
parent c597792400
commit 0d7cb11fdf
2 changed files with 2 additions and 2 deletions

View File

@ -4694,7 +4694,7 @@ static const struct {
{_StringPool, data14, sizeof data14}, {_StringPool, data14, sizeof data14},
}; };
void enum_stream_names(IStorage *stg) static void enum_stream_names(IStorage *stg)
{ {
IEnumSTATSTG *stgenum = NULL; IEnumSTATSTG *stgenum = NULL;
IStream *stm; IStream *stm;

View File

@ -54,7 +54,7 @@ static void get_user_sid(LPSTR *usersid)
} }
/* RegDeleteTreeW from dlls/advapi32/registry.c */ /* RegDeleteTreeW from dlls/advapi32/registry.c */
LSTATUS WINAPI package_RegDeleteTreeW(HKEY hKey, LPCWSTR lpszSubKey) static LSTATUS package_RegDeleteTreeW(HKEY hKey, LPCWSTR lpszSubKey)
{ {
LONG ret; LONG ret;
DWORD dwMaxSubkeyLen, dwMaxValueLen; DWORD dwMaxSubkeyLen, dwMaxValueLen;