In the global interface table:
[wine] / dlls / winmm / mmio.c
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3  * MMIO functions
4  *
5  * Copyright 1998 Andrew Taylor
6  * Copyright 1998 Ove Kåven
7  * Copyright 2000,2002 Eric Pouech
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 /* Still to be done:
25  *      + correct handling of global/local IOProcs (and temporary IOProcs)
26  *      + mode of mmio objects is not used (read vs write vs readwrite)
27  *      + thread safeness
28  *      + 32 A <=> W message mapping
29  */
30
31
32 #include <ctype.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <errno.h>
36 #include <assert.h>
37
38 #include "mmsystem.h"
39 #include "windef.h"
40 #include "heap.h"
41 #include "winemm.h"
42
43 #include "wine/debug.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(mmio);
46
47 LRESULT         (*pFnMmioCallback16)(SEGPTR,LPMMIOINFO,UINT,LPARAM,LPARAM) /* = NULL */;
48
49 /**************************************************************************
50  *                      mmioDosIOProc                           [internal]
51  */
52 static LRESULT CALLBACK mmioDosIOProc(LPMMIOINFO lpmmioinfo, UINT uMessage,
53                                       LPARAM lParam1, LPARAM lParam2)
54 {
55     LRESULT     ret = MMSYSERR_NOERROR;
56
57     TRACE("(%p, %X, 0x%lx, 0x%lx);\n", lpmmioinfo, uMessage, lParam1, lParam2);
58
59     switch (uMessage) {
60     case MMIOM_OPEN:
61         {
62             /* Parameters:
63              * lParam1 = szFileName parameter from mmioOpen
64              * lParam2 = reserved
65              * Returns: zero on success, error code on error
66              * NOTE: lDiskOffset automatically set to zero
67              */
68             LPCSTR      szFileName = (LPCSTR)lParam1;
69
70             if (lpmmioinfo->dwFlags & MMIO_GETTEMP) {
71                 FIXME("MMIO_GETTEMP not implemented\n");
72                 return MMIOERR_CANNOTOPEN;
73             }
74
75             /* if filename NULL, assume open file handle in adwInfo[0] */
76             if (szFileName) {
77                 OFSTRUCT    ofs;
78                 lpmmioinfo->adwInfo[0] = (DWORD)OpenFile(szFileName, &ofs, lpmmioinfo->dwFlags & 0xFFFF);
79             }
80             if (lpmmioinfo->adwInfo[0] == (DWORD)HFILE_ERROR)
81                 ret = MMIOERR_CANNOTOPEN;
82         }
83         break;
84
85     case MMIOM_CLOSE:
86         /* Parameters:
87          * lParam1 = wFlags parameter from mmioClose
88          * lParam2 = unused
89          * Returns: zero on success, error code on error
90          */
91         if (!(lParam1 & MMIO_FHOPEN))
92             _lclose((HFILE)lpmmioinfo->adwInfo[0]);
93         break;
94
95     case MMIOM_READ:
96         /* Parameters:
97          * lParam1 = huge pointer to read buffer
98          * lParam2 = number of bytes to read
99          * Returns: number of bytes read, 0 for EOF, -1 for error (error code
100          *         in wErrorRet)
101          */
102         ret = _lread((HFILE)lpmmioinfo->adwInfo[0], (HPSTR)lParam1, (LONG)lParam2);
103         if (ret != -1)
104             lpmmioinfo->lDiskOffset += ret;
105
106         break;
107
108     case MMIOM_WRITE:
109     case MMIOM_WRITEFLUSH:
110         /* no internal buffering, so WRITEFLUSH handled same as WRITE */
111
112         /* Parameters:
113          * lParam1 = huge pointer to write buffer
114          * lParam2 = number of bytes to write
115          * Returns: number of bytes written, -1 for error (error code in
116          *              wErrorRet)
117          */
118         ret = _hwrite((HFILE)lpmmioinfo->adwInfo[0], (HPSTR)lParam1, (LONG)lParam2);
119         if (ret != -1)
120             lpmmioinfo->lDiskOffset += ret;
121         break;
122
123     case MMIOM_SEEK:
124         /* Parameters:
125          * lParam1 = new position
126          * lParam2 = from whence to seek (SEEK_SET, SEEK_CUR, SEEK_END)
127          * Returns: new file postion, -1 on error
128          */
129         ret = _llseek((HFILE)lpmmioinfo->adwInfo[0], (LONG)lParam1, (LONG)lParam2);
130         if (ret != -1)
131             lpmmioinfo->lDiskOffset = ret;
132         return ret;
133
134     case MMIOM_RENAME:
135         /* Parameters:
136          * lParam1 = old name
137          * lParam2 = new name
138          * Returns: zero on success, non-zero on failure
139          */
140          if (!MoveFileA((const char*)lParam1, (const char*)lParam2))
141              ret = MMIOERR_FILENOTFOUND;
142          break;
143
144     default:
145         FIXME("unexpected message %u\n", uMessage);
146         return 0;
147     }
148
149     return ret;
150 }
151
152 /**************************************************************************
153  *                      mmioMemIOProc                           [internal]
154  */
155 static LRESULT CALLBACK mmioMemIOProc(LPMMIOINFO lpmmioinfo, UINT uMessage,
156                                       LPARAM lParam1, LPARAM lParam2)
157 {
158     TRACE("(%p,0x%04x,0x%08lx,0x%08lx)\n", lpmmioinfo, uMessage, lParam1, lParam2);
159
160     switch (uMessage) {
161
162     case MMIOM_OPEN:
163         /* Parameters:
164          * lParam1 = filename (must be NULL)
165          * lParam2 = reserved
166          * Returns: zero on success, error code on error
167          * NOTE: lDiskOffset automatically set to zero
168          */
169         /* FIXME: io proc shouldn't change it */
170         if (!(lpmmioinfo->dwFlags & MMIO_CREATE))
171             lpmmioinfo->pchEndRead = lpmmioinfo->pchEndWrite;
172         lpmmioinfo->adwInfo[0] = HFILE_ERROR;
173         return 0;
174
175     case MMIOM_CLOSE:
176         /* Parameters:
177          * lParam1 = wFlags parameter from mmioClose
178          * lParam2 = unused
179          * Returns: zero on success, error code on error
180          */
181         return 0;
182
183     case MMIOM_READ:
184         /* Parameters:
185          * lParam1 = huge pointer to read buffer
186          * lParam2 = number of bytes to read
187          * Returns: number of bytes read, 0 for EOF, -1 for error (error code
188          *         in wErrorRet)
189          * NOTE: lDiskOffset should be updated
190          */
191         FIXME("MMIOM_READ on memory files should not occur, buffer may be lost!\n");
192         return 0;
193
194     case MMIOM_WRITE:
195     case MMIOM_WRITEFLUSH:
196         /* no internal buffering, so WRITEFLUSH handled same as WRITE */
197
198         /* Parameters:
199          * lParam1 = huge pointer to write buffer
200          * lParam2 = number of bytes to write
201          * Returns: number of bytes written, -1 for error (error code in
202          *              wErrorRet)
203          * NOTE: lDiskOffset should be updated
204          */
205         FIXME("MMIOM_WRITE on memory files should not occur, buffer may be lost!\n");
206         return 0;
207
208     case MMIOM_SEEK:
209         /* Parameters:
210          * lParam1 = new position
211          * lParam2 = from whence to seek (SEEK_SET, SEEK_CUR, SEEK_END)
212          * Returns: new file postion, -1 on error
213          * NOTE: lDiskOffset should be updated
214          */
215         FIXME("MMIOM_SEEK on memory files should not occur, buffer may be lost!\n");
216         return -1;
217
218     default:
219         FIXME("unexpected message %u\n", uMessage);
220         return 0;
221     }
222
223     return 0;
224 }
225
226 /* This array will be the entire list for most apps 
227  * Note that temporary ioProcs will be stored with a 0 fourCC code
228  */
229
230 static struct IOProcList defaultProcs[] = {
231     {&defaultProcs[1], FOURCC_DOS, (LPMMIOPROC)mmioDosIOProc, MMIO_PROC_32A, 0},
232     {NULL,             FOURCC_MEM, (LPMMIOPROC)mmioMemIOProc, MMIO_PROC_32A, 0},
233 };
234
235 static struct IOProcList*       pIOProcListAnchor = &defaultProcs[0];
236
237 /****************************************************************
238  *              MMIO_FindProcNode                       [INTERNAL]
239  *
240  * Finds the ProcList node associated with a given FOURCC code.
241  */
242 static struct IOProcList*       MMIO_FindProcNode(FOURCC fccIOProc)
243 {
244     struct IOProcList*  pListNode;
245
246     for (pListNode = pIOProcListAnchor; pListNode; pListNode = pListNode->pNext) {
247         if (pListNode->fourCC == fccIOProc) {
248             return pListNode;
249         }
250     }
251     return NULL;
252 }
253
254 /****************************************************************
255  *              MMIO_InstallIOProc                      [INTERNAL]
256  */
257 LPMMIOPROC MMIO_InstallIOProc(FOURCC fccIOProc, LPMMIOPROC pIOProc,
258                               DWORD dwFlags, enum mmioProcType type)
259 {
260     LPMMIOPROC          lpProc = NULL;
261     struct IOProcList*  pListNode;
262     struct IOProcList** ppListNode;
263
264     TRACE("(%08lx, %p, %08lX, %i)\n", fccIOProc, pIOProc, dwFlags, type);
265
266     if (dwFlags & MMIO_GLOBALPROC)
267         FIXME("Global procedures not implemented\n");
268
269     /* just handle the known procedures for now */
270     switch (dwFlags & (MMIO_INSTALLPROC|MMIO_REMOVEPROC|MMIO_FINDPROC)) {
271     case MMIO_INSTALLPROC:
272         /* Create new entry for the IOProc list */
273         pListNode = HeapAlloc(GetProcessHeap(), 0, sizeof(*pListNode));
274         if (pListNode) {
275             /* Fill in this node */
276             pListNode->fourCC = fccIOProc;
277             pListNode->pIOProc = pIOProc;
278             pListNode->type = type;
279             pListNode->count = 0;
280
281             /* Stick it on the end of the list */
282             pListNode->pNext = pIOProcListAnchor;
283             pIOProcListAnchor = pListNode;
284
285             /* Return this IOProc - that's how the caller knows we succeeded */
286             lpProc = pIOProc;
287         }
288         break;
289
290     case MMIO_REMOVEPROC:
291         /*
292          * Search for the node that we're trying to remove
293          * We search for a matching fourCC code if it's non null, or the proc
294          * address otherwise
295          * note that this method won't find the first item on the list, but
296          * since the first two items on this list are ones we won't
297          * let the user delete anyway, that's okay
298          */
299         ppListNode = &pIOProcListAnchor;
300         while ((*ppListNode) && 
301                ((fccIOProc != 0) ? 
302                 (*ppListNode)->fourCC != fccIOProc : 
303                 (*ppListNode)->pIOProc != pIOProc))
304             ppListNode = &((*ppListNode)->pNext);
305
306         if (*ppListNode) { /* found it */
307             /* FIXME: what should be done if an open mmio object uses this proc ?
308              * shall we return an error, nuke the mmio object ?
309              */
310             if ((*ppListNode)->count) {
311                 ERR("Cannot remove a mmIOProc while in use\n");
312                 break;
313             }
314             /* remove it, but only if it isn't builtin */
315             if ((*ppListNode) >= defaultProcs &&
316                 (*ppListNode) < defaultProcs + sizeof(defaultProcs)) {
317                 WARN("Tried to remove built-in mmio proc. Skipping\n");
318             } else {
319                 /* Okay, nuke it */
320                 struct IOProcList*  ptmpNode = *ppListNode;
321                 lpProc = (*ppListNode)->pIOProc;
322                 *ppListNode = (*ppListNode)->pNext;
323                 HeapFree(GetProcessHeap(), 0, ptmpNode);
324             }
325         }
326         break;
327
328     case MMIO_FINDPROC:
329         if ((pListNode = MMIO_FindProcNode(fccIOProc))) {
330             lpProc = pListNode->pIOProc;
331         }
332         break;
333     }
334
335     return lpProc;
336 }
337
338 /****************************************************************
339  *              send_message                            [INTERNAL]
340  */
341 static LRESULT  send_message(struct IOProcList* ioProc, LPMMIOINFO mmioinfo,
342                              DWORD wMsg, LPARAM lParam1,
343                              LPARAM lParam2, enum mmioProcType type)
344 {
345     LRESULT             result = MMSYSERR_ERROR;
346     LPARAM              lp1 = lParam1, lp2 = lParam2;
347
348     if (!ioProc) {
349         ERR("brrr\n");
350         result = MMSYSERR_INVALPARAM;
351     }
352
353     switch (ioProc->type) {
354     case MMIO_PROC_16:
355         if (pFnMmioCallback16)
356             result = pFnMmioCallback16((SEGPTR)ioProc->pIOProc,
357                                        mmioinfo, wMsg, lp1, lp2);
358         break;
359     case MMIO_PROC_32A:
360     case MMIO_PROC_32W:
361         if (ioProc->type != type) {
362             /* map (lParam1, lParam2) into (lp1, lp2) 32 A<=>W */
363             FIXME("NIY 32 A<=>W mapping\n");
364         }
365         result = (ioProc->pIOProc)((LPSTR)mmioinfo, wMsg, lp1, lp2);
366
367 #if 0
368         if (ioProc->type != type) {
369             /* unmap (lParam1, lParam2) into (lp1, lp2) 32 A<=>W */
370         }
371 #endif
372         break;
373     default:
374         FIXME("Internal error\n");
375     }
376
377     return result;
378 }
379
380 /**************************************************************************
381  *                              MMIO_ParseExtA                  [internal]
382  *
383  * Parses a filename for the extension.
384  *
385  * RETURNS
386  *  The FOURCC code for the extension if found, else 0.
387  */
388 static FOURCC MMIO_ParseExtA(LPCSTR szFileName)
389 {
390     /* Filenames are of the form file.ext+ABC
391        FIXME: What if a '+' is part of the file name?
392        For now, we take the last '+' present */
393
394     FOURCC ret = 0;
395
396     /* Note that ext{Start,End} point to the . and + respectively */
397     LPSTR extEnd;
398
399     TRACE("(%s)\n", debugstr_a(szFileName));
400
401     if (!szFileName)
402         return ret;
403     extEnd = strrchr(szFileName,'+');
404     if (extEnd) {
405         /* Need to parse to find the extension */
406         LPSTR extStart;
407
408         extStart = extEnd;
409         while (extStart >= szFileName && extStart[0] != '.') {
410             extStart--;
411         }
412
413         if (extStart < szFileName) {
414             ERR("+ but no . in szFileName: %s\n", debugstr_a(szFileName));
415         } else {
416             CHAR ext[5];
417
418             if (extEnd - extStart - 1 > 4)
419                 WARN("Extension length > 4\n");
420             lstrcpynA(ext, extStart + 1, min(extEnd-extStart,5));
421             TRACE("Got extension: %s\n", debugstr_a(ext));
422             /* FOURCC codes identifying file-extensions must be uppercase */
423             ret = mmioStringToFOURCCA(ext, MMIO_TOUPPER);
424         }
425     }
426     return ret;
427 }
428
429 /**************************************************************************
430  *                              MMIO_Get                        [internal]
431  *
432  * Retrieves the mmio object from current process
433  */
434 LPWINE_MMIO     MMIO_Get(HMMIO h)
435 {
436     LPWINE_MMIO         wm = NULL;
437
438     EnterCriticalSection(&WINMM_IData->cs);
439     for (wm = WINMM_IData->lpMMIO; wm; wm = wm->lpNext) {
440         if (wm->info.hmmio == h)
441             break;
442     }
443     LeaveCriticalSection(&WINMM_IData->cs);
444     return wm;
445 }
446
447 /**************************************************************************
448  *                              MMIO_Create                     [internal]
449  *
450  * Creates an internal representation for a mmio instance
451  */
452 static  LPWINE_MMIO             MMIO_Create(void)
453 {
454     static      WORD    MMIO_counter = 0;
455     LPWINE_MMIO         wm;
456
457     wm = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINE_MMIO));
458     if (wm) {
459         EnterCriticalSection(&WINMM_IData->cs);
460         /* lookup next unallocated WORD handle, with a non NULL value */
461         while (++MMIO_counter == 0 || MMIO_Get(HMMIO_32(MMIO_counter)));
462         wm->info.hmmio = HMMIO_32(MMIO_counter);
463         wm->lpNext = WINMM_IData->lpMMIO;
464         WINMM_IData->lpMMIO = wm;
465         LeaveCriticalSection(&WINMM_IData->cs);
466     }
467     return wm;
468 }
469
470 /**************************************************************************
471  *                              MMIO_Destroy                    [internal]
472  *-
473  * Destroys an internal representation for a mmio instance
474  */
475 static  BOOL            MMIO_Destroy(LPWINE_MMIO wm)
476 {
477     LPWINE_MMIO*        m;
478
479     EnterCriticalSection(&WINMM_IData->cs);
480     /* search for the matching one... */
481     m = &(WINMM_IData->lpMMIO);
482     while (*m && *m != wm) m = &(*m)->lpNext;
483     /* ...and destroy */
484     if (*m) {
485         *m = (*m)->lpNext;
486         HeapFree(GetProcessHeap(), 0, wm);
487         wm = NULL;
488     }
489     LeaveCriticalSection(&WINMM_IData->cs);
490     return wm ? FALSE : TRUE;
491 }
492
493 /****************************************************************
494  *                      MMIO_Flush                      [INTERNAL]
495  */
496 static  MMRESULT MMIO_Flush(WINE_MMIO* wm, UINT uFlags)
497 {
498     if (wm->info.cchBuffer && (wm->info.fccIOProc != FOURCC_MEM)) {
499         /* not quite sure what to do here, but I'll guess */
500         if (wm->info.dwFlags & MMIO_DIRTY) {
501             /* FIXME: error handling */
502             send_message(wm->ioProc, &wm->info, MMIOM_SEEK, 
503                          wm->info.lBufOffset, SEEK_SET, MMIO_PROC_32A);
504             send_message(wm->ioProc, &wm->info, MMIOM_WRITE, 
505                          (LPARAM)wm->info.pchBuffer,
506                          wm->info.pchNext - wm->info.pchBuffer, MMIO_PROC_32A);
507         }
508         if (uFlags & MMIO_EMPTYBUF)
509             wm->info.pchNext = wm->info.pchEndRead = wm->info.pchBuffer;
510     }
511     wm->info.dwFlags &= ~MMIO_DIRTY;
512
513     return MMSYSERR_NOERROR;
514 }
515
516 /***************************************************************************
517  *                      MMIO_GrabNextBuffer                     [INTERNAL]
518  */
519 static LONG     MMIO_GrabNextBuffer(LPWINE_MMIO wm, int for_read)
520 {
521     LONG        size = wm->info.cchBuffer;
522
523     TRACE("bo=%lx do=%lx of=%lx\n",
524           wm->info.lBufOffset, wm->info.lDiskOffset,
525           send_message(wm->ioProc, &wm->info, MMIOM_SEEK, 0, SEEK_CUR, MMIO_PROC_32A));
526
527     wm->info.lBufOffset = wm->info.lDiskOffset;
528     wm->info.pchNext = wm->info.pchBuffer;
529     wm->info.pchEndRead = wm->info.pchBuffer;
530     wm->info.pchEndWrite = wm->info.pchBuffer + wm->info.cchBuffer;
531
532     wm->bBufferLoaded = TRUE;
533     if (for_read) {
534         size = send_message(wm->ioProc, &wm->info, MMIOM_READ, 
535                             (LPARAM)wm->info.pchBuffer, size, MMIO_PROC_32A);
536         if (size > 0)
537             wm->info.pchEndRead += size;
538         else
539             wm->bBufferLoaded = FALSE;
540     }
541
542     return size;
543 }
544
545 /***************************************************************************
546  *                      MMIO_SetBuffer                          [INTERNAL]
547  */
548 static MMRESULT MMIO_SetBuffer(WINE_MMIO* wm, void* pchBuffer, LONG cchBuffer,
549                                UINT uFlags)
550 {
551     TRACE("(%p %p %ld %u)\n", wm, pchBuffer, cchBuffer, uFlags);
552
553     if (uFlags)                 return MMSYSERR_INVALPARAM;
554     if (cchBuffer > 0xFFFF)
555         WARN("Untested handling of huge mmio buffers (%ld >= 64k)\n", cchBuffer);
556
557     if (MMIO_Flush(wm, 0) != MMSYSERR_NOERROR)
558         return MMIOERR_CANNOTWRITE;
559
560     /* free previous buffer if allocated */
561     if (wm->info.dwFlags & MMIO_ALLOCBUF) {
562         HeapFree(GetProcessHeap(), 0, wm->info.pchBuffer);
563         wm->info.pchBuffer = NULL;
564         wm->info.dwFlags &= ~MMIO_ALLOCBUF;
565     }
566
567     if (pchBuffer) {
568         wm->info.pchBuffer = pchBuffer;
569     } else if (cchBuffer) {
570         if (!(wm->info.pchBuffer = HeapAlloc(GetProcessHeap(), 0, cchBuffer)))
571             return MMIOERR_OUTOFMEMORY;
572         wm->info.dwFlags |= MMIO_ALLOCBUF;
573     } else {
574         wm->info.pchBuffer = NULL;
575     }
576
577     wm->info.cchBuffer = cchBuffer;
578     wm->info.pchNext = wm->info.pchBuffer;
579     wm->info.pchEndRead = wm->info.pchBuffer;
580     wm->info.pchEndWrite = wm->info.pchBuffer + cchBuffer;
581     wm->info.lBufOffset = 0;
582     wm->bBufferLoaded = FALSE;
583
584     return MMSYSERR_NOERROR;
585 }
586
587 /**************************************************************************
588  *                      MMIO_Open                               [internal]
589  */
590 HMMIO MMIO_Open(LPSTR szFileName, MMIOINFO* refmminfo, DWORD dwOpenFlags, 
591                 enum mmioProcType type)
592 {
593     LPWINE_MMIO         wm;
594     MMIOINFO            mmioinfo;
595
596     TRACE("('%s', %p, %08lX, %d);\n", szFileName, refmminfo, dwOpenFlags, type);
597
598     if (!refmminfo) {
599         refmminfo = &mmioinfo;
600
601         mmioinfo.fccIOProc = 0;
602         mmioinfo.pIOProc = NULL;
603         mmioinfo.pchBuffer = NULL;
604         mmioinfo.cchBuffer = 0;
605         type = MMIO_PROC_32A;
606     }
607
608     if (dwOpenFlags & (MMIO_PARSE|MMIO_EXIST)) {
609         char    buffer[MAX_PATH];
610
611         if (GetFullPathNameA(szFileName, sizeof(buffer), buffer, NULL) >= sizeof(buffer))
612             return (HMMIO16)FALSE;
613         if ((dwOpenFlags & MMIO_EXIST) && (GetFileAttributesA(buffer) == -1))
614             return (HMMIO)FALSE;
615         strcpy(szFileName, buffer);
616         return (HMMIO)TRUE;
617     }
618
619     if ((wm = MMIO_Create()) == NULL)
620         return 0;
621
622     /* If both params are NULL, then parse the file name if available */
623     if (refmminfo->fccIOProc == 0 && refmminfo->pIOProc == NULL) {
624         wm->info.fccIOProc = MMIO_ParseExtA(szFileName);
625         /* Handle any unhandled/error case. Assume DOS file */
626         if (wm->info.fccIOProc == 0)
627             wm->info.fccIOProc = FOURCC_DOS;
628         if (!(wm->ioProc = MMIO_FindProcNode(wm->info.fccIOProc))) goto error2;
629         wm->bTmpIOProc = FALSE;
630     }
631     /* if just the four character code is present, look up IO proc */
632     else if (refmminfo->pIOProc == NULL) {
633         wm->info.fccIOProc = refmminfo->fccIOProc;
634         if (!(wm->ioProc = MMIO_FindProcNode(wm->info.fccIOProc))) goto error2;
635         wm->bTmpIOProc = FALSE;
636     }
637     /* if IO proc specified, use it and specified four character code */
638     else {
639         wm->info.fccIOProc = refmminfo->fccIOProc;
640         MMIO_InstallIOProc(wm->info.fccIOProc, refmminfo->pIOProc,
641                            MMIO_INSTALLPROC, type);
642         if (!(wm->ioProc = MMIO_FindProcNode(wm->info.fccIOProc))) goto error2;
643         assert(wm->ioProc->pIOProc == refmminfo->pIOProc);
644         wm->bTmpIOProc = TRUE;
645     }
646
647     wm->bBufferLoaded = FALSE;
648     wm->ioProc->count++;
649
650     if (dwOpenFlags & MMIO_ALLOCBUF) {
651         if ((refmminfo->wErrorRet = MMIO_SetBuffer(wm, NULL, MMIO_DEFAULTBUFFER, 0)))
652             goto error1;
653     } else if (wm->info.fccIOProc == FOURCC_MEM) {
654         refmminfo->wErrorRet = MMIO_SetBuffer(wm, refmminfo->pchBuffer, refmminfo->cchBuffer, 0);
655         if (refmminfo->wErrorRet != MMSYSERR_NOERROR)
656             goto error1;
657         wm->bBufferLoaded = TRUE;
658     } /* else => unbuffered, wm->info.pchBuffer == NULL */
659
660     /* see mmioDosIOProc for that one */
661     wm->info.adwInfo[0] = refmminfo->adwInfo[0];
662     wm->info.dwFlags = dwOpenFlags;
663
664     /* call IO proc to actually open file */
665     refmminfo->wErrorRet = send_message(wm->ioProc, &wm->info, MMIOM_OPEN, 
666                                         (LPARAM)szFileName, 0, MMIO_PROC_32A);
667
668     /* grab file size, when possible */
669     wm->dwFileSize = GetFileSize((HANDLE)wm->info.adwInfo[0], NULL);
670
671     if (refmminfo->wErrorRet == 0)
672         return wm->info.hmmio;
673  error1:
674     if (wm->ioProc) wm->ioProc->count--;
675  error2:
676     MMIO_Destroy(wm);
677     return 0;
678 }
679
680 /**************************************************************************
681  *                              mmioOpenW                       [WINMM.@]
682  */
683 HMMIO WINAPI mmioOpenW(LPWSTR szFileName, MMIOINFO* lpmmioinfo,
684                        DWORD dwOpenFlags)
685 {
686     HMMIO       ret;
687     LPSTR       szFn = HEAP_strdupWtoA(GetProcessHeap(), 0, szFileName);
688
689     ret = MMIO_Open(szFn, lpmmioinfo, dwOpenFlags, MMIO_PROC_32W);
690
691     HeapFree(GetProcessHeap(), 0, szFn);
692     return ret;
693 }
694
695 /**************************************************************************
696  *                              mmioOpenA                       [WINMM.@]
697  */
698 HMMIO WINAPI mmioOpenA(LPSTR szFileName, MMIOINFO* lpmmioinfo,
699                        DWORD dwOpenFlags)
700 {
701     return  MMIO_Open(szFileName, lpmmioinfo, dwOpenFlags, MMIO_PROC_32A);
702 }
703
704 /**************************************************************************
705  *                              mmioClose               [WINMM.@]
706  */
707 MMRESULT WINAPI mmioClose(HMMIO hmmio, UINT uFlags)
708 {
709     LPWINE_MMIO wm;
710     MMRESULT    result;
711
712     TRACE("(%p, %04X);\n", hmmio, uFlags);
713
714     if ((wm = MMIO_Get(hmmio)) == NULL)
715         return MMSYSERR_INVALHANDLE;
716
717     if ((result = MMIO_Flush(wm, 0)) != MMSYSERR_NOERROR)
718         return result;
719
720     result = send_message(wm->ioProc, &wm->info, MMIOM_CLOSE, 
721                           uFlags, 0, MMIO_PROC_32A);
722
723     MMIO_SetBuffer(wm, NULL, 0, 0);
724
725     wm->ioProc->count--;
726
727     if (wm->bTmpIOProc)
728         MMIO_InstallIOProc(wm->info.fccIOProc, wm->ioProc->pIOProc,
729                            MMIO_REMOVEPROC, wm->ioProc->type);
730
731     MMIO_Destroy(wm);
732
733     return result;
734 }
735
736 /**************************************************************************
737  *                              mmioRead                [WINMM.@]
738  */
739 LONG WINAPI mmioRead(HMMIO hmmio, HPSTR pch, LONG cch)
740 {
741     LPWINE_MMIO wm;
742     LONG        count;
743
744     TRACE("(%p, %p, %ld);\n", hmmio, pch, cch);
745
746     if ((wm = MMIO_Get(hmmio)) == NULL)
747         return -1;
748
749     /* unbuffered case first */
750     if (!wm->info.pchBuffer)
751         return send_message(wm->ioProc, &wm->info, MMIOM_READ, 
752                             (LPARAM)pch, cch, MMIO_PROC_32A);
753
754     /* first try from current buffer */
755     if (wm->info.pchNext != wm->info.pchEndRead) {
756         count = wm->info.pchEndRead - wm->info.pchNext;
757         if (count > cch || count < 0) count = cch;
758         memcpy(pch, wm->info.pchNext, count);
759         wm->info.pchNext += count;
760         pch += count;
761         cch -= count;
762     } else
763         count = 0;
764
765     if (cch && (wm->info.fccIOProc != FOURCC_MEM)) {
766         assert(wm->info.cchBuffer);
767
768         while (cch) {
769             LONG size;
770
771             size = MMIO_GrabNextBuffer(wm, TRUE);
772             if (size <= 0) break;
773             if (size > cch) size = cch;
774             memcpy(pch, wm->info.pchBuffer, size);
775             wm->info.pchNext += size;
776             pch += size;
777             cch -= size;
778             count += size;
779         }
780     }
781
782     TRACE("count=%ld\n", count);
783     return count;
784 }
785
786 /**************************************************************************
787  *                              mmioWrite               [WINMM.@]
788  */
789 LONG WINAPI mmioWrite(HMMIO hmmio, HPCSTR pch, LONG cch)
790 {
791     LPWINE_MMIO wm;
792     LONG        count;
793
794     TRACE("(%p, %p, %ld);\n", hmmio, pch, cch);
795
796     if ((wm = MMIO_Get(hmmio)) == NULL)
797         return -1;
798
799     if (wm->info.cchBuffer) {
800         LONG    bytesW = 0;
801
802         count = 0;
803         while (cch) {
804             if (wm->info.pchNext != wm->info.pchEndWrite) {
805                 count = wm->info.pchEndWrite - wm->info.pchNext;
806                 if (count > cch || count < 0) count = cch;
807                 memcpy(wm->info.pchNext, pch, count);
808                 wm->info.pchNext += count;
809                 pch += count;
810                 cch -= count;
811                 bytesW += count;
812                 wm->info.dwFlags |= MMIO_DIRTY;
813             } else {
814                 if (wm->info.fccIOProc == FOURCC_MEM) {
815                     if (wm->info.adwInfo[0]) {
816                         /* from where would we get the memory handle? */
817                         FIXME("memory file expansion not implemented!\n");
818                         break;
819                     } else break;
820                 }
821             }
822
823             if (wm->info.pchNext == wm->info.pchEndWrite)
824             {
825                 MMIO_Flush(wm, MMIO_EMPTYBUF);
826                 MMIO_GrabNextBuffer(wm, FALSE);
827             }
828             else break;
829         }
830         count = bytesW;
831     } else {
832         count = send_message(wm->ioProc, &wm->info, MMIOM_WRITE, 
833                              (LPARAM)pch, cch, MMIO_PROC_32A);
834         wm->info.lBufOffset = wm->info.lDiskOffset;
835     }
836
837     TRACE("bytes written=%ld\n", count);
838     return count;
839 }
840
841 /**************************************************************************
842  *                              mmioSeek                [WINMM.@]
843  */
844 LONG WINAPI mmioSeek(HMMIO hmmio, LONG lOffset, INT iOrigin)
845 {
846     LPWINE_MMIO wm;
847     LONG        offset;
848
849     TRACE("(%p, %08lX, %d);\n", hmmio, lOffset, iOrigin);
850
851     if ((wm = MMIO_Get(hmmio)) == NULL)
852         return MMSYSERR_INVALHANDLE;
853
854     /* not buffered, direct seek on file */
855     if (!wm->info.pchBuffer)
856         return send_message(wm->ioProc, &wm->info, MMIOM_SEEK, 
857                             lOffset, iOrigin, MMIO_PROC_32A);
858
859     switch (iOrigin) {
860     case SEEK_SET:
861         offset = lOffset;
862         break;
863     case SEEK_CUR:
864         offset = wm->info.lBufOffset + (wm->info.pchNext - wm->info.pchBuffer) + lOffset;
865         break;
866     case SEEK_END:
867         offset = ((wm->info.fccIOProc == FOURCC_MEM)? wm->info.cchBuffer : wm->dwFileSize) - lOffset;
868         break;
869     default:
870         return -1;
871     }
872
873     if (offset && offset >= wm->dwFileSize && wm->info.fccIOProc != FOURCC_MEM) {
874         /* should check that write mode exists */
875         if (MMIO_Flush(wm, 0) != MMSYSERR_NOERROR)
876             return -1;
877         wm->info.lBufOffset = offset;
878         wm->info.pchEndRead = wm->info.pchBuffer;
879         wm->info.pchEndWrite = wm->info.pchBuffer + wm->info.cchBuffer;
880         if ((wm->info.dwFlags & MMIO_RWMODE) == MMIO_READ) {
881             wm->info.lDiskOffset = wm->dwFileSize;
882         }
883     } else if ((wm->info.cchBuffer > 0) &&
884         ((offset < wm->info.lBufOffset) ||
885          (offset >= wm->info.lBufOffset + wm->info.cchBuffer) ||
886          !wm->bBufferLoaded)) {
887         /* stay in same buffer ? */
888         /* some memory mapped buffers are defined with -1 as a size */
889
890         /* condition to change buffer */
891         if ((wm->info.fccIOProc == FOURCC_MEM) ||
892             MMIO_Flush(wm, 0) != MMSYSERR_NOERROR ||
893             /* this also sets the wm->info.lDiskOffset field */
894             send_message(wm->ioProc, &wm->info, MMIOM_SEEK,
895                          (offset / wm->info.cchBuffer) * wm->info.cchBuffer,
896                          SEEK_SET, MMIO_PROC_32A) == -1)
897             return -1;
898         MMIO_GrabNextBuffer(wm, TRUE);
899     }
900
901     wm->info.pchNext = wm->info.pchBuffer + (offset - wm->info.lBufOffset);
902
903     TRACE("=> %ld\n", offset);
904     return offset;
905 }
906
907 /**************************************************************************
908  *                              mmioGetInfo             [WINMM.@]
909  */
910 MMRESULT WINAPI mmioGetInfo(HMMIO hmmio, MMIOINFO* lpmmioinfo, UINT uFlags)
911 {
912     LPWINE_MMIO         wm;
913
914     TRACE("(%p,%p,0x%08x)\n",hmmio,lpmmioinfo,uFlags);
915
916     if ((wm = MMIO_Get(hmmio)) == NULL)
917         return MMSYSERR_INVALHANDLE;
918
919     memcpy(lpmmioinfo, &wm->info, sizeof(MMIOINFO));
920     /* don't expose 16 bit ioproc:s */
921     if (wm->ioProc->type != MMIO_PROC_16)
922         lpmmioinfo->pIOProc = wm->ioProc->pIOProc;
923
924     return MMSYSERR_NOERROR;
925 }
926
927 /**************************************************************************
928  *                              mmioSetInfo             [WINMM.@]
929  */
930 MMRESULT WINAPI mmioSetInfo(HMMIO hmmio, const MMIOINFO* lpmmioinfo, UINT uFlags)
931 {
932     LPWINE_MMIO         wm;
933
934     TRACE("(%p,%p,0x%08x)\n",hmmio,lpmmioinfo,uFlags);
935
936     if ((wm = MMIO_Get(hmmio)) == NULL)
937         return MMSYSERR_INVALHANDLE;
938
939     /* check pointers coherence */
940     if (lpmmioinfo->pchNext < wm->info.pchBuffer ||
941         lpmmioinfo->pchNext > wm->info.pchBuffer + wm->info.cchBuffer ||
942         lpmmioinfo->pchEndRead < wm->info.pchBuffer ||
943         lpmmioinfo->pchEndRead > wm->info.pchBuffer + wm->info.cchBuffer ||
944         lpmmioinfo->pchEndWrite < wm->info.pchBuffer ||
945         lpmmioinfo->pchEndWrite > wm->info.pchBuffer + wm->info.cchBuffer)
946         return MMSYSERR_INVALPARAM;
947
948     wm->info.pchNext = lpmmioinfo->pchNext;
949     wm->info.pchEndRead = lpmmioinfo->pchEndRead;
950
951     return MMSYSERR_NOERROR;
952 }
953
954 /**************************************************************************
955 *                               mmioSetBuffer           [WINMM.@]
956 */
957 MMRESULT WINAPI mmioSetBuffer(HMMIO hmmio, LPSTR pchBuffer, LONG cchBuffer, UINT uFlags)
958 {
959     LPWINE_MMIO         wm;
960
961     TRACE("(hmmio=%p, pchBuf=%p, cchBuf=%ld, uFlags=%#08x)\n",
962           hmmio, pchBuffer, cchBuffer, uFlags);
963
964     if ((wm = MMIO_Get(hmmio)) == NULL)
965         return MMSYSERR_INVALHANDLE;
966
967     return MMIO_SetBuffer(wm, pchBuffer, cchBuffer, uFlags);
968 }
969
970 /**************************************************************************
971  *                              mmioFlush               [WINMM.@]
972  */
973 MMRESULT WINAPI mmioFlush(HMMIO hmmio, UINT uFlags)
974 {
975     LPWINE_MMIO         wm;
976
977     TRACE("(%p, %04X)\n", hmmio, uFlags);
978
979     if ((wm = MMIO_Get(hmmio)) == NULL)
980         return MMSYSERR_INVALHANDLE;
981
982     return MMIO_Flush(wm, uFlags);
983 }
984
985 /**************************************************************************
986  *                              mmioAdvance             [WINMM.@]
987  */
988 MMRESULT WINAPI mmioAdvance(HMMIO hmmio, MMIOINFO* lpmmioinfo, UINT uFlags)
989 {
990     LPWINE_MMIO         wm;
991
992     TRACE("hmmio=%p, lpmmioinfo=%p, uFlags=%04X\n", hmmio, lpmmioinfo, uFlags);
993
994     /* NOTE: mmioAdvance16 heavily relies on parameters from lpmmioinfo we're using
995      * here. be sure if you change something here to check mmioAdvance16 as well
996      */
997     if ((wm = MMIO_Get(hmmio)) == NULL)
998         return MMSYSERR_INVALHANDLE;
999
1000     if (!wm->info.cchBuffer)
1001         return MMIOERR_UNBUFFERED;
1002
1003     if (uFlags != MMIO_READ && uFlags != MMIO_WRITE)
1004         return MMSYSERR_INVALPARAM;
1005
1006     if (uFlags == MMIO_WRITE && (lpmmioinfo->dwFlags & MMIO_DIRTY))
1007     {
1008         send_message(wm->ioProc, &wm->info, MMIOM_SEEK, 
1009                      lpmmioinfo->lBufOffset, SEEK_SET, MMIO_PROC_32A);
1010         send_message(wm->ioProc, &wm->info, MMIOM_WRITE, 
1011                      (LPARAM)lpmmioinfo->pchBuffer,
1012                      lpmmioinfo->pchNext - lpmmioinfo->pchBuffer, MMIO_PROC_32A);
1013         lpmmioinfo->dwFlags &= ~MMIO_DIRTY;
1014     }
1015     if (MMIO_Flush(wm, 0) != MMSYSERR_NOERROR)
1016         return MMIOERR_CANNOTWRITE;
1017
1018     if (lpmmioinfo) {
1019         wm->dwFileSize = max(wm->dwFileSize, lpmmioinfo->lBufOffset + 
1020                              (lpmmioinfo->pchNext - lpmmioinfo->pchBuffer));
1021     }
1022     MMIO_GrabNextBuffer(wm, uFlags == MMIO_READ);
1023
1024     if (lpmmioinfo) {
1025         lpmmioinfo->pchNext = lpmmioinfo->pchBuffer;
1026         lpmmioinfo->pchEndRead  = lpmmioinfo->pchBuffer +
1027             (wm->info.pchEndRead - wm->info.pchBuffer);
1028         lpmmioinfo->pchEndWrite = lpmmioinfo->pchBuffer +
1029             (wm->info.pchEndWrite - wm->info.pchBuffer);
1030         lpmmioinfo->lDiskOffset = wm->info.lDiskOffset;
1031         lpmmioinfo->lBufOffset = wm->info.lBufOffset;
1032     }
1033     return MMSYSERR_NOERROR;
1034 }
1035
1036 /**************************************************************************
1037  *                              mmioStringToFOURCCA     [WINMM.@]
1038  */
1039 FOURCC WINAPI mmioStringToFOURCCA(LPCSTR sz, UINT uFlags)
1040 {
1041     CHAR cc[4];
1042     int i = 0;
1043
1044     for (i = 0; i < 4 && sz[i]; i++) {
1045         if (uFlags & MMIO_TOUPPER) {
1046             cc[i] = toupper(sz[i]);
1047         } else {
1048             cc[i] = sz[i];
1049         }
1050     }
1051
1052     /* Pad with spaces */
1053     while (i < 4) cc[i++] = ' ';
1054
1055     TRACE("Got '%.4s'\n",cc);
1056     return mmioFOURCC(cc[0],cc[1],cc[2],cc[3]);
1057 }
1058
1059 /**************************************************************************
1060  *                              mmioStringToFOURCCW     [WINMM.@]
1061  */
1062 FOURCC WINAPI mmioStringToFOURCCW(LPCWSTR sz, UINT uFlags)
1063 {
1064     LPSTR       szA = HEAP_strdupWtoA(GetProcessHeap(),0,sz);
1065     FOURCC      ret = mmioStringToFOURCCA(szA,uFlags);
1066
1067     HeapFree(GetProcessHeap(), 0, szA);
1068     return ret;
1069 }
1070
1071 /**************************************************************************
1072  *                              mmioInstallIOProcA         [WINMM.@]
1073  */
1074 LPMMIOPROC WINAPI mmioInstallIOProcA(FOURCC fccIOProc,
1075                                      LPMMIOPROC pIOProc, DWORD dwFlags)
1076 {
1077     return MMIO_InstallIOProc(fccIOProc, pIOProc, dwFlags, MMIO_PROC_32A);
1078 }
1079
1080 /**************************************************************************
1081  *                              mmioInstallIOProcW         [WINMM.@]
1082  */
1083 LPMMIOPROC WINAPI mmioInstallIOProcW(FOURCC fccIOProc,
1084                                      LPMMIOPROC pIOProc, DWORD dwFlags)
1085 {
1086     return MMIO_InstallIOProc(fccIOProc, pIOProc, dwFlags, MMIO_PROC_32W);
1087 }
1088
1089 /******************************************************************
1090  *              MMIO_SendMessage
1091  *
1092  *
1093  */
1094 LRESULT         MMIO_SendMessage(HMMIO hmmio, UINT uMessage, LPARAM lParam1, 
1095                                  LPARAM lParam2, enum mmioProcType type)
1096 {
1097     LPWINE_MMIO         wm;
1098
1099     TRACE("(%p, %u, %ld, %ld, %d)\n", hmmio, uMessage, lParam1, lParam2, type);
1100
1101     if (uMessage < MMIOM_USER)
1102         return MMSYSERR_INVALPARAM;
1103
1104     if ((wm = MMIO_Get(hmmio)) == NULL)
1105         return MMSYSERR_INVALHANDLE;
1106
1107     return send_message(wm->ioProc, &wm->info, uMessage, lParam1, lParam2, type);
1108 }
1109
1110 /**************************************************************************
1111  *                              mmioSendMessage         [WINMM.@]
1112  */
1113 LRESULT WINAPI mmioSendMessage(HMMIO hmmio, UINT uMessage,
1114                                LPARAM lParam1, LPARAM lParam2)
1115 {
1116     return MMIO_SendMessage(hmmio, uMessage, lParam1, lParam2, MMIO_PROC_32A);
1117 }
1118
1119 /**************************************************************************
1120  *                              mmioDescend             [WINMM.@]
1121  */
1122 MMRESULT WINAPI mmioDescend(HMMIO hmmio, LPMMCKINFO lpck,
1123                             const MMCKINFO* lpckParent, UINT uFlags)
1124 {
1125     DWORD               dwOldPos;
1126     FOURCC              srchCkId;
1127     FOURCC              srchType;
1128
1129
1130     TRACE("(%p, %p, %p, %04X);\n", hmmio, lpck, lpckParent, uFlags);
1131
1132     if (lpck == NULL)
1133         return MMSYSERR_INVALPARAM;
1134
1135     dwOldPos = mmioSeek(hmmio, 0, SEEK_CUR);
1136     TRACE("dwOldPos=%ld\n", dwOldPos);
1137
1138     if (lpckParent != NULL) {
1139         TRACE("seek inside parent at %ld !\n", lpckParent->dwDataOffset);
1140         /* EPP: was dwOldPos = mmioSeek(hmmio,lpckParent->dwDataOffset,SEEK_SET); */
1141         if (dwOldPos < lpckParent->dwDataOffset ||
1142             dwOldPos >= lpckParent->dwDataOffset + lpckParent->cksize) {
1143             WARN("outside parent chunk\n");
1144             return MMIOERR_CHUNKNOTFOUND;
1145         }
1146     }
1147
1148     /* The SDK docu says 'ckid' is used for all cases. Real World
1149      * examples disagree -Marcus,990216.
1150      */
1151
1152     srchType = 0;
1153     /* find_chunk looks for 'ckid' */
1154     if (uFlags & MMIO_FINDCHUNK)
1155         srchCkId = lpck->ckid;
1156     /* find_riff and find_list look for 'fccType' */
1157     if (uFlags & MMIO_FINDLIST) {
1158         srchCkId = FOURCC_LIST;
1159         srchType = lpck->fccType;
1160     }
1161     if (uFlags & MMIO_FINDRIFF) {
1162         srchCkId = FOURCC_RIFF;
1163         srchType = lpck->fccType;
1164     }
1165
1166     if (uFlags & (MMIO_FINDCHUNK|MMIO_FINDLIST|MMIO_FINDRIFF)) {
1167         TRACE("searching for %.4s.%.4s\n",
1168               (LPSTR)&srchCkId,
1169               srchType?(LPSTR)&srchType:"any ");
1170
1171         while (TRUE) {
1172             LONG ix;
1173
1174             ix = mmioRead(hmmio, (LPSTR)lpck, 3 * sizeof(DWORD));
1175             if (ix < 2*sizeof(DWORD)) {
1176                 mmioSeek(hmmio, dwOldPos, SEEK_SET);
1177                 WARN("return ChunkNotFound\n");
1178                 return MMIOERR_CHUNKNOTFOUND;
1179             }
1180             lpck->dwDataOffset = dwOldPos + 2 * sizeof(DWORD);
1181             if (ix < lpck->dwDataOffset - dwOldPos) {
1182                 mmioSeek(hmmio, dwOldPos, SEEK_SET);
1183                 WARN("return ChunkNotFound\n");
1184                 return MMIOERR_CHUNKNOTFOUND;
1185             }
1186             TRACE("ckid=%.4s fcc=%.4s cksize=%08lX !\n",
1187                   (LPSTR)&lpck->ckid,
1188                   srchType?(LPSTR)&lpck->fccType:"<na>",
1189                   lpck->cksize);
1190             if ((srchCkId == lpck->ckid) &&
1191                 (!srchType || (srchType == lpck->fccType))
1192                 )
1193                 break;
1194
1195             dwOldPos = lpck->dwDataOffset + ((lpck->cksize + 1) & ~1);
1196             mmioSeek(hmmio, dwOldPos, SEEK_SET);
1197         }
1198     } else {
1199         /* FIXME: unverified, does it do this? */
1200         /* NB: This part is used by WAVE_mciOpen, among others */
1201         if (mmioRead(hmmio, (LPSTR)lpck, 3 * sizeof(DWORD)) < 3 * sizeof(DWORD)) {
1202             mmioSeek(hmmio, dwOldPos, SEEK_SET);
1203             WARN("return ChunkNotFound 2nd\n");
1204             return MMIOERR_CHUNKNOTFOUND;
1205         }
1206         lpck->dwDataOffset = dwOldPos + 2 * sizeof(DWORD);
1207     }
1208     lpck->dwFlags = 0;
1209     /* If we were looking for RIFF/LIST chunks, the final file position
1210      * is after the chunkid. If we were just looking for the chunk
1211      * it is after the cksize. So add 4 in RIFF/LIST case.
1212      */
1213     if (lpck->ckid == FOURCC_RIFF || lpck->ckid == FOURCC_LIST)
1214         mmioSeek(hmmio, lpck->dwDataOffset + sizeof(DWORD), SEEK_SET);
1215     else
1216         mmioSeek(hmmio, lpck->dwDataOffset, SEEK_SET);
1217     TRACE("lpck: ckid=%.4s, cksize=%ld, dwDataOffset=%ld fccType=%08lX (%.4s)!\n",
1218           (LPSTR)&lpck->ckid, lpck->cksize, lpck->dwDataOffset,
1219           lpck->fccType, srchType?(LPSTR)&lpck->fccType:"");
1220     return MMSYSERR_NOERROR;
1221 }
1222
1223 /**************************************************************************
1224  *                              mmioAscend              [WINMM.@]
1225  */
1226 MMRESULT WINAPI mmioAscend(HMMIO hmmio, LPMMCKINFO lpck, UINT uFlags)
1227 {
1228     TRACE("(%p, %p, %04X);\n", hmmio, lpck, uFlags);
1229
1230     if (lpck->dwFlags & MMIO_DIRTY) {
1231         DWORD   dwOldPos, dwNewSize;
1232
1233         TRACE("Chunk is dirty, checking if chunk's size is correct\n");
1234         dwOldPos = mmioSeek(hmmio, 0, SEEK_CUR);
1235         TRACE("dwOldPos=%ld lpck->dwDataOffset = %ld\n", dwOldPos, lpck->dwDataOffset);
1236         dwNewSize = dwOldPos - lpck->dwDataOffset;
1237         if (dwNewSize != lpck->cksize) {
1238             TRACE("Nope: lpck->cksize=%ld dwNewSize=%ld\n", lpck->cksize, dwNewSize);
1239             lpck->cksize = dwNewSize;
1240
1241             /* pad odd size with 0 */
1242             if (dwNewSize & 1) {
1243                 char ch = 0;
1244                 mmioWrite(hmmio, &ch, 1);
1245             }
1246             mmioSeek(hmmio, lpck->dwDataOffset - sizeof(DWORD), SEEK_SET);
1247             mmioWrite(hmmio, (LPSTR)&dwNewSize, sizeof(DWORD));
1248         }
1249         lpck->dwFlags = 0;
1250     }
1251
1252     mmioSeek(hmmio, lpck->dwDataOffset + ((lpck->cksize + 1) & ~1), SEEK_SET);
1253
1254     return MMSYSERR_NOERROR;
1255 }
1256
1257 /**************************************************************************
1258  *                      mmioCreateChunk                         [WINMM.@]
1259  */
1260 MMRESULT WINAPI mmioCreateChunk(HMMIO hmmio, MMCKINFO* lpck, UINT uFlags)
1261 {
1262     DWORD       dwOldPos;
1263     LONG        size;
1264     LONG        ix;
1265
1266     TRACE("(%p, %p, %04X);\n", hmmio, lpck, uFlags);
1267
1268     dwOldPos = mmioSeek(hmmio, 0, SEEK_CUR);
1269     TRACE("dwOldPos=%ld\n", dwOldPos);
1270
1271     if (uFlags == MMIO_CREATELIST)
1272         lpck->ckid = FOURCC_LIST;
1273     else if (uFlags == MMIO_CREATERIFF)
1274         lpck->ckid = FOURCC_RIFF;
1275
1276     TRACE("ckid=%.4s\n", (LPSTR)&lpck->ckid);
1277
1278     size = 2 * sizeof(DWORD);
1279     lpck->dwDataOffset = dwOldPos + size;
1280
1281     if (lpck->ckid == FOURCC_RIFF || lpck->ckid == FOURCC_LIST)
1282         size += sizeof(DWORD);
1283     lpck->dwFlags = MMIO_DIRTY;
1284
1285     ix = mmioWrite(hmmio, (LPSTR)lpck, size);
1286     TRACE("after mmioWrite ix = %ld req = %ld, errno = %d\n",ix, size, errno);
1287     if (ix < size) {
1288         mmioSeek(hmmio, dwOldPos, SEEK_SET);
1289         WARN("return CannotWrite\n");
1290         return MMIOERR_CANNOTWRITE;
1291     }
1292
1293     return MMSYSERR_NOERROR;
1294 }
1295
1296 /**************************************************************************
1297  *                              mmioRenameA                     [WINMM.@]
1298  */
1299 MMRESULT WINAPI mmioRenameA(LPCSTR szFileName, LPCSTR szNewFileName,
1300                             MMIOINFO* lpmmioinfo, DWORD dwFlags)
1301 {
1302     struct IOProcList*  ioProc = NULL;
1303     struct IOProcList   tmp;
1304
1305     TRACE("('%s', '%s', %p, %08lX);\n",
1306           debugstr_a(szFileName), debugstr_a(szNewFileName), lpmmioinfo, dwFlags);
1307
1308     /* If both params are NULL, then parse the file name */
1309     if (lpmmioinfo && lpmmioinfo->fccIOProc == 0 && lpmmioinfo->pIOProc == NULL)
1310         lpmmioinfo->fccIOProc = MMIO_ParseExtA(szFileName);
1311
1312     /* Handle any unhandled/error case from above. Assume DOS file */
1313     if (!lpmmioinfo || (lpmmioinfo->fccIOProc == 0 && lpmmioinfo->pIOProc == NULL))
1314         ioProc = MMIO_FindProcNode(FOURCC_DOS);
1315     /* if just the four character code is present, look up IO proc */
1316     else if (lpmmioinfo->pIOProc == NULL)
1317         ioProc = MMIO_FindProcNode(lpmmioinfo->fccIOProc);
1318     else /* use relevant ioProc */
1319     {
1320         ioProc = &tmp;
1321         tmp.fourCC = lpmmioinfo->fccIOProc;
1322         tmp.pIOProc = lpmmioinfo->pIOProc;
1323         tmp.type = MMIO_PROC_32A;
1324         tmp.count = 1;
1325     }
1326
1327     return send_message(ioProc, lpmmioinfo, MMIOM_RENAME,
1328                         (LPARAM)szFileName, (LPARAM)szNewFileName, MMIO_PROC_32A);
1329 }
1330
1331 /**************************************************************************
1332  *                              mmioRenameW                     [WINMM.@]
1333  */
1334 MMRESULT WINAPI mmioRenameW(LPCWSTR szFileName, LPCWSTR szNewFileName,
1335                             MMIOINFO* lpmmioinfo, DWORD dwFlags)
1336 {
1337     LPSTR       szFn = HEAP_strdupWtoA(GetProcessHeap(), 0, szFileName);
1338     LPSTR       sznFn = HEAP_strdupWtoA(GetProcessHeap(), 0, szNewFileName);
1339     UINT        ret = mmioRenameA(szFn, sznFn, lpmmioinfo, dwFlags);
1340
1341     HeapFree(GetProcessHeap(),0,szFn);
1342     HeapFree(GetProcessHeap(),0,sznFn);
1343     return ret;
1344 }