mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 19:10:35 +00:00
76 lines
1.5 KiB
C
76 lines
1.5 KiB
C
![]() |
static char RCSId[] = "$Id: heap.c,v 1.3 1993/07/04 04:04:21 root Exp root $";
|
||
|
static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
|
||
|
|
||
|
#include "prototypes.h"
|
||
|
|
||
|
int OpenSound(void)
|
||
|
{
|
||
|
printf("OpenSound()\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void CloseSound(void)
|
||
|
{
|
||
|
printf("CloseSound()\n");
|
||
|
}
|
||
|
|
||
|
int SetVoiceQueueSize(int nVoice, int nBytes)
|
||
|
{
|
||
|
printf("SetVoiceQueueSize (%d,%d)\n",nVoice,nBytes);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SetVoiceNote(int nVoice, int nValue, int nLength, int nCdots)
|
||
|
{
|
||
|
printf("SetVoiceNote (%d,%d,%d,%d)\n",nVoice,nValue,nLength,nCdots);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SetVoiceAccent(int nVoice, int nTempo, int nVolume, int nMode, int nPitch)
|
||
|
{
|
||
|
printf("SetVoiceAccent(%d,%d,%d,%d,%d)\n", nVoice, nTempo,
|
||
|
nVolume, nMode, nPitch);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SetVoiceEnvelope(int nVoice, int nShape, int nRepeat)
|
||
|
{
|
||
|
printf("SetVoiceEnvelope(%d,%d,%d)\n",nVoice,nShape,nRepeat);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SetSoundNoise(int nSource, int nDuration)
|
||
|
{
|
||
|
printf("SetSoundNoise(%d,%d)\n",nSource,nDuration);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SetVoiceSound(int nVoice, long lFrequency, int nDuration)
|
||
|
{
|
||
|
printf("SetVoiceSound(%d, %d, %d)\n",nVoice,lFrequency, nDuration);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int StartSound(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int StopSound(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
11 pascal WAITSOUNDSTATE(word) WaitSoundState(1)
|
||
|
12 pascal SYNCALLVOICES() SyncAllVoices()
|
||
|
13 pascal COUNTVOICENOTES(word) CountVoiceNotes(1)
|
||
|
14 pascal GETTHRESHOLDEVENT() GetThresholdEvent()
|
||
|
15 pascal GETTHRESHOLDSTATUS() GetThresholdStatus()
|
||
|
16 pascal SETVOICETHRESHOLD(word word) SetVoiceThreshold(1 2)
|
||
|
|
||
|
|
||
|
|
||
|
*/
|