dll, sys: FSP_NEXT_EA

This commit is contained in:
Bill Zissimopoulos
2019-03-14 22:04:31 -07:00
parent d59976bd5d
commit d3efdd9219
5 changed files with 20 additions and 30 deletions

View File

@ -92,4 +92,7 @@ static inline BOOLEAN FspPathIsDrive(PWSTR FileName)
L':' == FileName[1] && L'\0' == FileName[2];
}
#define FSP_NEXT_EA(Ea, EaEnd) \
(0 != (Ea)->NextEntryOffset ? (PVOID)((PUINT8)(Ea) + (Ea)->NextEntryOffset) : (EaEnd))
#endif