diff options
author | Guido van Rossum <guido@python.org> | 1995-01-30 11:53:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-30 11:53:55 (GMT) |
commit | 17448e24081eb713ac00d7bcb681f4f0d8abfcbf (patch) | |
tree | 4f9d6768ef326173e1141b1a92af63247a42b13a /Mac/Modules/snd/sndgen.py | |
parent | 80ffd6683ca7b06ed743c629459b06b07defbfb3 (diff) | |
download | cpython-17448e24081eb713ac00d7bcb681f4f0d8abfcbf.zip cpython-17448e24081eb713ac00d7bcb681f4f0d8abfcbf.tar.gz cpython-17448e24081eb713ac00d7bcb681f4f0d8abfcbf.tar.bz2 |
Committed a more or less working version.
Diffstat (limited to 'Mac/Modules/snd/sndgen.py')
-rw-r--r-- | Mac/Modules/snd/sndgen.py | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/Mac/Modules/snd/sndgen.py b/Mac/Modules/snd/sndgen.py new file mode 100644 index 0000000..2c77a1f --- /dev/null +++ b/Mac/Modules/snd/sndgen.py @@ -0,0 +1,131 @@ +# Generated from 'D:Development:THINK C:Mac #includes:Apple #includes:Sound.h' + +f = SndMethod(OSErr, 'SndDoCommand', + (SndChannelPtr, 'chan', InMode), + (SndCommand_ptr, 'cmd', InMode), + (Boolean, 'noWait', InMode), +) +sndmethods.append(f) + +f = SndMethod(OSErr, 'SndDoImmediate', + (SndChannelPtr, 'chan', InMode), + (SndCommand_ptr, 'cmd', InMode), +) +sndmethods.append(f) + +f = SndFunction(OSErr, 'SndNewChannel', + (SndChannelPtr, 'chan', OutMode), + (short, 'synth', InMode), + (long, 'init', InMode), + (SndCallBackProcPtr, 'userRoutine', InMode), +) +functions.append(f) + +f = SndMethod(OSErr, 'SndPlay', + (SndChannelPtr, 'chan', InMode), + (SndListHandle, 'sndHdl', InMode), + (Boolean, 'async', InMode), +) +sndmethods.append(f) + +f = SndFunction(OSErr, 'SndControl', + (short, 'id', InMode), + (SndCommand, 'cmd', OutMode), +) +functions.append(f) + +f = SndFunction(void, 'SetSoundVol', + (short, 'level', InMode), +) +functions.append(f) + +f = SndFunction(void, 'GetSoundVol', + (short, 'level', OutMode), +) +functions.append(f) + +f = SndFunction(NumVersion, 'SndSoundManagerVersion', +) +functions.append(f) + +f = SndMethod(OSErr, 'SndStartFilePlay', + (SndChannelPtr, 'chan', InMode), + (short, 'fRefNum', InMode), + (short, 'resNum', InMode), + (long, 'bufferSize', InMode), + (FakeType('0'), 'theBuffer', InMode), + (AudioSelectionPtr, 'theSelection', InMode), + (ProcPtr, 'theCompletion', InMode), + (Boolean, 'async', InMode), +) +sndmethods.append(f) + +f = SndMethod(OSErr, 'SndPauseFilePlay', + (SndChannelPtr, 'chan', InMode), +) +sndmethods.append(f) + +f = SndMethod(OSErr, 'SndStopFilePlay', + (SndChannelPtr, 'chan', InMode), + (Boolean, 'async', InMode), +) +sndmethods.append(f) + +f = SndMethod(OSErr, 'SndChannelStatus', + (SndChannelPtr, 'chan', InMode), + (short, 'theLength', InMode), + (SCStatus, 'theStatus', OutMode), +) +sndmethods.append(f) + +f = SndFunction(OSErr, 'SndManagerStatus', + (short, 'theLength', InMode), + (SMStatus, 'theStatus', OutMode), +) +functions.append(f) + +f = SndFunction(void, 'SndGetSysBeepState', + (short, 'sysBeepState', OutMode), +) +functions.append(f) + +f = SndFunction(OSErr, 'SndSetSysBeepState', + (short, 'sysBeepState', InMode), +) +functions.append(f) + +f = SndFunction(NumVersion, 'MACEVersion', +) +functions.append(f) + +f = SndFunction(void, 'Comp3to1', + (InOutBuffer, 'buffer', InOutMode), + (InOutBuf128, 'state', InOutMode), + (unsigned_long, 'numChannels', InMode), + (unsigned_long, 'whichChannel', InMode), +) +functions.append(f) + +f = SndFunction(void, 'Exp1to3', + (InOutBuffer, 'buffer', InOutMode), + (InOutBuf128, 'state', InOutMode), + (unsigned_long, 'numChannels', InMode), + (unsigned_long, 'whichChannel', InMode), +) +functions.append(f) + +f = SndFunction(void, 'Comp6to1', + (InOutBuffer, 'buffer', InOutMode), + (InOutBuf128, 'state', InOutMode), + (unsigned_long, 'numChannels', InMode), + (unsigned_long, 'whichChannel', InMode), +) +functions.append(f) + +f = SndFunction(void, 'Exp1to6', + (InOutBuffer, 'buffer', InOutMode), + (InOutBuf128, 'state', InOutMode), + (unsigned_long, 'numChannels', InMode), + (unsigned_long, 'whichChannel', InMode), +) +functions.append(f) |