ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon_atraps.h
Revision: 1.6
Committed: 2000-09-25T12:44:33Z (23 years, 7 months ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.5: +3 -3 lines
Log Message:
- replaced 680x0 and 80x86 disassemblers with the ones from GNU binutils
- 680x0 disassembler shows symbolic MacOS low memory globals

File Contents

# Content
1 /*
2 * mon_atraps.h - MacOS A-Line trap definitions
3 *
4 * mon (C) 1997-2000 Christian Bauer, Marc Hellwig
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef MON_ATRAPS_H
22 #define MON_ATRAPS_H
23
24 struct atrap_info {
25 const char *name;
26 unsigned short word;
27 };
28
29 static const struct atrap_info atraps[] = {
30 {"Open" , 0xA000},
31 {"Close" , 0xA001},
32 {"Read" , 0xA002},
33 {"Write" , 0xA003},
34 {"Control" , 0xA004},
35 {"Status" , 0xA005},
36 {"KillIO" , 0xA006},
37 {"GetVolInfo" , 0xA007},
38 {"Create" , 0xA008},
39 {"Delete" , 0xA009},
40 {"OpenRF" , 0xA00A},
41 {"Rename" , 0xA00B},
42 {"GetFileInfo" , 0xA00C},
43 {"SetFileInfo" , 0xA00D},
44 {"UnmountVol" , 0xA00E},
45 {"MountVol" , 0xA00F},
46 {"Allocate" , 0xA010},
47 {"GetEOF" , 0xA011},
48 {"SetEOF" , 0xA012},
49 {"FlushVol" , 0xA013},
50 {"GetVol" , 0xA014},
51 {"SetVol" , 0xA015},
52 {"FInitQueue" , 0xA016},
53 {"Eject" , 0xA017},
54 {"GetFPos" , 0xA018},
55 {"InitZone" , 0xA019},
56 {"SetZone" , 0xA01B},
57 {"FreeMem" , 0xA01C},
58 {"DisposePtr" , 0xA01F},
59 {"SetPtrSize" , 0xA020},
60 {"GetPtrSize" , 0xA021},
61 {"DisposeHandle" , 0xA023},
62 {"SetHandleSize" , 0xA024},
63 {"GetHandleSize" , 0xA025},
64 {"ReallocHandle" , 0xA027},
65 {"HLock" , 0xA029},
66 {"HUnlock" , 0xA02A},
67 {"EmptyHandle" , 0xA02B},
68 {"InitApplZone" , 0xA02C},
69 {"SetApplLimit" , 0xA02D},
70 {"BlockMove" , 0xA02E},
71 {"PostEvent" , 0xA02F},
72 {"OSEventAvail" , 0xA030},
73 {"GetOSEvent" , 0xA031},
74 {"FlushEvents" , 0xA032},
75 {"VInstall" , 0xA033},
76 {"VRemove" , 0xA034},
77 {"OffLine" , 0xA035},
78 {"MoreMasters" , 0xA036},
79 {"WriteParam" , 0xA038},
80 {"ReadDateTime" , 0xA039},
81 {"SetDateTime" , 0xA03A},
82 {"Delay" , 0xA03B},
83 {"CmpString" , 0xA03C},
84 {"DrvrInstall" , 0xA03D},
85 {"DrvrRemove" , 0xA03E},
86 {"InitUtil" , 0xA03F},
87 {"ResrvMem" , 0xA040},
88 {"SetFilLock" , 0xA041},
89 {"RstFilLock" , 0xA042},
90 {"SetFilType" , 0xA043},
91 {"SetFPos" , 0xA044},
92 {"FlushFile" , 0xA045},
93 {"SetTrapAddress" , 0xA047},
94 {"HPurge" , 0xA049},
95 {"HNoPurge" , 0xA04A},
96 {"SetGrowZone" , 0xA04B},
97 {"CompactMem" , 0xA04C},
98 {"PurgeMem" , 0xA04D},
99 {"AddDrive" , 0xA04E},
100 {"RDrvrInstall" , 0xA04F},
101 {"CompareString" , 0xA050},
102 {"ReadXPRam" , 0xA051},
103 {"WriteXPRam" , 0xA052},
104 {"UprString" , 0xA054},
105 {"StripAddress" , 0xA055},
106 {"LowerText" , 0xA056},
107 {"SetApplBase" , 0xA057},
108 {"InsTime" , 0xA058},
109 {"RmvTime" , 0xA059},
110 {"PrimeTime" , 0xA05A},
111 {"PowerOff" , 0xA05B},
112 {"MemoryDispatch" , 0xA05C},
113 {"SwapMMUMode" , 0xA05D},
114 {"NMInstall" , 0xA05E},
115 {"NMRemove" , 0xA05F},
116 {"FSDispatch" , 0xA060},
117 {"MaxBlock" , 0xA061},
118 {"MaxApplZone" , 0xA063},
119 {"MoveHHi" , 0xA064},
120 {"StackSpace" , 0xA065},
121 {"HSetRBit" , 0xA067},
122 {"HClrRBit" , 0xA068},
123 {"HGetState" , 0xA069},
124 {"HSetState" , 0xA06A},
125 {"InitFS" , 0xA06C},
126 {"InitEvents" , 0xA06D},
127 {"SlotManager" , 0xA06E},
128 {"SlotVInstall" , 0xA06F},
129 {"SlotVRemove" , 0xA070},
130 {"AttachVBL" , 0xA071},
131 {"DoVBLTask" , 0xA072},
132 {"SIntInstall" , 0xA075},
133 {"SIntRemove" , 0xA076},
134 {"CountADBs" , 0xA077},
135 {"GetIndADB" , 0xA078},
136 {"GetADBInfo" , 0xA079},
137 {"SetADBInfo" , 0xA07A},
138 {"ADBReInit" , 0xA07B},
139 {"ADBOp" , 0xA07C},
140 {"GetDefaultStartup" , 0xA07D},
141 {"SetDefaultStartup" , 0xA07E},
142 {"InternalWait" , 0xA07F},
143 {"GetVideoDefault" , 0xA080},
144 {"SetVideoDefault" , 0xA081},
145 {"DTInstall" , 0xA082},
146 {"SetOSDefault" , 0xA083},
147 {"GetOSDefault" , 0xA084},
148 {"PMgrOp" , 0xA085},
149 {"IOPInfoAccess" , 0xA086},
150 {"IOPMsgRequest" , 0xA087},
151 {"IOPMoveData" , 0xA088},
152 {"SCSIAtomic" , 0xA089},
153 {"Sleep" , 0xA08A},
154 {"CommToolboxDispatch" , 0xA08B},
155 {"DebugUtil" , 0xA08D},
156 {"DeferUserFn" , 0xA08F},
157 {"SysEnvirons" , 0xA090},
158 {"Translate24To32" , 0xA091},
159 {"EgretDispatch" , 0xA092},
160 {"PowerMgrDispatch" , 0xA09E},
161 {"PowerDispatch" , 0xA09F},
162 {"HeapDispatch" , 0xA0A4},
163 {"VADBProc" , 0xA0AE},
164 {"PPC" , 0xA0DD},
165 {"TEFindWord" , 0xA0FE},
166 {"TEFindLine" , 0xA0FF},
167 {"GetZone" , 0xA11A},
168 {"MaxMem" , 0xA11D},
169 {"NewPtr" , 0xA11E},
170 {"NewHandle" , 0xA122},
171 {"HandleZone" , 0xA126},
172 {"RecoverHandle" , 0xA128},
173 {"PPostEvent" , 0xA12F},
174 {"DrvrInstall" , 0xA13D},
175 {"GetTrapAddress" , 0xA146},
176 {"PtrZone" , 0xA148},
177 {"MemoryDispatchA0Result" , 0xA15C},
178 {"PurgeSpace" , 0xA162},
179 {"NewEmptyHandle" , 0xA166},
180 {"Microseconds" , 0xA193},
181 {"HWPriv" , 0xA198},
182 {"Gestalt" , 0xA1AD},
183 {"HOpen" , 0xA200},
184 {"HGetVInfo" , 0xA207},
185 {"HCreate" , 0xA208},
186 {"HDelete" , 0xA209},
187 {"HOpenRF" , 0xA20A},
188 {"HRename" , 0xA20B},
189 {"HGetFileInfo" , 0xA20C},
190 {"HSetFileInfo" , 0xA20D},
191 {"HUnmountVol" , 0xA20E},
192 {"AllocContig" , 0xA210},
193 {"HGetVol" , 0xA214},
194 {"HSetVol" , 0xA215},
195 {"BlockMoveData" , 0xA22E},
196 {"HSetFLock" , 0xA241},
197 {"HRstFLock" , 0xA242},
198 {"SetOSTrapAddress" , 0xA247},
199 {"StripText" , 0xA256},
200 {"HFSDispatch" , 0xA260},
201 {"IdleUpdate" , 0xA285},
202 {"SleepQInstall" , 0xA28A},
203 {"NewPtrClear" , 0xA31E},
204 {"NewHandleClear" , 0xA322},
205 {"GetOSTrapAddress" , 0xA346},
206 {"NewGestalt" , 0xA3AD},
207 {"DrvrInstallRsrvMem" , 0xA43D},
208 {"UpperText" , 0xA456},
209 {"InsXTime" , 0xA458},
210 {"IdleState" , 0xA485},
211 {"SleepQRemove" , 0xA48A},
212 {"NewPtrSys" , 0xA51E},
213 {"NewHandleSys" , 0xA522},
214 {"DrvrInstallRsrvMem" , 0xA53D},
215 {"PurgeSpaceSys" , 0xA562},
216 {"ReplaceGestalt" , 0xA5AD},
217 {"SetToolBoxTrapAddress" , 0xA647},
218 {"StripUpperText" , 0xA656},
219 {"SerialPower" , 0xA685},
220 {"NewPtrSysClear" , 0xA71E},
221 {"NewHandleSysClear" , 0xA722},
222 {"GetToolBoxTrapAddress" , 0xA746},
223 {"GetToolTrapAddress" , 0xA746},
224 {"GetGestaltProcPtr" , 0xA7AD},
225 {"SoundDispatch" , 0xA800},
226 {"SndDisposeChannel" , 0xA801},
227 {"SndAddModifier" , 0xA802},
228 {"SndDoCommand" , 0xA803},
229 {"SndDoImmediate" , 0xA804},
230 {"SndPlay" , 0xA805},
231 {"SndControl" , 0xA806},
232 {"SndNewChannel" , 0xA807},
233 {"InitProcMenu" , 0xA808},
234 {"GetControlVariant" , 0xA809},
235 {"GetWVariant" , 0xA80A},
236 {"PopUpMenuSelect" , 0xA80B},
237 {"RGetResource" , 0xA80C},
238 {"Count1Resources" , 0xA80D},
239 {"Get1IxResource" , 0xA80E},
240 {"Get1IxType" , 0xA80F},
241 {"Unique1ID" , 0xA810},
242 {"TESelView" , 0xA811},
243 {"TEPinScroll" , 0xA812},
244 {"TEAutoView" , 0xA813},
245 {"SetFractEnable" , 0xA814},
246 {"SCSIDispatch" , 0xA815},
247 {"Pack8" , 0xA816},
248 {"CopyMask" , 0xA817},
249 {"FixATan2" , 0xA818},
250 {"XMunger" , 0xA819},
251 {"HOpenResFile" , 0xA81A},
252 {"HCreateResFile" , 0xA81B},
253 {"Count1Types" , 0xA81C},
254 {"InvalMenuBar" , 0xA81D},
255 {"Get1Resource" , 0xA81F},
256 {"Get1NamedResource" , 0xA820},
257 {"MaxSizeRsrc" , 0xA821},
258 {"ResourceDispatch" , 0xA822},
259 {"AliasDispatch" , 0xA823},
260 {"InsertMenuItem" , 0xA826},
261 {"HideDialogItem" , 0xA827},
262 {"ShowDialogItem" , 0xA828},
263 {"LayerDispatch" , 0xA829},
264 {"ComponentDispatch" , 0xA82A},
265 {"Pack9" , 0xA82B},
266 {"Pack10" , 0xA82C},
267 {"Pack11" , 0xA82D},
268 {"Pack12" , 0xA82E},
269 {"Pack13" , 0xA82F},
270 {"Pack14" , 0xA830},
271 {"Pack15" , 0xA831},
272 {"ScrnBitMap" , 0xA833},
273 {"SetFScaleDisable" , 0xA834},
274 {"FontMetrics" , 0xA835},
275 {"GetMaskTable" , 0xA836},
276 {"MeasureText" , 0xA837},
277 {"CalcMask" , 0xA838},
278 {"SeedFill" , 0xA839},
279 {"ZoomWindow" , 0xA83A},
280 {"TrackBox" , 0xA83B},
281 {"TEGetOffset" , 0xA83C},
282 {"TEDispatch" , 0xA83D},
283 {"TEStyleNew" , 0xA83E},
284 {"Long2Fix" , 0xA83F},
285 {"Fix2Long" , 0xA840},
286 {"Fix2Frac" , 0xA841},
287 {"Frac2Fix" , 0xA842},
288 {"Fix2X" , 0xA843},
289 {"X2Fix" , 0xA844},
290 {"Frac2X" , 0xA845},
291 {"X2Frac" , 0xA846},
292 {"FracCos" , 0xA847},
293 {"FracSin" , 0xA848},
294 {"FracSqrt" , 0xA849},
295 {"FracMul" , 0xA84A},
296 {"FracDiv" , 0xA84B},
297 {"FixDiv" , 0xA84D},
298 {"GetItemCmd" , 0xA84E},
299 {"SetItemCmd" , 0xA84F},
300 {"InitCursor" , 0xA850},
301 {"SetCursor" , 0xA851},
302 {"HideCursor" , 0xA852},
303 {"ShowCursor" , 0xA853},
304 {"FontDispatch" , 0xA854},
305 {"ShieldCursor" , 0xA855},
306 {"ObscureCursor" , 0xA856},
307 {"BitAnd" , 0xA858},
308 {"BitXOr" , 0xA859},
309 {"BitNot" , 0xA85A},
310 {"BitOr" , 0xA85B},
311 {"BitShift" , 0xA85C},
312 {"BitTst" , 0xA85D},
313 {"BitSet" , 0xA85E},
314 {"BitClr" , 0xA85F},
315 {"WaitNextEvent" , 0xA860},
316 {"Random" , 0xA861},
317 {"ForeColor" , 0xA862},
318 {"BackColor" , 0xA863},
319 {"ColorBit" , 0xA864},
320 {"GetPixel" , 0xA865},
321 {"StuffHex" , 0xA866},
322 {"LongMul" , 0xA867},
323 {"FixMul" , 0xA868},
324 {"FixRatio" , 0xA869},
325 {"HiWord" , 0xA86A},
326 {"LoWord" , 0xA86B},
327 {"FixRound" , 0xA86C},
328 {"InitPort" , 0xA86D},
329 {"InitGraf" , 0xA86E},
330 {"OpenPort" , 0xA86F},
331 {"LocalToGlobal" , 0xA870},
332 {"GlobalToLocal" , 0xA871},
333 {"GrafDevice" , 0xA872},
334 {"SetPort" , 0xA873},
335 {"GetPort" , 0xA874},
336 {"SetPBits" , 0xA875},
337 {"PortSize" , 0xA876},
338 {"MovePortTo" , 0xA877},
339 {"SetOrigin" , 0xA878},
340 {"SetClip" , 0xA879},
341 {"GetClip" , 0xA87A},
342 {"ClipRect" , 0xA87B},
343 {"BackPat" , 0xA87C},
344 {"ClosePort" , 0xA87D},
345 {"AddPt" , 0xA87E},
346 {"SubPt" , 0xA87F},
347 {"SetPt" , 0xA880},
348 {"EqualPt" , 0xA881},
349 {"StdText" , 0xA882},
350 {"DrawChar" , 0xA883},
351 {"DrawString" , 0xA884},
352 {"DrawText" , 0xA885},
353 {"TextWidth" , 0xA886},
354 {"TextFont" , 0xA887},
355 {"TextFace" , 0xA888},
356 {"TextMode" , 0xA889},
357 {"TextSize" , 0xA88A},
358 {"GetFontInfo" , 0xA88B},
359 {"StringWidth" , 0xA88C},
360 {"CharWidth" , 0xA88D},
361 {"SpaceExtra" , 0xA88E},
362 {"OSDispatch" , 0xA88F},
363 {"StdLine" , 0xA890},
364 {"LineTo" , 0xA891},
365 {"Line" , 0xA892},
366 {"MoveTo" , 0xA893},
367 {"Move" , 0xA894},
368 {"ShutDown" , 0xA895},
369 {"HidePen" , 0xA896},
370 {"ShowPen" , 0xA897},
371 {"GetPenState" , 0xA898},
372 {"SetPenState" , 0xA899},
373 {"GetPen" , 0xA89A},
374 {"PenSize" , 0xA89B},
375 {"PenMode" , 0xA89C},
376 {"PenPat" , 0xA89D},
377 {"PenNormal" , 0xA89E},
378 {"Unimplemented" , 0xA89F},
379 {"StdRect" , 0xA8A0},
380 {"FrameRect" , 0xA8A1},
381 {"PaintRect" , 0xA8A2},
382 {"EraseRect" , 0xA8A3},
383 {"InverRect" , 0xA8A4},
384 {"FillRect" , 0xA8A5},
385 {"EqualRect" , 0xA8A6},
386 {"SetRect" , 0xA8A7},
387 {"OffsetRect" , 0xA8A8},
388 {"InsetRect" , 0xA8A9},
389 {"SectRect" , 0xA8AA},
390 {"UnionRect" , 0xA8AB},
391 {"Pt2Rect" , 0xA8AC},
392 {"PtInRect" , 0xA8AD},
393 {"EmptyRect" , 0xA8AE},
394 {"StdRRect" , 0xA8AF},
395 {"FrameRoundRect" , 0xA8B0},
396 {"PaintRoundRect" , 0xA8B1},
397 {"EraseRoundRect" , 0xA8B2},
398 {"InverRoundRect" , 0xA8B3},
399 {"FillRoundRect" , 0xA8B4},
400 {"ScriptUtil" , 0xA8B5},
401 {"StdOval" , 0xA8B6},
402 {"FrameOval" , 0xA8B7},
403 {"PaintOval" , 0xA8B8},
404 {"EraseOval" , 0xA8B9},
405 {"InvertOval" , 0xA8BA},
406 {"FillOval" , 0xA8BB},
407 {"SlopeFromAngle" , 0xA8BC},
408 {"StdArc" , 0xA8BD},
409 {"FrameArc" , 0xA8BE},
410 {"PaintArc" , 0xA8BF},
411 {"EraseArc" , 0xA8C0},
412 {"InvertArc" , 0xA8C1},
413 {"FillArc" , 0xA8C2},
414 {"PtToAngle" , 0xA8C3},
415 {"AngleFromSlope" , 0xA8C4},
416 {"StdPoly" , 0xA8C5},
417 {"FramePoly" , 0xA8C6},
418 {"PaintPoly" , 0xA8C7},
419 {"ErasePoly" , 0xA8C8},
420 {"InvertPoly" , 0xA8C9},
421 {"FillPoly" , 0xA8CA},
422 {"OpenPoly" , 0xA8CB},
423 {"ClosePoly" , 0xA8CC},
424 {"KillPoly" , 0xA8CD},
425 {"OffsetPoly" , 0xA8CE},
426 {"PackBits" , 0xA8CF},
427 {"UnpackBits" , 0xA8D0},
428 {"StdRgn" , 0xA8D1},
429 {"FrameRgn" , 0xA8D2},
430 {"PaintRgn" , 0xA8D3},
431 {"EraseRgn" , 0xA8D4},
432 {"InverRgn" , 0xA8D5},
433 {"FillRgn" , 0xA8D6},
434 {"BitMapToRegion" , 0xA8D7},
435 {"NewRgn" , 0xA8D8},
436 {"DisposeRgn" , 0xA8D9},
437 {"OpenRgn" , 0xA8DA},
438 {"CloseRgn" , 0xA8DB},
439 {"CopyRgn" , 0xA8DC},
440 {"SetEmptyRgn" , 0xA8DD},
441 {"SetRecRgn" , 0xA8DE},
442 {"RectRgn" , 0xA8DF},
443 {"OffsetRgn" , 0xA8E0},
444 {"InsetRgn" , 0xA8E1},
445 {"EmptyRgn" , 0xA8E2},
446 {"EqualRgn" , 0xA8E3},
447 {"SectRgn" , 0xA8E4},
448 {"UnionRgn" , 0xA8E5},
449 {"DiffRgn" , 0xA8E6},
450 {"XOrRgn" , 0xA8E7},
451 {"PtInRgn" , 0xA8E8},
452 {"RectInRgn" , 0xA8E9},
453 {"SetStdProcs" , 0xA8EA},
454 {"StdBits" , 0xA8EB},
455 {"CopyBits" , 0xA8EC},
456 {"StdTxMeas" , 0xA8ED},
457 {"StdGetPic" , 0xA8EE},
458 {"ScrollRect" , 0xA8EF},
459 {"StdPutPic" , 0xA8F0},
460 {"StdComment" , 0xA8F1},
461 {"PicComment" , 0xA8F2},
462 {"OpenPicture" , 0xA8F3},
463 {"ClosePicture" , 0xA8F4},
464 {"KillPicture" , 0xA8F5},
465 {"DrawPicture" , 0xA8F6},
466 {"Layout" , 0xA8F7},
467 {"ScalePt" , 0xA8F8},
468 {"MapPt" , 0xA8F9},
469 {"MapRect" , 0xA8FA},
470 {"MapRgn" , 0xA8FB},
471 {"MapPoly" , 0xA8FC},
472 {"PrGlue" , 0xA8FD},
473 {"InitFonts" , 0xA8FE},
474 {"GetFName" , 0xA8FF},
475 {"GetFNum" , 0xA900},
476 {"FMSwapFont" , 0xA901},
477 {"RealFont" , 0xA902},
478 {"SetFontLock" , 0xA903},
479 {"DrawGrowIcon" , 0xA904},
480 {"DragGrayRgn" , 0xA905},
481 {"NewString" , 0xA906},
482 {"SetString" , 0xA907},
483 {"ShowHide" , 0xA908},
484 {"CalcVis" , 0xA909},
485 {"CalcVBehind" , 0xA90A},
486 {"ClipAbove" , 0xA90B},
487 {"PaintOne" , 0xA90C},
488 {"PaintBehind" , 0xA90D},
489 {"SaveOld" , 0xA90E},
490 {"DrawNew" , 0xA90F},
491 {"GetWMgrPort" , 0xA910},
492 {"CheckUpDate" , 0xA911},
493 {"InitWindows" , 0xA912},
494 {"NewWindow" , 0xA913},
495 {"DisposeWindow" , 0xA914},
496 {"ShowWindow" , 0xA915},
497 {"HideWindow" , 0xA916},
498 {"GetWRefCon" , 0xA917},
499 {"SetWRefCon" , 0xA918},
500 {"GetWTitle" , 0xA919},
501 {"SetWTitle" , 0xA91A},
502 {"MoveWindow" , 0xA91B},
503 {"HiliteWindow" , 0xA91C},
504 {"SizeWindow" , 0xA91D},
505 {"TrackGoAway" , 0xA91E},
506 {"SelectWindow" , 0xA91F},
507 {"BringToFront" , 0xA920},
508 {"SendBehind" , 0xA921},
509 {"BeginUpDate" , 0xA922},
510 {"EndUpDate" , 0xA923},
511 {"FrontWindow" , 0xA924},
512 {"DragWindow" , 0xA925},
513 {"DragTheRgn" , 0xA926},
514 {"InvalRgn" , 0xA927},
515 {"InvalRect" , 0xA928},
516 {"ValidRgn" , 0xA929},
517 {"ValidRect" , 0xA92A},
518 {"GrowWindow" , 0xA92B},
519 {"FindWindow" , 0xA92C},
520 {"CloseWindow" , 0xA92D},
521 {"SetWindowPic" , 0xA92E},
522 {"GetWindowPic" , 0xA92F},
523 {"InitMenus" , 0xA930},
524 {"NewMenu" , 0xA931},
525 {"DisposMenu" , 0xA932},
526 {"DisposeMenu" , 0xA932},
527 {"AppendMenu" , 0xA933},
528 {"ClearMenuBar" , 0xA934},
529 {"InsertMenu" , 0xA935},
530 {"DeleteMenu" , 0xA936},
531 {"DrawMenuBar" , 0xA937},
532 {"HiliteMenu" , 0xA938},
533 {"EnableItem" , 0xA939},
534 {"DisableItem" , 0xA93A},
535 {"GetMenuBar" , 0xA93B},
536 {"SetMenuBar" , 0xA93C},
537 {"MenuSelect" , 0xA93D},
538 {"MenuKey" , 0xA93E},
539 {"GetItmIcon" , 0xA93F},
540 {"SetItmIcon" , 0xA940},
541 {"GetItmStyle" , 0xA941},
542 {"SetItmStyle" , 0xA942},
543 {"GetItmMark" , 0xA943},
544 {"SetItmMark" , 0xA944},
545 {"CheckItem" , 0xA945},
546 {"GetMenuItemText" , 0xA946},
547 {"SetMenuItemText" , 0xA947},
548 {"CalcMenuSize" , 0xA948},
549 {"GetMenuHandle" , 0xA949},
550 {"SetMFlash" , 0xA94A},
551 {"PlotIcon" , 0xA94B},
552 {"FlashMenuBar" , 0xA94C},
553 {"AppendResMenu" , 0xA94D},
554 {"PinRect" , 0xA94E},
555 {"DeltaPoint" , 0xA94F},
556 {"CountMItems" , 0xA950},
557 {"InsertResMenu" , 0xA951},
558 {"DeleteMenuItem" , 0xA952},
559 {"UpdtControl" , 0xA953},
560 {"NewControl" , 0xA954},
561 {"DisposeControl" , 0xA955},
562 {"KillControls" , 0xA956},
563 {"ShowControl" , 0xA957},
564 {"HideControl" , 0xA958},
565 {"MoveControl" , 0xA959},
566 {"GetControlReference" , 0xA95A},
567 {"SetControlReference" , 0xA95B},
568 {"SizeControl" , 0xA95C},
569 {"HiliteControl" , 0xA95D},
570 {"GetControlTitle" , 0xA95E},
571 {"SetControlTitle" , 0xA95F},
572 {"GetControlValue" , 0xA960},
573 {"GetControlMinimum" , 0xA961},
574 {"GetControlMaximum" , 0xA962},
575 {"SetControlValue" , 0xA963},
576 {"SetControlMinimum" , 0xA964},
577 {"SetControlMaximum" , 0xA965},
578 {"TestControl" , 0xA966},
579 {"DragControl" , 0xA967},
580 {"TrackControl" , 0xA968},
581 {"DrawControls" , 0xA969},
582 {"GetControlAction" , 0xA96A},
583 {"SetControlAction" , 0xA96B},
584 {"FindControl" , 0xA96C},
585 {"Draw1Control" , 0xA96D},
586 {"Dequeue" , 0xA96E},
587 {"Enqueue" , 0xA96F},
588 {"GetNextEvent" , 0xA970},
589 {"EventAvail" , 0xA971},
590 {"GetMouse" , 0xA972},
591 {"StillDown" , 0xA973},
592 {"Button" , 0xA974},
593 {"TickCount" , 0xA975},
594 {"GetKeys" , 0xA976},
595 {"WaitMouseUp" , 0xA977},
596 {"UpdtDialog" , 0xA978},
597 {"InitDialogs" , 0xA97B},
598 {"GetNewDialog" , 0xA97C},
599 {"NewDialog" , 0xA97D},
600 {"SelIText" , 0xA97E},
601 {"SelectDialogItemText" , 0xA97E},
602 {"IsDialogEvent" , 0xA97F},
603 {"DialogSelect" , 0xA980},
604 {"DrawDialog" , 0xA981},
605 {"CloseDialog" , 0xA982},
606 {"DisposDialog" , 0xA983},
607 {"DisposeDialog" , 0xA983},
608 {"FindDialogItem" , 0xA984},
609 {"Alert" , 0xA985},
610 {"StopAlert" , 0xA986},
611 {"NoteAlert" , 0xA987},
612 {"CautionAlert" , 0xA988},
613 {"ParamText" , 0xA98B},
614 {"ErrorSound" , 0xA98C},
615 {"GetDialogItem" , 0xA98D},
616 {"SetDialogItem" , 0xA98E},
617 {"SetDialogItemText" , 0xA98F},
618 {"GetDialogItemText" , 0xA990},
619 {"ModalDialog" , 0xA991},
620 {"DetachResource" , 0xA992},
621 {"SetResPurge" , 0xA993},
622 {"CurResFile" , 0xA994},
623 {"InitResources" , 0xA995},
624 {"RsrcZoneInit" , 0xA996},
625 {"OpenResFile" , 0xA997},
626 {"UseResFile" , 0xA998},
627 {"UpdateResFile" , 0xA999},
628 {"CloseResFile" , 0xA99A},
629 {"SetResLoad" , 0xA99B},
630 {"CountResources" , 0xA99C},
631 {"GetIndResource" , 0xA99D},
632 {"CountTypes" , 0xA99E},
633 {"GetIndType" , 0xA99F},
634 {"GetResource" , 0xA9A0},
635 {"GetNamedResource" , 0xA9A1},
636 {"LoadResource" , 0xA9A2},
637 {"ReleaseResource" , 0xA9A3},
638 {"HomeResFile" , 0xA9A4},
639 {"SizeRsrc" , 0xA9A5},
640 {"GetResAttrs" , 0xA9A6},
641 {"SetResAttrs" , 0xA9A7},
642 {"GetResInfo" , 0xA9A8},
643 {"SetResInfo" , 0xA9A9},
644 {"ChangedResource" , 0xA9AA},
645 {"AddResource" , 0xA9AB},
646 {"AddReference" , 0xA9AC},
647 {"RmveResource" , 0xA9AD},
648 {"RmveReference" , 0xA9AE},
649 {"ResError" , 0xA9AF},
650 {"WriteResource" , 0xA9B0},
651 {"CreateResFile" , 0xA9B1},
652 {"SystemEvent" , 0xA9B2},
653 {"SystemClick" , 0xA9B3},
654 {"SystemTask" , 0xA9B4},
655 {"SystemMenu" , 0xA9B5},
656 {"OpenDeskAcc" , 0xA9B6},
657 {"CloseDeskAcc" , 0xA9B7},
658 {"GetPattern" , 0xA9B8},
659 {"GetCursor" , 0xA9B9},
660 {"GetString" , 0xA9BA},
661 {"GetIcon" , 0xA9BB},
662 {"GetPicture" , 0xA9BC},
663 {"GetNewWindow" , 0xA9BD},
664 {"GetNewControl" , 0xA9BE},
665 {"GetRMenu" , 0xA9BF},
666 {"GetNewMBar" , 0xA9C0},
667 {"UniqueID" , 0xA9C1},
668 {"SysEdit" , 0xA9C2},
669 {"KeyTrans" , 0xA9C3},
670 {"KeyTranslate" , 0xA9C3},
671 {"OpenRFPerm" , 0xA9C4},
672 {"RsrcMapEntry" , 0xA9C5},
673 {"SecondsToDate" , 0xA9C6},
674 {"DateToSeconds" , 0xA9C7},
675 {"SysBeep" , 0xA9C8},
676 {"SysError" , 0xA9C9},
677 {"PutIcon" , 0xA9CA},
678 {"TEGetText" , 0xA9CB},
679 {"TEInit" , 0xA9CC},
680 {"TEDispose" , 0xA9CD},
681 {"TETextBox" , 0xA9CE},
682 {"TESetText" , 0xA9CF},
683 {"TECalText" , 0xA9D0},
684 {"TESetSelect" , 0xA9D1},
685 {"TENew" , 0xA9D2},
686 {"TEUpdate" , 0xA9D3},
687 {"TEClick" , 0xA9D4},
688 {"TECopy" , 0xA9D5},
689 {"TECut" , 0xA9D6},
690 {"TEDelete" , 0xA9D7},
691 {"TEActivate" , 0xA9D8},
692 {"TEDeactivate" , 0xA9D9},
693 {"TEIdle" , 0xA9DA},
694 {"TEPaste" , 0xA9DB},
695 {"TEKey" , 0xA9DC},
696 {"TEScroll" , 0xA9DD},
697 {"TEInsert" , 0xA9DE},
698 {"TESetAlignment" , 0xA9DF},
699 {"Munger" , 0xA9E0},
700 {"HandToHand" , 0xA9E1},
701 {"PtrToXHand" , 0xA9E2},
702 {"PtrToHand" , 0xA9E3},
703 {"HandAndHand" , 0xA9E4},
704 {"InitPack" , 0xA9E5},
705 {"InitAllPacks" , 0xA9E6},
706 {"Pack0" , 0xA9E7},
707 {"Pack1" , 0xA9E8},
708 {"Pack2" , 0xA9E9},
709 {"Pack3" , 0xA9EA},
710 {"FP68K" , 0xA9EB},
711 {"Elems68K" , 0xA9EC},
712 {"Pack6" , 0xA9ED},
713 {"DECSTR68K" , 0xA9EE},
714 {"PtrAndHand" , 0xA9EF},
715 {"LoadSeg" , 0xA9F0},
716 {"UnLoadSeg" , 0xA9F1},
717 {"Launch" , 0xA9F2},
718 {"Chain" , 0xA9F3},
719 {"ExitToShell" , 0xA9F4},
720 {"GetAppParms" , 0xA9F5},
721 {"GetResFileAttrs" , 0xA9F6},
722 {"SetResFileAttrs" , 0xA9F7},
723 {"MethodDispatch" , 0xA9F8},
724 {"InfoScrap" , 0xA9F9},
725 {"UnloadScrap" , 0xA9FA},
726 {"LoadScrap" , 0xA9FB},
727 {"ZeroScrap" , 0xA9FC},
728 {"GetScrap" , 0xA9FD},
729 {"PutScrap" , 0xA9FE},
730 {"Debugger" , 0xA9FF},
731 {"OpenCPort" , 0xAA00},
732 {"InitCPort" , 0xAA01},
733 {"CloseCPort" , 0xAA02},
734 {"NewPixMap" , 0xAA03},
735 {"DisposePixMap" , 0xAA04},
736 {"CopyPixMap" , 0xAA05},
737 {"SetPortPix" , 0xAA06},
738 {"NewPixPat" , 0xAA07},
739 {"DisposePixPat" , 0xAA08},
740 {"CopyPixPat" , 0xAA09},
741 {"PenPixPat" , 0xAA0A},
742 {"BackPixPat" , 0xAA0B},
743 {"GetPixPat" , 0xAA0C},
744 {"MakeRGBPat" , 0xAA0D},
745 {"FillCRect" , 0xAA0E},
746 {"FillCOval" , 0xAA0F},
747 {"FillCRoundRect" , 0xAA10},
748 {"FillCArc" , 0xAA11},
749 {"FillCRgn" , 0xAA12},
750 {"FillCPoly" , 0xAA13},
751 {"RGBForeColor" , 0xAA14},
752 {"RGBBackColor" , 0xAA15},
753 {"SetCPixel" , 0xAA16},
754 {"GetCPixel" , 0xAA17},
755 {"GetCTable" , 0xAA18},
756 {"GetForeColor" , 0xAA19},
757 {"GetBackColor" , 0xAA1A},
758 {"GetCCursor" , 0xAA1B},
759 {"SetCCursor" , 0xAA1C},
760 {"AllocCursor" , 0xAA1D},
761 {"GetCIcon" , 0xAA1E},
762 {"PlotCIcon" , 0xAA1F},
763 {"OpenCPicture" , 0xAA20},
764 {"OpColor" , 0xAA21},
765 {"HiliteColor" , 0xAA22},
766 {"CharExtra" , 0xAA23},
767 {"DisposeCTable" , 0xAA24},
768 {"DisposeCIcon" , 0xAA25},
769 {"DisposeCCursor" , 0xAA26},
770 {"GetMaxDevice" , 0xAA27},
771 {"GetCTSeed" , 0xAA28},
772 {"GetDeviceList" , 0xAA29},
773 {"GetMainDevice" , 0xAA2A},
774 {"GetNextDevice" , 0xAA2B},
775 {"TestDeviceAttribute" , 0xAA2C},
776 {"SetDeviceAttribute" , 0xAA2D},
777 {"InitGDevice" , 0xAA2E},
778 {"NewGDevice" , 0xAA2F},
779 {"DisposeGDevice" , 0xAA30},
780 {"SetGDevice" , 0xAA31},
781 {"GetGDevice" , 0xAA32},
782 {"Color2Index" , 0xAA33},
783 {"Index2Color" , 0xAA34},
784 {"InvertColor" , 0xAA35},
785 {"RealColor" , 0xAA36},
786 {"GetSubTable" , 0xAA37},
787 {"UpdatePixMap" , 0xAA38},
788 {"MakeITable" , 0xAA39},
789 {"AddSearch" , 0xAA3A},
790 {"AddComp" , 0xAA3B},
791 {"SetClientID" , 0xAA3C},
792 {"ProtectEntry" , 0xAA3D},
793 {"ReserveEntry" , 0xAA3E},
794 {"SetEntries" , 0xAA3F},
795 {"QDError" , 0xAA40},
796 {"SetWinColor" , 0xAA41},
797 {"GetAuxWin" , 0xAA42},
798 {"SetControlColor" , 0xAA43},
799 {"SetCtlColor" , 0xAA43},
800 {"GetAuxCtl" , 0xAA44},
801 {"GetAuxiliaryControlRecord", 0xAA44},
802 {"NewCWindow" , 0xAA45},
803 {"GetNewCWindow" , 0xAA46},
804 {"SetDeskCPat" , 0xAA47},
805 {"GetCWMgrPort" , 0xAA48},
806 {"SaveEntries" , 0xAA49},
807 {"RestoreEntries" , 0xAA4A},
808 {"NewColorDialog" , 0xAA4B},
809 {"DelSearch" , 0xAA4C},
810 {"DelComp" , 0xAA4D},
811 {"SetStdCProcs" , 0xAA4E},
812 {"CalcCMask" , 0xAA4F},
813 {"SeedCFill" , 0xAA50},
814 {"CopyDeepMask" , 0xAA51},
815 {"HighLevelFSDispatch" , 0xAA52},
816 {"DictionaryDispatch" , 0xAA53},
817 {"TextServicesDispatch" , 0xAA54},
818 {"DockingDispatch" , 0xAA57},
819 {"MixedModeDispatch" , 0xAA59},
820 {"CodeFragmentDispatch" , 0xAA5A},
821 {"OCEUtils" , 0xAA5C},
822 {"DigitalSignature" , 0xAA5D},
823 {"TBDispatch" , 0xAA5E},
824 {"DeleteMCEntries" , 0xAA60},
825 {"GetMCInfo" , 0xAA61},
826 {"SetMCInfo" , 0xAA62},
827 {"DisposeMCInfo" , 0xAA63},
828 {"GetMCEntry" , 0xAA64},
829 {"SetMCEntries" , 0xAA65},
830 {"MenuChoice" , 0xAA66},
831 {"DialogDispatch" , 0xAA68},
832 {"InitPalettes" , 0xAA90},
833 {"NewPalette" , 0xAA91},
834 {"GetNewPalette" , 0xAA92},
835 {"DisposePalette" , 0xAA93},
836 {"ActivatePalette" , 0xAA94},
837 {"SetPalette" , 0xAA95},
838 {"GetPalette" , 0xAA96},
839 {"PmForeColor" , 0xAA97},
840 {"PmBackColor" , 0xAA98},
841 {"AnimateEntry" , 0xAA99},
842 {"AnimatePalette" , 0xAA9A},
843 {"GetEntryColor" , 0xAA9B},
844 {"SetEntryColor" , 0xAA9C},
845 {"GetEntryUsage" , 0xAA9D},
846 {"SetEntryUsage" , 0xAA9E},
847 {"CTab2Palette" , 0xAA9F},
848 {"Palette2CTab" , 0xAAA0},
849 {"CopyPalette" , 0xAAA1},
850 {"PaletteDispatch" , 0xAAA2},
851 {"ALMDispatch" , 0xAAA4},
852 {"CursorDeviceDispatch" , 0xAADB},
853 {"ControlStripDispatch" , 0xAAF2},
854 {"QDExtensions" , 0xAB1D},
855 {"NQDMisc" , 0xABC3},
856 {"IconDispatch" , 0xABC9},
857 {"DeviceLoop" , 0xABCA},
858 {"DisplayDispatch" , 0xABEB},
859 {"ThreadDispatch" , 0xABF2},
860 {"CollectionMgr" , 0xABF6},
861 {"StdOpcodeProc" , 0xABF8},
862 {"TranslationDispatch" , 0xABFC},
863 {"DebugStr" , 0xABFF},
864 {"" , 0}
865 };
866
867 #endif