Function 32 - delete file from ramdisk.
Parameters:
- eax = 32 - function number
- ebx = pointer to the filename
Returned value:
Remarks:
- This function is obsolete; function 58 allows to fulfill
the same operations with the extended possibilities.
- The current implementation returns only values 0(success) and
5(file not found).
- The filename must be either in the format 8+3 characters
(first 8 characters - name itself, last 3 - extension,
the short names and extensions are supplemented with spaces),
or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
(name no more than 8 characters, dot, extension 3 characters
supplemented if necessary by spaces).
The filename must be written with capital letters. The terminating
character with code 0 is not necessary (not ASCIIZ-string).
- This function does not support folders on the ramdisk.