Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 36 of file fslist.c.
Referenced by CreateFileSystemList(), and NATIVE_CreateFileSystemList().
{ PFILE_SYSTEM_ITEM Item; Item = (PFILE_SYSTEM_ITEM)RtlAllocateHeap(ProcessHeap, 0, sizeof(FILE_SYSTEM_ITEM)); if (!Item) return; Item->FileSystem = FileSystem; Item->FormatFunc = FormatFunc; Item->ChkdskFunc = ChkdskFunc; Item->QuickFormat = FALSE; InsertTailList(&List->ListHead, &Item->ListEntry); if (!FormatFunc) return; Item = (PFILE_SYSTEM_ITEM)RtlAllocateHeap(ProcessHeap, 0, sizeof(FILE_SYSTEM_ITEM)); if (!Item) return; Item->FileSystem = FileSystem; Item->FormatFunc = FormatFunc; Item->ChkdskFunc = ChkdskFunc; Item->QuickFormat = TRUE; InsertTailList(&List->ListHead, &Item->ListEntry); }