Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Novlib 3.30 Online Reference - <b> volblocksizeget()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 VolBlockSizeGet()
------------------------------------------------------------------------------
 Purpose:
 Get the block size of a volume.

 Syntax:
 iBlkSize = VolBlockSizeGet( iVolNum )

 Parameters:
 iVolNum The volume number - 0 for the first volume, 1 for the second etc.

 Returns:
 A numeric value (signed short int).

 The CA-Clipper name for this function is:
 VolBlkSizGet()

 Description:
 VolBlockSizeGet() returns the size of each storage block on volume number
 iVolNum.

 Returns NOVERRINT if an error occurs.

 Example:
 // To display the storage block size for the first disk volume:
 iBlockSize = VolBlockSizeGet(0)
 if ( iBlockSize != NOVERRINT )
    ? "The block size of volume 0 is ", iBlockSize
 endif

See Also: VolBlockFreeGet() VolBlockMaxGet()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson