Changes the number of buffers for a filesystem
Source position: amigados.pas line 2123
function AddBuffers(  | 
name: PChar;  | 
number: LongInt  | 
):LongBool;  | 
Add or remove cache memory to/from a filesystem. The amount of memory per cache buffer and the limit depends on the filesystem.
Some old filesystems return the actual buffer size. See the snippet for a workaround for that case.
Snippet:
Res1 := AddBuffers('df0:', 10); Res2 := IoErr(); if (res1 <> DosFalse) and (res1 <> DosTrue) then begin Res2 := Res1; Res1 := DosTrue; end;
  | 
Return extra information from the system  |