Jump to content

FS_FLUSHBUF

From EDM2
Revision as of 04:54, 21 May 2019 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:FS_FLUSHBUF}} Flushes cache buffers for a specific volume. ==Syntax== int far pascal FS_FLUSHBUF(hVPB, flag) ==Parameters== ; hVPB: is the handle to the volume...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Flushes cache buffers for a specific volume.

Syntax

int far pascal FS_FLUSHBUF(hVPB, flag)

Parameters

hVPB
is the handle to the volume for flush.
flag
is used to indicate discarding of cached data.
flag == 0 indicates cached data may be retained.
flag == 1 indicates the FSD will discard any cached data after flushing it to the specified volume.
All other values are reserved.

Returns

None.

Sample

unsigned short hVPB;
unsigned short flag;

int far pascal FS_FLUSHBUF(hVPB, flag)

Remarks

None.