The mmioSetBuffer function enables or disables buffered I/O, or changes the buffer or buffer size for a file opened by using the mmioOpen function.
MMRESULT mmioSetBuffer(
HMMIO hmmio,
LPSTR pchBuffer,
LONG cchBuffer,
UINT wFlags
);
Returns zero if successful or an error otherwise. If an error occurs, the file handle remains valid. The following values are defined:
Value | Description |
---|---|
MMIOERR_CANNOTWRITE | The contents of the old buffer could not be written to disk, so the operation was aborted. |
MMIOERR_OUTOFMEMORY | The new buffer could not be allocated, probably due to a lack of available memory. |
To enable buffering using an internal buffer, set pchBuffer to NULL and cchBuffer to the desired buffer size.
To supply your own buffer, set pchBuffer to point to the buffer, and set cchBuffer to the size of the buffer.
To disable buffered I/O, set pchBuffer to NULL and cchBuffer to zero.
If buffered I/O is already enabled using an internal buffer, you can reallocate the buffer to a different size by setting pchBuffer to NULL and cchBuffer to the new buffer size. The contents of the buffer can be changed after resizing.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in mmsystem.h.
Import Library: Use winmm.lib.
Multimedia File I/O Overview, Multimedia File I/O Functions, mmioOpen