Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 137 of file dictlib.c.
Referenced by ClasspGetFsContext().
{ PDICTIONARY_HEADER entry; PVOID data; KIRQL oldIrql; data = NULL; KeAcquireSpinLock(&(Dictionary->SpinLock), &oldIrql); entry = Dictionary->List; while (entry != NULL) { if (entry->Key == Key) { data = entry->Data; break; } else { entry = entry->Next; } } KeReleaseSpinLock(&(Dictionary->SpinLock), oldIrql); return data; }