Name
hw_FWrite -- write data to file handle (V5.0)
Synopsis
int written = hw_FWrite(APTR handle, APTR buf, ULONG size);
Function
This function writes the specified number of bytes from the memory buffer specified in parameter 2 to the file handle passed in parameter 1. It returns the number of bytes actually written.

This function is thread-safe.

Designer compatibility
Supported since Designer 4.0

Inputs
handle
file handle returned by hw_FOpen()
buf
source memory buffer
size
number of bytes to write to file handle
Results
written
number of bytes actually written

Show TOC