Function 56 - write file to hard disk.
Parameters:
- eax = 56 - function number
- ebx = pointer to the file name
- ecx = size of data to write (in bytes)
- edx = pointer to data to write
- esi = pointer to path (ASCIIZ-string)
Returned value:
Remarks:
- This function is obsolete; function 70 allows to fulfil the same
operations with the extended possibilities.
- This function assumes that during its call by one application
no other application works with hard disk.
- The path to file is ASCIIZ-string, which may be empty
(if the file is created in the root folder) or have the format
/d1/d2/.../dn, where all folder names must have the 8+3 format,
i.e. 8 characters of name and 3 characters of the extension
without separator, supplemented by blanks if necessary;
all letters must be capital.
- The file name must also have the format 8+3.