Improved a bit the folder browsing implementation.
[wine.git] / dlls / winmm / sound16.c
blob5ad9aa1406e101b250a9667bdaefe6ba1fb95fe9
1 /*
2 * 16-bit sound support
4 * Copyright Robert J. Amstadt, 1993
5 */
7 #include <stdlib.h>
8 #include "windef.h"
9 #include "debugtools.h"
11 DEFAULT_DEBUG_CHANNEL(sound);
13 /***********************************************************************
14 * OpenSound16
16 INT16 WINAPI OpenSound16(void)
18 FIXME("(void): stub\n");
19 return -1;
22 /***********************************************************************
23 * CloseSound16
25 void WINAPI CloseSound16(void)
27 FIXME("(void): stub\n");
30 /***********************************************************************
31 * SetVoiceQueueSize16
33 INT16 WINAPI SetVoiceQueueSize16(INT16 nVoice, INT16 nBytes)
35 FIXME("(%d,%d): stub\n",nVoice,nBytes);
36 return 0;
39 /***********************************************************************
40 * SetVoiceNote16
42 INT16 WINAPI SetVoiceNote16(INT16 nVoice, INT16 nValue, INT16 nLength,
43 INT16 nCdots)
45 FIXME("(%d,%d,%d,%d): stub\n",nVoice,nValue,nLength,nCdots);
46 return 0;
49 /***********************************************************************
50 * SetVoiceAccent16
52 INT16 WINAPI SetVoiceAccent16(INT16 nVoice, INT16 nTempo, INT16 nVolume,
53 INT16 nMode, INT16 nPitch)
55 FIXME("(%d,%d,%d,%d,%d): stub\n", nVoice, nTempo,
56 nVolume, nMode, nPitch);
57 return 0;
60 /***********************************************************************
61 * SetVoiceEnvelope16
63 INT16 WINAPI SetVoiceEnvelope16(INT16 nVoice, INT16 nShape, INT16 nRepeat)
65 FIXME("(%d,%d,%d): stub\n",nVoice,nShape,nRepeat);
66 return 0;
69 /***********************************************************************
70 * SetSoundNoise16
72 INT16 WINAPI SetSoundNoise16(INT16 nSource, INT16 nDuration)
74 FIXME("(%d,%d): stub\n",nSource,nDuration);
75 return 0;
78 /***********************************************************************
79 * SetVoiceSound16
81 INT16 WINAPI SetVoiceSound16(INT16 nVoice, DWORD lFrequency, INT16 nDuration)
83 FIXME("(%d, %ld, %d): stub\n",nVoice,lFrequency, nDuration);
84 return 0;
87 /***********************************************************************
88 * StartSound16
90 INT16 WINAPI StartSound16(void)
92 return 0;
95 /***********************************************************************
96 * StopSound16
98 INT16 WINAPI StopSound16(void)
100 return 0;
103 /***********************************************************************
104 * WaitSoundState16
106 INT16 WINAPI WaitSoundState16(INT16 x)
108 FIXME("(%d): stub\n", x);
109 return 0;
112 /***********************************************************************
113 * SyncAllVoices16
115 INT16 WINAPI SyncAllVoices16(void)
117 FIXME("(void): stub\n");
118 return 0;
121 /***********************************************************************
122 * CountVoiceNotes16
124 INT16 WINAPI CountVoiceNotes16(INT16 x)
126 FIXME("(%d): stub\n", x);
127 return 0;
130 /***********************************************************************
131 * GetThresholdEvent16
133 LPINT16 WINAPI GetThresholdEvent16(void)
135 FIXME("(void): stub\n");
136 return NULL;
139 /***********************************************************************
140 * GetThresholdStatus16
142 INT16 WINAPI GetThresholdStatus16(void)
144 FIXME("(void): stub\n");
145 return 0;
148 /***********************************************************************
149 * SetVoiceThreshold16
151 INT16 WINAPI SetVoiceThreshold16(INT16 a, INT16 b)
153 FIXME("(%d,%d): stub\n", a, b);
154 return 0;
157 /***********************************************************************
158 * DoBeep16
160 void WINAPI DoBeep16(void)
162 FIXME("(void): stub!\n");