Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 34 of file deviceinterface.c.
Referenced by IKsFilterFactory_fnRelease().
{ PLIST_ENTRY Entry; PSYMBOLIC_LINK_ENTRY SymEntry; while(!IsListEmpty(ListHead)) { /* remove first entry */ Entry = RemoveHeadList(ListHead); /* fetch symbolic link entry */ SymEntry = (PSYMBOLIC_LINK_ENTRY)CONTAINING_RECORD(Entry, SYMBOLIC_LINK_ENTRY, Entry); /* free device interface string */ RtlFreeUnicodeString(&SymEntry->SymbolicLink); /* free entry item */ FreeItem(Entry); } return STATUS_SUCCESS; }