Commit 51c90eba authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 7af53b5f
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment