update for HEAD-2003091401
[reactos.git] / lib / winmm / stubs.c
1 /*
2     AG: These are just temporary stubs for comctl32.dll - I am working on
3     porting WinMM over, offline. Once it compiles and links, I will commit
4     it.
5 */
6
7
8 #include <windows.h>
9 typedef UINT *LPUINT;
10 #include <mmsystem.h>
11
12 MMRESULT WINAPI mmioAscend(HMMIO hmmio, LPMMCKINFO lpck, UINT wFlags)
13 {
14     return MMSYSERR_NOERROR;
15 }
16
17 MMRESULT WINAPI mmioClose(HMMIO hmmio, UINT wFlags)
18 {
19     return MMSYSERR_NOERROR;
20 }
21
22 MMRESULT WINAPI mmioDescend(HMMIO hmmio, LPMMCKINFO lpck, const MMCKINFO* lpckParent, UINT wFlags)
23 {
24     return MMSYSERR_NOERROR;
25 }
26
27 HMMIO WINAPI mmioOpenA(LPSTR szFilename, LPMMIOINFO lpmmioinfo, DWORD dwOpenFlags)
28 {
29     return 12345;
30 }
31
32 LONG WINAPI mmioRead(HMMIO hmmio, HPSTR pch, LONG cch)
33 {
34     return 0;
35 }
36
37 LONG WINAPI mmioSeek(HMMIO hmmio, LONG lOffset, int iOrigin)
38 {
39     return 0;
40 }