#ifndef _NTRTL_H #define RTL_LIST_FOREACH(Entry, ListHead) \ for ((Entry) = &(ListHead); (Entry) != &(ListHead); (Entry) = (Entry)->Flink) #endif View code on GitHub
No description available.