crypt32: Make a function static.
This commit is contained in:
parent
0eeb042067
commit
a29ba27361
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue