You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
681 B
37 lines
681 B
#pragma once
|
|
|
|
DECLARE_CLASS( UDF_LVOL );
|
|
|
|
class SCAN_ALLOCTION_DESCRIPTORS : public OBJECT {
|
|
|
|
public:
|
|
|
|
BOOL
|
|
Initialize
|
|
(
|
|
PUDF_LVOL UdfLVol,
|
|
PICBFILE FileIcbEntry
|
|
);
|
|
|
|
BOOL
|
|
Next
|
|
(
|
|
PULONG StartBlockNum,
|
|
PULONG Length,
|
|
PSHORT Type
|
|
);
|
|
|
|
private:
|
|
|
|
USHORT _AdType;
|
|
LPBYTE _AllocationDescriptors;
|
|
ULONG _AllocationDescriptorLength;
|
|
ULONG _AllocDescOffset;
|
|
|
|
LPBYTE _ReadBuffer;
|
|
|
|
ULONG _SectorSize;
|
|
PUDF_LVOL _UdfLVol;
|
|
|
|
};
|
|
|