summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/snd/sndgen.py
blob: 827b263d9ffff2ce86a4f261b59e908c4147f267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Generated from 'Moes:CodeWarrior6:Metrowerks C/C++:Headers:Universal Headers 2.0.1f:Sound.h'

f = SndFunction(void, 'SetSoundVol',
    (short, 'level', InMode),
)
functions.append(f)

f = SndFunction(void, 'GetSoundVol',
    (short, 'level', OutMode),
)
functions.append(f)

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),
    (SndCallBackUPP, '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(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),
    (FilePlayCompletionUPP, '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, 'quietNow', 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),
    (StateBlock, 'state', InOutMode),
    (unsigned_long, 'numChannels', InMode),
    (unsigned_long, 'whichChannel', InMode),
)
functions.append(f)

f = SndFunction(void, 'Exp1to3',
    (InOutBuffer, 'buffer', InOutMode),
    (StateBlock, 'state', InOutMode),
    (unsigned_long, 'numChannels', InMode),
    (unsigned_long, 'whichChannel', InMode),
)
functions.append(f)

f = SndFunction(void, 'Comp6to1',
    (InOutBuffer, 'buffer', InOutMode),
    (StateBlock, 'state', InOutMode),
    (unsigned_long, 'numChannels', InMode),
    (unsigned_long, 'whichChannel', InMode),
)
functions.append(f)

f = SndFunction(void, 'Exp1to6',
    (InOutBuffer, 'buffer', InOutMode),
    (StateBlock, 'state', InOutMode),
    (unsigned_long, 'numChannels', InMode),
    (unsigned_long, 'whichChannel', InMode),
)
functions.append(f)

f = SndFunction(OSErr, 'GetSysBeepVolume',
    (long, 'level', OutMode),
)
functions.append(f)

f = SndFunction(OSErr, 'SetSysBeepVolume',
    (long, 'level', InMode),
)
functions.append(f)

f = SndFunction(OSErr, 'GetDefaultOutputVolume',
    (long, 'level', OutMode),
)
functions.append(f)

f = SndFunction(OSErr, 'SetDefaultOutputVolume',
    (long, 'level', InMode),
)
functions.append(f)

f = SndFunction(OSErr, 'GetSoundHeaderOffset',
    (SndListHandle, 'sndHandle', InMode),
    (long, 'offset', OutMode),
)
functions.append(f)