Removed some unnecessary includes.
[wine] / dlls / winmm / sound16.c
1 /*
2  * 16-bit sound support
3  *
4  *  Copyright  Robert J. Amstadt, 1993
5  */
6
7 #include <stdlib.h>
8 #include "windef.h"
9 #include "wine/windef16.h"
10 #include "debugtools.h"
11
12 DEFAULT_DEBUG_CHANNEL(sound);
13
14 /***********************************************************************
15  *              OpenSound16
16  */
17 INT16 WINAPI OpenSound16(void)
18 {
19   FIXME("(void): stub\n");
20   return -1;
21 }
22
23 /***********************************************************************
24  *              CloseSound16
25  */
26 void WINAPI CloseSound16(void)
27 {
28   FIXME("(void): stub\n");
29 }
30
31 /***********************************************************************
32  *              SetVoiceQueueSize16
33  */
34 INT16 WINAPI SetVoiceQueueSize16(INT16 nVoice, INT16 nBytes)
35 {
36   FIXME("(%d,%d): stub\n",nVoice,nBytes);
37   return 0;
38 }
39
40 /***********************************************************************
41  *              SetVoiceNote16
42  */
43 INT16 WINAPI SetVoiceNote16(INT16 nVoice, INT16 nValue, INT16 nLength,
44                             INT16 nCdots)
45 {
46   FIXME("(%d,%d,%d,%d): stub\n",nVoice,nValue,nLength,nCdots);
47   return 0;
48 }
49
50 /***********************************************************************
51  *              SetVoiceAccent16
52  */
53 INT16 WINAPI SetVoiceAccent16(INT16 nVoice, INT16 nTempo, INT16 nVolume,
54                               INT16 nMode, INT16 nPitch)
55 {
56   FIXME("(%d,%d,%d,%d,%d): stub\n", nVoice, nTempo, 
57         nVolume, nMode, nPitch);
58   return 0;
59 }
60
61 /***********************************************************************
62  *              SetVoiceEnvelope16
63  */
64 INT16 WINAPI SetVoiceEnvelope16(INT16 nVoice, INT16 nShape, INT16 nRepeat)
65 {
66   FIXME("(%d,%d,%d): stub\n",nVoice,nShape,nRepeat);
67   return 0;
68 }
69
70 /***********************************************************************
71  *              SetSoundNoise16
72  */
73 INT16 WINAPI SetSoundNoise16(INT16 nSource, INT16 nDuration)
74 {
75   FIXME("(%d,%d): stub\n",nSource,nDuration);
76   return 0;
77 }
78
79 /***********************************************************************
80  *              SetVoiceSound16
81  */
82 INT16 WINAPI SetVoiceSound16(INT16 nVoice, DWORD lFrequency, INT16 nDuration)
83 {
84   FIXME("(%d, %ld, %d): stub\n",nVoice,lFrequency, nDuration);
85   return 0;
86 }
87
88 /***********************************************************************
89  *              StartSound16
90  */
91 INT16 WINAPI StartSound16(void)
92 {
93   return 0;
94 }
95
96 /***********************************************************************
97  *              StopSound16
98  */
99 INT16 WINAPI StopSound16(void)
100 {
101   return 0;
102 }
103
104 /***********************************************************************
105  *              WaitSoundState16
106  */
107 INT16 WINAPI WaitSoundState16(INT16 x)
108 {
109     FIXME("(%d): stub\n", x);
110     return 0;
111 }
112
113 /***********************************************************************
114  *              SyncAllVoices16
115  */
116 INT16 WINAPI SyncAllVoices16(void)
117 {
118     FIXME("(void): stub\n");
119     return 0;
120 }
121
122 /***********************************************************************
123  *              CountVoiceNotes16
124  */
125 INT16 WINAPI CountVoiceNotes16(INT16 x)
126 {
127     FIXME("(%d): stub\n", x);
128     return 0;
129 }
130
131 /***********************************************************************
132  *              GetThresholdEvent16
133  */
134 LPINT16 WINAPI GetThresholdEvent16(void)
135 {
136     FIXME("(void): stub\n");
137     return NULL;
138 }
139
140 /***********************************************************************
141  *              GetThresholdStatus16
142  */
143 INT16 WINAPI GetThresholdStatus16(void)
144 {
145     FIXME("(void): stub\n");
146     return 0;
147 }
148
149 /***********************************************************************
150  *              SetVoiceThreshold16
151  */
152 INT16 WINAPI SetVoiceThreshold16(INT16 a, INT16 b)
153 {
154     FIXME("(%d,%d): stub\n", a, b);
155     return 0;
156 }
157
158 /***********************************************************************
159  *              DoBeep16
160  */
161 void WINAPI DoBeep16(void)
162 {
163     FIXME("(void): stub!\n");
164 }
165
166
167
168