wininet: Make URLCacheContainers_{Create,Delete}All() static.

This commit is contained in:
Francois Gouget 2012-09-24 08:42:21 +02:00 committed by Alexandre Julliard
parent 7af53b5f48
commit 51c90eba23
1 changed files with 2 additions and 2 deletions

View File

@ -542,7 +542,7 @@ static void URLCacheContainer_DeleteContainer(URLCACHECONTAINER * pContainer)
heap_free(pContainer);
}
void URLCacheContainers_CreateDefaults(void)
static void URLCacheContainers_CreateDefaults(void)
{
static const WCHAR UrlSuffix[] = {'C','o','n','t','e','n','t','.','I','E','5',0};
static const WCHAR UrlPrefix[] = {0};
@ -601,7 +601,7 @@ void URLCacheContainers_CreateDefaults(void)
}
}
void URLCacheContainers_DeleteAll(void)
static void URLCacheContainers_DeleteAll(void)
{
while(!list_empty(&UrlContainers))
URLCacheContainer_DeleteContainer(