 |
mmioCreateChunk ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The mmioCreateChunk function creates a chunk in a RIFF file that was opened by using the mmioOpen function. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
MMRESULT mmioCreateChunk(
HMMIO hmmio,
LPMMCKINFO lpck,
UINT wFlags
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER mmioCreateChunk IN winmm;
INTEGER hmmio,;
STRING @ lpck,;
INTEGER wFlags
|
 |
 |
 |
| Parameters: |
 |
hmmio
File handle of an open RIFF file.
lpck
Pointer to a buffer that receives a MMCKINFO structure containing information about the chunk to be created.
wFlags
Flags identifying what type of chunk to create.
|
 |
 |
| Return value: |
 |
| Returns MMSYSERR_NOERROR (0) if successful or an error otherwise. |
 |
 |
| My comment: |
 |
The new chunk is created at the current file position. After the new chunk is created, the current file position is the beginning of the data portion of the new chunk.
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2003-09-16 14:52:48 | | Modified: | 2003-09-16 14:54:45 | Visited in last 7 days: 13 |