crypt32: Make a function static.

This commit is contained in:
Juan Lang 2008-12-18 14:50:56 -08:00 committed by Alexandre Julliard
parent 0eeb042067
commit a29ba27361
2 changed files with 1 additions and 3 deletions

View File

@ -288,7 +288,7 @@ void ContextList_Delete(struct ContextList *list, void *context)
list->contextInterface->free(context);
}
void ContextList_Empty(struct ContextList *list)
static void ContextList_Empty(struct ContextList *list)
{
struct list *entry, *next;

View File

@ -379,8 +379,6 @@ void *ContextList_Enum(struct ContextList *list, void *pPrev);
void ContextList_Delete(struct ContextList *list, void *context);
void ContextList_Empty(struct ContextList *list);
void ContextList_Free(struct ContextList *list);
/**