Jump to content

FS FLUSHBUF: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
No edit summary
Line 19: Line 19:
   
   
  int far pascal FS_FLUSHBUF(hVPB, flag)
  int far pascal FS_FLUSHBUF(hVPB, flag)
[[Category:IFS Interfaces]]

Revision as of 21:28, 20 November 2019

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.
0 indicates cached data may be retained.
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)