Skip to content

Commit b7fd2fe

Browse files
committed
.
1 parent 4a91258 commit b7fd2fe

File tree

2 files changed

+317
-233
lines changed

2 files changed

+317
-233
lines changed

boot/freeldr/freeldr/include/fs/ntfs.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,16 @@ typedef struct
227227
} NTFS_INDEX_ENTRY, *PNTFS_INDEX_ENTRY;
228228
#include <poppack.h>
229229

230+
typedef struct _NTFS_RUN_LIST
231+
{
232+
ULONG OffsetInDataRun;
233+
ULONG SizeInDataRun;
234+
LONGLONG Offset;
235+
ULONGLONG Length;
236+
struct _NTFS_RUN_LIST *Next;
237+
struct _NTFS_RUN_LIST *Prev;
238+
} NTFS_RUN_LIST, *PNTFS_RUN_LIST;
239+
230240
typedef struct
231241
{
232242
PUCHAR CacheRun;
@@ -235,6 +245,8 @@ typedef struct
235245
ULONGLONG CacheRunLength;
236246
LONGLONG CacheRunLastLCN;
237247
ULONGLONG CacheRunCurrentOffset;
248+
PNTFS_RUN_LIST CacheRunList;
249+
ULONGLONG CacheRunListFileSize;
238250
NTFS_ATTR_RECORD Record;
239251
} NTFS_ATTR_CONTEXT, *PNTFS_ATTR_CONTEXT;
240252

0 commit comments

Comments
 (0)