error = SetVBuf(fh, buff, type, size)
D0 D1 D2 D3 D4
LONG SetVBuf(BPTR, STRPTR, LONG, LONG)
Changes the buffering modes and buffer size for a FileHandle. With buff == NULL, the current buffer will be deallocated and a new one of (approximately) size will be allocated. If buffer is non-NULL, it will be used for buffering and must be at least max(size,208) bytes long, and MUST be longword aligned. If size is -1, then only the buffering mode will be changed.
Note that a user-supplied buffer will not be freed if it is later replaced by another SetVBuf() call, nor will it be freed if the FileHandle is closed.
Has no effect on the buffersize of filehandles that were not created by
AllocDosObject().
Not implemented until after V39. From V36 up to V39, always returned 0.
Changing the size of the buffer on a file opened on "NIL:" will lead to memory corruption and/or a crash when that file is closed in V36-V47.24.