We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f5858 commit 9afbfe5Copy full SHA for 9afbfe5
boot/freeldr/freeldr/include/fs/ntfs.h
@@ -227,6 +227,16 @@ typedef struct
227
} NTFS_INDEX_ENTRY, *PNTFS_INDEX_ENTRY;
228
#include <poppack.h>
229
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
+
240
typedef struct
241
{
242
PUCHAR CacheRun;
@@ -235,6 +245,8 @@ typedef struct
245
ULONGLONG CacheRunLength;
246
LONGLONG CacheRunLastLCN;
247
ULONGLONG CacheRunCurrentOffset;
248
+ PNTFS_RUN_LIST CacheRunList;
249
+ ULONGLONG CacheRunListFileSize;
250
NTFS_ATTR_RECORD Record;
251
} NTFS_ATTR_CONTEXT, *PNTFS_ATTR_CONTEXT;
252
0 commit comments