Release 0.6
[wine/multimedia.git] / misc / sound.c
blob90e9c7dc1b86dd0a1d96cb718016e2d92917971c
1 static char RCSId[] = "$Id: heap.c,v 1.3 1993/07/04 04:04:21 root Exp root $";
2 static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
4 #include "prototypes.h"
6 int OpenSound(void)
8 printf("OpenSound()\n");
9 return -1;
12 void CloseSound(void)
14 printf("CloseSound()\n");
17 int SetVoiceQueueSize(int nVoice, int nBytes)
19 printf("SetVoiceQueueSize (%d,%d)\n",nVoice,nBytes);
20 return 0;
23 int SetVoiceNote(int nVoice, int nValue, int nLength, int nCdots)
25 printf("SetVoiceNote (%d,%d,%d,%d)\n",nVoice,nValue,nLength,nCdots);
26 return 0;
29 int SetVoiceAccent(int nVoice, int nTempo, int nVolume, int nMode, int nPitch)
31 printf("SetVoiceAccent(%d,%d,%d,%d,%d)\n", nVoice, nTempo,
32 nVolume, nMode, nPitch);
33 return 0;
36 int SetVoiceEnvelope(int nVoice, int nShape, int nRepeat)
38 printf("SetVoiceEnvelope(%d,%d,%d)\n",nVoice,nShape,nRepeat);
39 return 0;
42 int SetSoundNoise(int nSource, int nDuration)
44 printf("SetSoundNoise(%d,%d)\n",nSource,nDuration);
45 return 0;
48 int SetVoiceSound(int nVoice, long lFrequency, int nDuration)
50 printf("SetVoiceSound(%d, %d, %d)\n",nVoice,lFrequency, nDuration);
51 return 0;
54 int StartSound(void)
56 return 0;
59 int StopSound(void)
61 return 0;
66 11 pascal WAITSOUNDSTATE(word) WaitSoundState(1)
67 12 pascal SYNCALLVOICES() SyncAllVoices()
68 13 pascal COUNTVOICENOTES(word) CountVoiceNotes(1)
69 14 pascal GETTHRESHOLDEVENT() GetThresholdEvent()
70 15 pascal GETTHRESHOLDSTATUS() GetThresholdStatus()
71 16 pascal SETVOICETHRESHOLD(word word) SetVoiceThreshold(1 2)