 |
mmioOpen ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The mmioOpen function opens a file for unbuffered or buffered I/O. The file can be a standard file, a memory file, or an element of a custom storage system. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HMMIO mmioOpen(
LPSTR szFilename,
LPMMIOINFO lpmmioinfo,
DWORD dwOpenFlags
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER mmioOpen IN winmm;
STRING szFilename,;
STRING @ lpmmioinfo,;
INTEGER dwOpenFlags
|
 |
 |
 |
| Parameters: |
 |
szFilename
Pointer to a string containing the filename of the file to open.
lpmmioinfo
Pointer to an MMIOINFO structure containing extra parameters used by mmioOpen.
dwOpenFlags
Flags for the open operation.
|
 |
 |
| Return value: |
 |
| Returns a handle of the opened file. If the file cannot be opened, the return value is NULL. |
 |
 |
| My comment: |
 |
| The handle returned by mmioOpen is not a standard file handle. Do not use it with any file I/O functions other than multimedia file I/O functions. |
 |
 |
| Word Index links for the mmioOpen : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2003-07-22 21:12:55 | | Modified: | 2003-07-22 21:15:36 | Visited in last 7 days: 22 |