Performs a quick write of data in a file on the local server
#include <nwfileng.h>
int FEQuickWrite (
LONG connection,
LONG handle,
LONG position,
LONG bytesToWrite,
void *buffer);
(IN) Specifies the connection writing the data.
(IN) Specifies the handle of the file to which the data is being written.
(IN) Specifies the location in the file at which to start writing.
(IN) Specifies the number of bytes to write.
(OUT) Points to the buffer into which the written data is stored.
FEQuickWrite is designated "quick" because it bypasses some of the higher I/O levels in the server libraries.
FEQuickWrite is useful only in conjunction with the File System Monitoring Hooks functions and other FEQuick functions. The lower level handle used with FEQuickWrite is returned in FEQuickOpen and is not valid for more conventional functions like read, write, or close.
NOTE:It is the responsibility of the caller to keep track of and maintain the position parameter.