Difference between revisions of "TIncrementalCachePage"
From Ultibo.org
(Created page with "Return to Unit Filesystem __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible...") |
|||
Line 22: | Line 22: | ||
|- | |- | ||
| <code>FReadSector:LongWord;</code> | | <code>FReadSector:LongWord;</code> | ||
− | | | + | | Current Read Start Sector |
|- | |- | ||
| <code>FReadCount:Word;</code> | | <code>FReadCount:Word;</code> | ||
− | | | + | | Current Read Sector Count |
|- | |- | ||
|colspan="2"| | |colspan="2"| | ||
|- | |- | ||
| <code>FDirtySector:LongWord;</code> | | <code>FDirtySector:LongWord;</code> | ||
− | | | + | | Current Dirty Start Sector |
|- | |- | ||
| <code>FDirtyCount:Word;</code> | | <code>FDirtyCount:Word;</code> | ||
− | | | + | | Current Dirty Sector Count |
|- | |- | ||
|colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | |colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | ||
|- | |- | ||
| <code>property ReadSector:LongWord read FReadSector write FReadSector;</code> | | <code>property ReadSector:LongWord read FReadSector write FReadSector;</code> | ||
− | | | + | | style="width: 50%;"| |
|- | |- | ||
| <code>property ReadCount:Word read FReadCount write FReadCount;</code> | | <code>property ReadCount:Word read FReadCount write FReadCount;</code> |
Latest revision as of 04:24, 20 July 2023
Return to Unit Filesystem
Description
To be documented
Class definitions
TIncrementalCachePage = class(THashCachePage)
private
| |
FReadSector:LongWord;
|
Current Read Start Sector |
FReadCount:Word;
|
Current Read Sector Count |
FDirtySector:LongWord;
|
Current Dirty Start Sector |
FDirtyCount:Word;
|
Current Dirty Sector Count |
public
| |
property ReadSector:LongWord read FReadSector write FReadSector;
|
|
property ReadCount:Word read FReadCount write FReadCount;
|
|
property DirtySector:LongWord read FDirtySector write FDirtySector;
|
|
property DirtyCount:Word read FDirtyCount write FDirtyCount;
|
|
function ReadData:Pointer;
|
|
function DirtyData:Pointer;
|
Function declarations
function TIncrementalCachePage.ReadData:Pointer;
Description: To be documented
Note | None documented |
---|
function TIncrementalCachePage.DirtyData:Pointer;
Description: To be documented
Note | None documented |
---|
Return to Unit Reference