ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon_atraps.h
Revision: 1.11
Committed: 2004-02-12T17:18:03Z (20 years, 3 months ago) by cebix
Content type: text/plain
Branch: MAIN
CVS Tags: release_3-1, release_3-2, HEAD
Changes since 1.10: +1 -1 lines
Log Message:
Happy New Year! :-)

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * mon_atraps.h - MacOS A-Line trap definitions
3     *
4 cebix 1.11 * cxmon (C) 1997-2004 Christian Bauer, Marc Hellwig
5 cebix 1.2 *
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 cebix 1.1 */
20    
21 cebix 1.2 #ifndef MON_ATRAPS_H
22     #define MON_ATRAPS_H
23    
24 cebix 1.1 struct atrap_info {
25 cebix 1.6 const char *name;
26 cebix 1.7 uint16 word;
27 cebix 1.1 };
28    
29 cebix 1.7 // A-Traps in ascending order
30     static const atrap_info atraps[] = {
31     {"Open" , 0xA000},
32     {"Close" , 0xA001},
33     {"Read" , 0xA002},
34     {"Write" , 0xA003},
35     {"Control" , 0xA004},
36     {"Status" , 0xA005},
37     {"KillIO" , 0xA006},
38     {"GetVolInfo" , 0xA007},
39     {"Create" , 0xA008},
40     {"Delete" , 0xA009},
41     {"OpenRF" , 0xA00A},
42     {"Rename" , 0xA00B},
43     {"GetFileInfo" , 0xA00C},
44     {"SetFileInfo" , 0xA00D},
45     {"UnmountVol" , 0xA00E},
46     {"MountVol" , 0xA00F},
47     {"Allocate" , 0xA010},
48     {"GetEOF" , 0xA011},
49     {"SetEOF" , 0xA012},
50     {"FlushVol" , 0xA013},
51     {"GetVol" , 0xA014},
52     {"SetVol" , 0xA015},
53     {"FInitQueue" , 0xA016},
54     {"Eject" , 0xA017},
55     {"GetFPos" , 0xA018},
56     {"InitZone" , 0xA019},
57     {"SetZone" , 0xA01B},
58     {"FreeMem" , 0xA01C},
59     {"DisposePtr" , 0xA01F},
60     {"SetPtrSize" , 0xA020},
61     {"GetPtrSize" , 0xA021},
62     {"DisposeHandle" , 0xA023},
63     {"SetHandleSize" , 0xA024},
64     {"GetHandleSize" , 0xA025},
65     {"ReallocHandle" , 0xA027},
66     {"HLock" , 0xA029},
67     {"HUnlock" , 0xA02A},
68     {"EmptyHandle" , 0xA02B},
69     {"InitApplZone" , 0xA02C},
70     {"SetApplLimit" , 0xA02D},
71     {"BlockMove" , 0xA02E},
72     {"PostEvent" , 0xA02F},
73     {"OSEventAvail" , 0xA030},
74     {"GetOSEvent" , 0xA031},
75     {"FlushEvents" , 0xA032},
76     {"VInstall" , 0xA033},
77     {"VRemove" , 0xA034},
78     {"OffLine" , 0xA035},
79     {"MoreMasters" , 0xA036},
80     {"ReadParam" , 0xA037},
81     {"WriteParam" , 0xA038},
82     {"ReadDateTime" , 0xA039},
83     {"SetDateTime" , 0xA03A},
84     {"Delay" , 0xA03B},
85     {"CmpString" , 0xA03C},
86     {"DrvrInstall" , 0xA03D},
87     {"DrvrRemove" , 0xA03E},
88     {"InitUtil" , 0xA03F},
89     {"ResrvMem" , 0xA040},
90     {"SetFilLock" , 0xA041},
91     {"RstFilLock" , 0xA042},
92     {"SetFilType" , 0xA043},
93     {"SetFPos" , 0xA044},
94     {"FlushFile" , 0xA045},
95     {"SetTrapAddress" , 0xA047},
96     {"HPurge" , 0xA049},
97     {"HNoPurge" , 0xA04A},
98     {"SetGrowZone" , 0xA04B},
99     {"CompactMem" , 0xA04C},
100     {"PurgeMem" , 0xA04D},
101     {"AddDrive" , 0xA04E},
102     {"RDrvrInstall" , 0xA04F},
103     {"CompareString" , 0xA050},
104     {"ReadXPRam" , 0xA051},
105     {"WriteXPRam" , 0xA052},
106     {"UprString" , 0xA054},
107     {"StripAddress" , 0xA055},
108     {"LowerText" , 0xA056},
109     {"SetApplBase" , 0xA057},
110     {"InsTime" , 0xA058},
111     {"RmvTime" , 0xA059},
112     {"PrimeTime" , 0xA05A},
113     {"PowerOff" , 0xA05B},
114     {"MemoryDispatch" , 0xA05C},
115     {"SwapMMUMode" , 0xA05D},
116     {"NMInstall" , 0xA05E},
117     {"NMRemove" , 0xA05F},
118     {"FSDispatch" , 0xA060},
119     {"MaxBlock" , 0xA061},
120     {"MaxApplZone" , 0xA063},
121     {"MoveHHi" , 0xA064},
122     {"StackSpace" , 0xA065},
123     {"HSetRBit" , 0xA067},
124     {"HClrRBit" , 0xA068},
125     {"HGetState" , 0xA069},
126     {"HSetState" , 0xA06A},
127     {"TestManager" , 0xA06B},
128     {"InitFS" , 0xA06C},
129     {"InitEvents" , 0xA06D},
130     {"SlotManager" , 0xA06E},
131     {"SlotVInstall" , 0xA06F},
132     {"SlotVRemove" , 0xA070},
133     {"AttachVBL" , 0xA071},
134     {"DoVBLTask" , 0xA072},
135     {"OSReserved" , 0xA073},
136     {"CacheMgr" , 0xA074},
137     {"SIntInstall" , 0xA075},
138     {"SIntRemove" , 0xA076},
139     {"CountADBs" , 0xA077},
140     {"GetIndADB" , 0xA078},
141     {"GetADBInfo" , 0xA079},
142     {"SetADBInfo" , 0xA07A},
143     {"ADBReInit" , 0xA07B},
144     {"ADBOp" , 0xA07C},
145     {"GetDefaultStartup" , 0xA07D},
146     {"SetDefaultStartup" , 0xA07E},
147     {"InternalWait" , 0xA07F},
148     {"GetVideoDefault" , 0xA080},
149     {"SetVideoDefault" , 0xA081},
150     {"DTInstall" , 0xA082},
151     {"SetOSDefault" , 0xA083},
152     {"GetOSDefault" , 0xA084},
153     {"PMgrOp" , 0xA085},
154     {"IOPInfoAccess" , 0xA086},
155     {"IOPMsgRequest" , 0xA087},
156     {"IOPMoveData" , 0xA088},
157     {"SCSIAtomic" , 0xA089},
158     {"Sleep" , 0xA08A},
159     {"CommToolboxDispatch" , 0xA08B},
160     {"Wakeup" , 0xA08C},
161     {"DebugUtil" , 0xA08D},
162     {"BTreeDispatch" , 0xA08E},
163     {"DeferUserFn" , 0xA08F},
164     {"SysEnvirons" , 0xA090},
165     {"Translate24To32" , 0xA091},
166     {"EgretDispatch" , 0xA092},
167     {"Microseconds" , 0xA093},
168     {"ServerDispatch" , 0xA094},
169     {"POGOMPW" , 0xA095},
170     {"SharedLibsMPW" , 0xA096},
171     {"FPPriv" , 0xA097},
172     {"XToolTable" , 0xA099},
173     {"vProcHelper" , 0xA09A},
174     {"Messager" , 0xA09B},
175     {"NewPtrStartup" , 0xA09C},
176     {"MoveHLow" , 0xA09D},
177     {"PowerMgrDispatch" , 0xA09E},
178     {"PowerDispatch" , 0xA09F},
179     {"vMRdAddr" , 0xA0A0},
180     {"vMRdData" , 0xA0A1},
181     {"vMWrData" , 0xA0A2},
182     {"HeapDispatch" , 0xA0A4},
183     {"VisRegionChanged" , 0xA0A5},
184     {"vStdEntry" , 0xA0A6},
185     {"vStdExit" , 0xA0A7},
186     {"FSM" , 0xA0AC},
187     {"vADBProc" , 0xA0AE},
188     {"vMtCheck" , 0xA0AF},
189     {"vCheckReMount" , 0xA0B0},
190     {"vDtrmV2" , 0xA0B1},
191     {"vFindDrive" , 0xA0B2},
192     {"vFClose" , 0xA0B3},
193     {"vFlushMDB" , 0xA0B4},
194     {"vGoDriver" , 0xA0B5},
195     {"vWaitUntil" , 0xA0B6},
196     {"vSyncWait" , 0xA0B7},
197     {"vSoundDead" , 0xA0B8},
198     {"vDisptch" , 0xA0B9},
199     {"vIAZInit" , 0xA0BA},
200     {"vIAZPostInit" , 0xA0BB},
201     {"vLaunchInit" , 0xA0BC},
202     {"vCacheFlush" , 0xA0BD},
203     {"vSysUtil" , 0xA0BE},
204     {"vLg2Phys" , 0xA0BF},
205     {"vFlushCache" , 0xA0C0},
206     {"vGetBlock" , 0xA0C1},
207     {"vMarkBlock" , 0xA0C2},
208     {"vRelBlock" , 0xA0C3},
209     {"vTrashBlocks" , 0xA0C4},
210     {"vTrashVBlks" , 0xA0C5},
211     {"vCacheWrIP" , 0xA0C6},
212     {"vCacheRdIP" , 0xA0C7},
213     {"vBasicIO" , 0xA0C8},
214     {"vRdBlocks" , 0xA0C9},
215     {"vWrBlocks" , 0xA0CA},
216     {"vSetUpTags" , 0xA0CB},
217     {"vBTClose" , 0xA0CC},
218     {"vBTDelete" , 0xA0CD},
219     {"vBTFlush" , 0xA0CE},
220     {"vBTGetRecord" , 0xA0CF},
221     {"vBTInsert" , 0xA0D0},
222     {"vBTOpen" , 0xA0D1},
223     {"vBTSearch" , 0xA0D2},
224     {"vBTUpdate" , 0xA0D3},
225     {"vGetNode" , 0xA0D4},
226     {"vRelNode" , 0xA0D5},
227     {"vAllocNode" , 0xA0D6},
228     {"vFreeNode" , 0xA0D7},
229     {"vExtBTFile" , 0xA0D8},
230     {"vDeallocFile" , 0xA0D9},
231     {"vExtendFile" , 0xA0DA},
232     {"vTruncateFile" , 0xA0DB},
233     {"vCMSetup" , 0xA0DC},
234     {"PPC" , 0xA0DD},
235     {"vDtrmV1" , 0xA0DE},
236     {"vBlkAlloc" , 0xA0DF},
237     {"vBlkDeAlloc" , 0xA0E0},
238     {"vFileOpen" , 0xA0E1},
239     {"vPermssnChk" , 0xA0E2},
240     {"vFndFilName" , 0xA0E3},
241     {"vRfNCall" , 0xA0E4},
242     {"vAdjEOF" , 0xA0E5},
243     {"vPixel2Char" , 0xA0E6},
244     {"vChar2Pixel" , 0xA0E7},
245     {"vHiliteText" , 0xA0E8},
246     {"vFileClose" , 0xA0E9},
247     {"vFileRead" , 0xA0EA},
248     {"vFileWrite" , 0xA0EB},
249     {"DispatchHelper" , 0xA0EC},
250     {"vUpdAltMDB" , 0xA0ED},
251     {"vCkExtFS" , 0xA0EE},
252     {"vDtrmV3" , 0xA0EF},
253     {"vBMChk" , 0xA0F0},
254     {"vTstMod" , 0xA0F1},
255     {"vLocCRec" , 0xA0F2},
256     {"vTreeSearch" , 0xA0F3},
257     {"vMapFBlock" , 0xA0F4},
258     {"vXFSearch" , 0xA0F5},
259     {"vReadBM" , 0xA0F6},
260     {"vDoEject" , 0xA0F7},
261     {"vSegStack" , 0xA0F8},
262     {"vSuperLoad" , 0xA0F9},
263     {"vCmpFrm" , 0xA0FA},
264     {"vNewMap" , 0xA0FB},
265     {"vCheckLoad" , 0xA0FC},
266     {"XTrimMeasure" , 0xA0FD},
267     {"XFindWord" , 0xA0FE},
268     {"XFindLine" , 0xA0FF},
269     {"GetZone" , 0xA11A},
270     {"MaxMem" , 0xA11D},
271     {"NewPtr" , 0xA11E},
272     {"NewHandle" , 0xA122},
273     {"HandleZone" , 0xA126},
274     {"RecoverHandle" , 0xA128},
275     {"PPostEvent" , 0xA12F},
276     {"DrvrInstall" , 0xA13D},
277     {"GetTrapAddress" , 0xA146},
278     {"PtrZone" , 0xA148},
279     {"MemoryDispatch" , 0xA15C},
280     {"PurgeSpace" , 0xA162},
281     {"NewEmptyHandle" , 0xA166},
282     {"Microseconds" , 0xA193},
283     {"HWPriv" , 0xA198},
284     {"Gestalt" , 0xA1AD},
285     {"HOpen" , 0xA200},
286     {"HGetVInfo" , 0xA207},
287     {"HCreate" , 0xA208},
288     {"HDelete" , 0xA209},
289     {"HOpenRF" , 0xA20A},
290     {"HRename" , 0xA20B},
291     {"HGetFileInfo" , 0xA20C},
292     {"HSetFileInfo" , 0xA20D},
293     {"HUnmountVol" , 0xA20E},
294     {"AllocContig" , 0xA210},
295     {"HGetVol" , 0xA214},
296     {"HSetVol" , 0xA215},
297     {"BlockMoveData" , 0xA22E},
298     {"HSetFLock" , 0xA241},
299     {"HRstFLock" , 0xA242},
300     {"SetOSTrapAddress" , 0xA247},
301     {"StripText" , 0xA256},
302     {"HFSDispatch" , 0xA260},
303     {"IdleUpdate" , 0xA285},
304     {"SleepQInstall" , 0xA28A},
305     {"NewPtrClear" , 0xA31E},
306     {"NewHandleClear" , 0xA322},
307     {"GetOSTrapAddress" , 0xA346},
308     {"NewGestalt" , 0xA3AD},
309     {"DrvrInstallRsrvMem" , 0xA43D},
310     {"UpperText" , 0xA456},
311     {"InsXTime" , 0xA458},
312     {"IdleState" , 0xA485},
313     {"SleepQRemove" , 0xA48A},
314     {"NewPtrSys" , 0xA51E},
315     {"NewHandleSys" , 0xA522},
316     {"DrvrInstallRsrvMem" , 0xA53D},
317     {"PurgeSpaceSys" , 0xA562},
318     {"ReplaceGestalt" , 0xA5AD},
319     {"SetToolBoxTrapAddress" , 0xA647},
320     {"StripUpperText" , 0xA656},
321     {"SerialPower" , 0xA685},
322     {"NewPtrSysClear" , 0xA71E},
323     {"NewHandleSysClear" , 0xA722},
324     {"GetToolBoxTrapAddress" , 0xA746},
325     {"GetToolTrapAddress" , 0xA746},
326     {"GetGestaltProcPtr" , 0xA7AD},
327     {"SoundDispatch" , 0xA800},
328     {"SndDisposeChannel" , 0xA801},
329     {"SndAddModifier" , 0xA802},
330     {"SndDoCommand" , 0xA803},
331     {"SndDoImmediate" , 0xA804},
332     {"SndPlay" , 0xA805},
333     {"SndControl" , 0xA806},
334     {"SndNewChannel" , 0xA807},
335     {"InitProcMenu" , 0xA808},
336     {"GetControlVariant" , 0xA809},
337     {"GetWVariant" , 0xA80A},
338     {"PopUpMenuSelect" , 0xA80B},
339     {"RGetResource" , 0xA80C},
340     {"Count1Resources" , 0xA80D},
341     {"Get1IxResource" , 0xA80E},
342     {"Get1IxType" , 0xA80F},
343     {"Unique1ID" , 0xA810},
344     {"TESelView" , 0xA811},
345     {"TEPinScroll" , 0xA812},
346     {"TEAutoView" , 0xA813},
347     {"SetFractEnable" , 0xA814},
348     {"SCSIDispatch" , 0xA815},
349     {"Pack8" , 0xA816},
350     {"CopyMask" , 0xA817},
351     {"FixATan2" , 0xA818},
352     {"XMunger" , 0xA819},
353     {"HOpenResFile" , 0xA81A},
354     {"HCreateResFile" , 0xA81B},
355     {"Count1Types" , 0xA81C},
356     {"InvalMenuBar" , 0xA81D},
357     {"SaveRestoreBits" , 0xA81E},
358     {"Get1Resource" , 0xA81F},
359     {"Get1NamedResource" , 0xA820},
360     {"MaxSizeRsrc" , 0xA821},
361     {"ResourceDispatch" , 0xA822},
362     {"AliasDispatch" , 0xA823},
363     {"FSMgr" , 0xA824},
364     {"MenuDispatch" , 0xA825},
365     {"InsertMenuItem" , 0xA826},
366     {"HideDialogItem" , 0xA827},
367     {"ShowDialogItem" , 0xA828},
368     {"LayerDispatch" , 0xA829},
369     {"ComponentDispatch" , 0xA82A},
370     {"Pack9" , 0xA82B},
371     {"Pack10" , 0xA82C},
372     {"Pack11" , 0xA82D},
373     {"Pack12" , 0xA82E},
374     {"Pack13" , 0xA82F},
375     {"Pack14" , 0xA830},
376     {"Pack15" , 0xA831},
377     {"QuickDrawGX" , 0xA832},
378     {"ScrnBitMap" , 0xA833},
379     {"SetFScaleDisable" , 0xA834},
380     {"FontMetrics" , 0xA835},
381     {"GetMaskTable" , 0xA836},
382     {"MeasureText" , 0xA837},
383     {"CalcMask" , 0xA838},
384     {"SeedFill" , 0xA839},
385     {"ZoomWindow" , 0xA83A},
386     {"TrackBox" , 0xA83B},
387     {"TEGetOffset" , 0xA83C},
388     {"TEDispatch" , 0xA83D},
389     {"TEStyleNew" , 0xA83E},
390     {"Long2Fix" , 0xA83F},
391     {"Fix2Long" , 0xA840},
392     {"Fix2Frac" , 0xA841},
393     {"Frac2Fix" , 0xA842},
394     {"Fix2X" , 0xA843},
395     {"X2Fix" , 0xA844},
396     {"Frac2X" , 0xA845},
397     {"X2Frac" , 0xA846},
398     {"FracCos" , 0xA847},
399     {"FracSin" , 0xA848},
400     {"FracSqrt" , 0xA849},
401     {"FracMul" , 0xA84A},
402     {"FracDiv" , 0xA84B},
403     {"UserDelay" , 0xA84C},
404     {"FixDiv" , 0xA84D},
405     {"GetItemCmd" , 0xA84E},
406     {"SetItemCmd" , 0xA84F},
407     {"InitCursor" , 0xA850},
408     {"SetCursor" , 0xA851},
409     {"HideCursor" , 0xA852},
410     {"ShowCursor" , 0xA853},
411     {"FontDispatch" , 0xA854},
412     {"ShieldCursor" , 0xA855},
413     {"ObscureCursor" , 0xA856},
414     {"SetEntry" , 0xA857},
415     {"BitAnd" , 0xA858},
416     {"BitXOr" , 0xA859},
417     {"BitNot" , 0xA85A},
418     {"BitOr" , 0xA85B},
419     {"BitShift" , 0xA85C},
420     {"BitTst" , 0xA85D},
421     {"BitSet" , 0xA85E},
422     {"BitClr" , 0xA85F},
423     {"WaitNextEvent" , 0xA860},
424     {"Random" , 0xA861},
425     {"ForeColor" , 0xA862},
426     {"BackColor" , 0xA863},
427     {"ColorBit" , 0xA864},
428     {"GetPixel" , 0xA865},
429     {"StuffHex" , 0xA866},
430     {"LongMul" , 0xA867},
431     {"FixMul" , 0xA868},
432     {"FixRatio" , 0xA869},
433     {"HiWord" , 0xA86A},
434     {"LoWord" , 0xA86B},
435     {"FixRound" , 0xA86C},
436     {"InitPort" , 0xA86D},
437     {"InitGraf" , 0xA86E},
438     {"OpenPort" , 0xA86F},
439     {"LocalToGlobal" , 0xA870},
440     {"GlobalToLocal" , 0xA871},
441     {"GrafDevice" , 0xA872},
442     {"SetPort" , 0xA873},
443     {"GetPort" , 0xA874},
444     {"SetPBits" , 0xA875},
445     {"PortSize" , 0xA876},
446     {"MovePortTo" , 0xA877},
447     {"SetOrigin" , 0xA878},
448     {"SetClip" , 0xA879},
449     {"GetClip" , 0xA87A},
450     {"ClipRect" , 0xA87B},
451     {"BackPat" , 0xA87C},
452     {"ClosePort" , 0xA87D},
453     {"AddPt" , 0xA87E},
454     {"SubPt" , 0xA87F},
455     {"SetPt" , 0xA880},
456     {"EqualPt" , 0xA881},
457     {"StdText" , 0xA882},
458     {"DrawChar" , 0xA883},
459     {"DrawString" , 0xA884},
460     {"DrawText" , 0xA885},
461     {"TextWidth" , 0xA886},
462     {"TextFont" , 0xA887},
463     {"TextFace" , 0xA888},
464     {"TextMode" , 0xA889},
465     {"TextSize" , 0xA88A},
466     {"GetFontInfo" , 0xA88B},
467     {"StringWidth" , 0xA88C},
468     {"CharWidth" , 0xA88D},
469     {"SpaceExtra" , 0xA88E},
470     {"OSDispatch" , 0xA88F},
471     {"StdLine" , 0xA890},
472     {"LineTo" , 0xA891},
473     {"Line" , 0xA892},
474     {"MoveTo" , 0xA893},
475     {"Move" , 0xA894},
476     {"ShutDown" , 0xA895},
477     {"HidePen" , 0xA896},
478     {"ShowPen" , 0xA897},
479     {"GetPenState" , 0xA898},
480     {"SetPenState" , 0xA899},
481     {"GetPen" , 0xA89A},
482     {"PenSize" , 0xA89B},
483     {"PenMode" , 0xA89C},
484     {"PenPat" , 0xA89D},
485     {"PenNormal" , 0xA89E},
486     {"Unimplemented" , 0xA89F},
487     {"StdRect" , 0xA8A0},
488     {"FrameRect" , 0xA8A1},
489     {"PaintRect" , 0xA8A2},
490     {"EraseRect" , 0xA8A3},
491     {"InverRect" , 0xA8A4},
492     {"FillRect" , 0xA8A5},
493     {"EqualRect" , 0xA8A6},
494     {"SetRect" , 0xA8A7},
495     {"OffsetRect" , 0xA8A8},
496     {"InsetRect" , 0xA8A9},
497     {"SectRect" , 0xA8AA},
498     {"UnionRect" , 0xA8AB},
499     {"Pt2Rect" , 0xA8AC},
500     {"PtInRect" , 0xA8AD},
501     {"EmptyRect" , 0xA8AE},
502     {"StdRRect" , 0xA8AF},
503     {"FrameRoundRect" , 0xA8B0},
504     {"PaintRoundRect" , 0xA8B1},
505     {"EraseRoundRect" , 0xA8B2},
506     {"InverRoundRect" , 0xA8B3},
507     {"FillRoundRect" , 0xA8B4},
508     {"ScriptUtil" , 0xA8B5},
509     {"StdOval" , 0xA8B6},
510     {"FrameOval" , 0xA8B7},
511     {"PaintOval" , 0xA8B8},
512     {"EraseOval" , 0xA8B9},
513     {"InvertOval" , 0xA8BA},
514     {"FillOval" , 0xA8BB},
515     {"SlopeFromAngle" , 0xA8BC},
516     {"StdArc" , 0xA8BD},
517     {"FrameArc" , 0xA8BE},
518     {"PaintArc" , 0xA8BF},
519     {"EraseArc" , 0xA8C0},
520     {"InvertArc" , 0xA8C1},
521     {"FillArc" , 0xA8C2},
522     {"PtToAngle" , 0xA8C3},
523     {"AngleFromSlope" , 0xA8C4},
524     {"StdPoly" , 0xA8C5},
525     {"FramePoly" , 0xA8C6},
526     {"PaintPoly" , 0xA8C7},
527     {"ErasePoly" , 0xA8C8},
528     {"InvertPoly" , 0xA8C9},
529     {"FillPoly" , 0xA8CA},
530     {"OpenPoly" , 0xA8CB},
531     {"ClosePoly" , 0xA8CC},
532     {"KillPoly" , 0xA8CD},
533     {"OffsetPoly" , 0xA8CE},
534     {"PackBits" , 0xA8CF},
535     {"UnpackBits" , 0xA8D0},
536     {"StdRgn" , 0xA8D1},
537     {"FrameRgn" , 0xA8D2},
538     {"PaintRgn" , 0xA8D3},
539     {"EraseRgn" , 0xA8D4},
540     {"InverRgn" , 0xA8D5},
541     {"FillRgn" , 0xA8D6},
542     {"BitMapToRegion" , 0xA8D7},
543     {"NewRgn" , 0xA8D8},
544     {"DisposeRgn" , 0xA8D9},
545     {"OpenRgn" , 0xA8DA},
546     {"CloseRgn" , 0xA8DB},
547     {"CopyRgn" , 0xA8DC},
548     {"SetEmptyRgn" , 0xA8DD},
549     {"SetRecRgn" , 0xA8DE},
550     {"RectRgn" , 0xA8DF},
551     {"OffsetRgn" , 0xA8E0},
552     {"InsetRgn" , 0xA8E1},
553     {"EmptyRgn" , 0xA8E2},
554     {"EqualRgn" , 0xA8E3},
555     {"SectRgn" , 0xA8E4},
556     {"UnionRgn" , 0xA8E5},
557     {"DiffRgn" , 0xA8E6},
558     {"XOrRgn" , 0xA8E7},
559     {"PtInRgn" , 0xA8E8},
560     {"RectInRgn" , 0xA8E9},
561     {"SetStdProcs" , 0xA8EA},
562     {"StdBits" , 0xA8EB},
563     {"CopyBits" , 0xA8EC},
564     {"StdTxMeas" , 0xA8ED},
565     {"StdGetPic" , 0xA8EE},
566     {"ScrollRect" , 0xA8EF},
567     {"StdPutPic" , 0xA8F0},
568     {"StdComment" , 0xA8F1},
569     {"PicComment" , 0xA8F2},
570     {"OpenPicture" , 0xA8F3},
571     {"ClosePicture" , 0xA8F4},
572     {"KillPicture" , 0xA8F5},
573     {"DrawPicture" , 0xA8F6},
574     {"Layout" , 0xA8F7},
575     {"ScalePt" , 0xA8F8},
576     {"MapPt" , 0xA8F9},
577     {"MapRect" , 0xA8FA},
578     {"MapRgn" , 0xA8FB},
579     {"MapPoly" , 0xA8FC},
580     {"PrGlue" , 0xA8FD},
581     {"InitFonts" , 0xA8FE},
582     {"GetFName" , 0xA8FF},
583     {"GetFNum" , 0xA900},
584     {"FMSwapFont" , 0xA901},
585     {"RealFont" , 0xA902},
586     {"SetFontLock" , 0xA903},
587     {"DrawGrowIcon" , 0xA904},
588     {"DragGrayRgn" , 0xA905},
589     {"NewString" , 0xA906},
590     {"SetString" , 0xA907},
591     {"ShowHide" , 0xA908},
592     {"CalcVis" , 0xA909},
593     {"CalcVBehind" , 0xA90A},
594     {"ClipAbove" , 0xA90B},
595     {"PaintOne" , 0xA90C},
596     {"PaintBehind" , 0xA90D},
597     {"SaveOld" , 0xA90E},
598     {"DrawNew" , 0xA90F},
599     {"GetWMgrPort" , 0xA910},
600     {"CheckUpDate" , 0xA911},
601     {"InitWindows" , 0xA912},
602     {"NewWindow" , 0xA913},
603     {"DisposeWindow" , 0xA914},
604     {"ShowWindow" , 0xA915},
605     {"HideWindow" , 0xA916},
606     {"GetWRefCon" , 0xA917},
607     {"SetWRefCon" , 0xA918},
608     {"GetWTitle" , 0xA919},
609     {"SetWTitle" , 0xA91A},
610     {"MoveWindow" , 0xA91B},
611     {"HiliteWindow" , 0xA91C},
612     {"SizeWindow" , 0xA91D},
613     {"TrackGoAway" , 0xA91E},
614     {"SelectWindow" , 0xA91F},
615     {"BringToFront" , 0xA920},
616     {"SendBehind" , 0xA921},
617     {"BeginUpDate" , 0xA922},
618     {"EndUpDate" , 0xA923},
619     {"FrontWindow" , 0xA924},
620     {"DragWindow" , 0xA925},
621     {"DragTheRgn" , 0xA926},
622     {"InvalRgn" , 0xA927},
623     {"InvalRect" , 0xA928},
624     {"ValidRgn" , 0xA929},
625     {"ValidRect" , 0xA92A},
626     {"GrowWindow" , 0xA92B},
627     {"FindWindow" , 0xA92C},
628     {"CloseWindow" , 0xA92D},
629     {"SetWindowPic" , 0xA92E},
630     {"GetWindowPic" , 0xA92F},
631     {"InitMenus" , 0xA930},
632     {"NewMenu" , 0xA931},
633     {"DisposeMenu" , 0xA932},
634     {"AppendMenu" , 0xA933},
635     {"ClearMenuBar" , 0xA934},
636     {"InsertMenu" , 0xA935},
637     {"DeleteMenu" , 0xA936},
638     {"DrawMenuBar" , 0xA937},
639     {"HiliteMenu" , 0xA938},
640     {"EnableItem" , 0xA939},
641     {"DisableItem" , 0xA93A},
642     {"GetMenuBar" , 0xA93B},
643     {"SetMenuBar" , 0xA93C},
644     {"MenuSelect" , 0xA93D},
645     {"MenuKey" , 0xA93E},
646     {"GetItmIcon" , 0xA93F},
647     {"SetItmIcon" , 0xA940},
648     {"GetItmStyle" , 0xA941},
649     {"SetItmStyle" , 0xA942},
650     {"GetItmMark" , 0xA943},
651     {"SetItmMark" , 0xA944},
652     {"CheckItem" , 0xA945},
653     {"GetMenuItemText" , 0xA946},
654     {"SetMenuItemText" , 0xA947},
655     {"CalcMenuSize" , 0xA948},
656     {"GetMenuHandle" , 0xA949},
657     {"SetMFlash" , 0xA94A},
658     {"PlotIcon" , 0xA94B},
659     {"FlashMenuBar" , 0xA94C},
660     {"AppendResMenu" , 0xA94D},
661     {"PinRect" , 0xA94E},
662     {"DeltaPoint" , 0xA94F},
663     {"CountMItems" , 0xA950},
664     {"InsertResMenu" , 0xA951},
665     {"DeleteMenuItem" , 0xA952},
666     {"UpdtControl" , 0xA953},
667     {"NewControl" , 0xA954},
668     {"DisposeControl" , 0xA955},
669     {"KillControls" , 0xA956},
670     {"ShowControl" , 0xA957},
671     {"HideControl" , 0xA958},
672     {"MoveControl" , 0xA959},
673     {"GetControlReference" , 0xA95A},
674     {"SetControlReference" , 0xA95B},
675     {"SizeControl" , 0xA95C},
676     {"HiliteControl" , 0xA95D},
677     {"GetControlTitle" , 0xA95E},
678     {"SetControlTitle" , 0xA95F},
679     {"GetControlValue" , 0xA960},
680     {"GetControlMinimum" , 0xA961},
681     {"GetControlMaximum" , 0xA962},
682     {"SetControlValue" , 0xA963},
683     {"SetControlMinimum" , 0xA964},
684     {"SetControlMaximum" , 0xA965},
685     {"TestControl" , 0xA966},
686     {"DragControl" , 0xA967},
687     {"TrackControl" , 0xA968},
688     {"DrawControls" , 0xA969},
689     {"GetControlAction" , 0xA96A},
690     {"SetControlAction" , 0xA96B},
691     {"FindControl" , 0xA96C},
692     {"Draw1Control" , 0xA96D},
693     {"Dequeue" , 0xA96E},
694     {"Enqueue" , 0xA96F},
695     {"GetNextEvent" , 0xA970},
696     {"EventAvail" , 0xA971},
697     {"GetMouse" , 0xA972},
698     {"StillDown" , 0xA973},
699     {"Button" , 0xA974},
700     {"TickCount" , 0xA975},
701     {"GetKeys" , 0xA976},
702     {"WaitMouseUp" , 0xA977},
703     {"UpdtDialog" , 0xA978},
704     {"CouldDialog" , 0xA979},
705     {"FreeDialog" , 0xA97A},
706     {"InitDialogs" , 0xA97B},
707     {"GetNewDialog" , 0xA97C},
708     {"NewDialog" , 0xA97D},
709     {"SelectDialogItemText" , 0xA97E},
710     {"IsDialogEvent" , 0xA97F},
711     {"DialogSelect" , 0xA980},
712     {"DrawDialog" , 0xA981},
713     {"CloseDialog" , 0xA982},
714     {"DisposeDialog" , 0xA983},
715     {"FindDialogItem" , 0xA984},
716     {"Alert" , 0xA985},
717     {"StopAlert" , 0xA986},
718     {"NoteAlert" , 0xA987},
719     {"CautionAlert" , 0xA988},
720     {"CouldAlert" , 0xA989},
721     {"FreeAlert" , 0xA98A},
722     {"ParamText" , 0xA98B},
723     {"ErrorSound" , 0xA98C},
724     {"GetDialogItem" , 0xA98D},
725     {"SetDialogItem" , 0xA98E},
726     {"SetDialogItemText" , 0xA98F},
727     {"GetDialogItemText" , 0xA990},
728     {"ModalDialog" , 0xA991},
729     {"DetachResource" , 0xA992},
730     {"SetResPurge" , 0xA993},
731     {"CurResFile" , 0xA994},
732     {"InitResources" , 0xA995},
733     {"RsrcZoneInit" , 0xA996},
734     {"OpenResFile" , 0xA997},
735     {"UseResFile" , 0xA998},
736     {"UpdateResFile" , 0xA999},
737     {"CloseResFile" , 0xA99A},
738     {"SetResLoad" , 0xA99B},
739     {"CountResources" , 0xA99C},
740     {"GetIndResource" , 0xA99D},
741     {"CountTypes" , 0xA99E},
742     {"GetIndType" , 0xA99F},
743     {"GetResource" , 0xA9A0},
744     {"GetNamedResource" , 0xA9A1},
745     {"LoadResource" , 0xA9A2},
746     {"ReleaseResource" , 0xA9A3},
747     {"HomeResFile" , 0xA9A4},
748     {"SizeRsrc" , 0xA9A5},
749     {"GetResAttrs" , 0xA9A6},
750     {"SetResAttrs" , 0xA9A7},
751     {"GetResInfo" , 0xA9A8},
752     {"SetResInfo" , 0xA9A9},
753     {"ChangedResource" , 0xA9AA},
754     {"AddResource" , 0xA9AB},
755     {"AddReference" , 0xA9AC},
756     {"RmveResource" , 0xA9AD},
757     {"RmveReference" , 0xA9AE},
758     {"ResError" , 0xA9AF},
759     {"WriteResource" , 0xA9B0},
760     {"CreateResFile" , 0xA9B1},
761     {"SystemEvent" , 0xA9B2},
762     {"SystemClick" , 0xA9B3},
763     {"SystemTask" , 0xA9B4},
764     {"SystemMenu" , 0xA9B5},
765     {"OpenDeskAcc" , 0xA9B6},
766     {"CloseDeskAcc" , 0xA9B7},
767     {"GetPattern" , 0xA9B8},
768     {"GetCursor" , 0xA9B9},
769     {"GetString" , 0xA9BA},
770     {"GetIcon" , 0xA9BB},
771     {"GetPicture" , 0xA9BC},
772     {"GetNewWindow" , 0xA9BD},
773     {"GetNewControl" , 0xA9BE},
774     {"GetRMenu" , 0xA9BF},
775     {"GetNewMBar" , 0xA9C0},
776     {"UniqueID" , 0xA9C1},
777     {"SysEdit" , 0xA9C2},
778     {"KeyTranslate" , 0xA9C3},
779     {"OpenRFPerm" , 0xA9C4},
780     {"RsrcMapEntry" , 0xA9C5},
781     {"SecondsToDate" , 0xA9C6},
782     {"DateToSeconds" , 0xA9C7},
783     {"SysBeep" , 0xA9C8},
784     {"SysError" , 0xA9C9},
785     {"PutIcon" , 0xA9CA},
786     {"TEGetText" , 0xA9CB},
787     {"TEInit" , 0xA9CC},
788     {"TEDispose" , 0xA9CD},
789     {"TETextBox" , 0xA9CE},
790     {"TESetText" , 0xA9CF},
791     {"TECalText" , 0xA9D0},
792     {"TESetSelect" , 0xA9D1},
793     {"TENew" , 0xA9D2},
794     {"TEUpdate" , 0xA9D3},
795     {"TEClick" , 0xA9D4},
796     {"TECopy" , 0xA9D5},
797     {"TECut" , 0xA9D6},
798     {"TEDelete" , 0xA9D7},
799     {"TEActivate" , 0xA9D8},
800     {"TEDeactivate" , 0xA9D9},
801     {"TEIdle" , 0xA9DA},
802     {"TEPaste" , 0xA9DB},
803     {"TEKey" , 0xA9DC},
804     {"TEScroll" , 0xA9DD},
805     {"TEInsert" , 0xA9DE},
806     {"TESetAlignment" , 0xA9DF},
807     {"Munger" , 0xA9E0},
808     {"HandToHand" , 0xA9E1},
809     {"PtrToXHand" , 0xA9E2},
810     {"PtrToHand" , 0xA9E3},
811     {"HandAndHand" , 0xA9E4},
812     {"InitPack" , 0xA9E5},
813     {"InitAllPacks" , 0xA9E6},
814     {"Pack0" , 0xA9E7},
815     {"Pack1" , 0xA9E8},
816     {"Pack2" , 0xA9E9},
817     {"Pack3" , 0xA9EA},
818     {"FP68K" , 0xA9EB},
819     {"Elems68K" , 0xA9EC},
820     {"Pack6" , 0xA9ED},
821     {"DECSTR68K" , 0xA9EE},
822     {"PtrAndHand" , 0xA9EF},
823     {"LoadSeg" , 0xA9F0},
824     {"UnLoadSeg" , 0xA9F1},
825     {"Launch" , 0xA9F2},
826     {"Chain" , 0xA9F3},
827     {"ExitToShell" , 0xA9F4},
828     {"GetAppParms" , 0xA9F5},
829     {"GetResFileAttrs" , 0xA9F6},
830     {"SetResFileAttrs" , 0xA9F7},
831     {"MethodDispatch" , 0xA9F8},
832     {"InfoScrap" , 0xA9F9},
833     {"UnloadScrap" , 0xA9FA},
834     {"LoadScrap" , 0xA9FB},
835     {"ZeroScrap" , 0xA9FC},
836     {"GetScrap" , 0xA9FD},
837     {"PutScrap" , 0xA9FE},
838     {"Debugger" , 0xA9FF},
839     {"OpenCPort" , 0xAA00},
840     {"InitCPort" , 0xAA01},
841     {"CloseCPort" , 0xAA02},
842     {"NewPixMap" , 0xAA03},
843     {"DisposePixMap" , 0xAA04},
844     {"CopyPixMap" , 0xAA05},
845     {"SetPortPix" , 0xAA06},
846     {"NewPixPat" , 0xAA07},
847     {"DisposePixPat" , 0xAA08},
848     {"CopyPixPat" , 0xAA09},
849     {"PenPixPat" , 0xAA0A},
850     {"BackPixPat" , 0xAA0B},
851     {"GetPixPat" , 0xAA0C},
852     {"MakeRGBPat" , 0xAA0D},
853     {"FillCRect" , 0xAA0E},
854     {"FillCOval" , 0xAA0F},
855     {"FillCRoundRect" , 0xAA10},
856     {"FillCArc" , 0xAA11},
857     {"FillCRgn" , 0xAA12},
858     {"FillCPoly" , 0xAA13},
859     {"RGBForeColor" , 0xAA14},
860     {"RGBBackColor" , 0xAA15},
861     {"SetCPixel" , 0xAA16},
862     {"GetCPixel" , 0xAA17},
863     {"GetCTable" , 0xAA18},
864     {"GetForeColor" , 0xAA19},
865     {"GetBackColor" , 0xAA1A},
866     {"GetCCursor" , 0xAA1B},
867     {"SetCCursor" , 0xAA1C},
868     {"AllocCursor" , 0xAA1D},
869     {"GetCIcon" , 0xAA1E},
870     {"PlotCIcon" , 0xAA1F},
871     {"OpenCPicture" , 0xAA20},
872     {"OpColor" , 0xAA21},
873     {"HiliteColor" , 0xAA22},
874     {"CharExtra" , 0xAA23},
875     {"DisposeCTable" , 0xAA24},
876     {"DisposeCIcon" , 0xAA25},
877     {"DisposeCCursor" , 0xAA26},
878     {"GetMaxDevice" , 0xAA27},
879     {"GetCTSeed" , 0xAA28},
880     {"GetDeviceList" , 0xAA29},
881     {"GetMainDevice" , 0xAA2A},
882     {"GetNextDevice" , 0xAA2B},
883     {"TestDeviceAttribute" , 0xAA2C},
884     {"SetDeviceAttribute" , 0xAA2D},
885     {"InitGDevice" , 0xAA2E},
886     {"NewGDevice" , 0xAA2F},
887     {"DisposeGDevice" , 0xAA30},
888     {"SetGDevice" , 0xAA31},
889     {"GetGDevice" , 0xAA32},
890     {"Color2Index" , 0xAA33},
891     {"Index2Color" , 0xAA34},
892     {"InvertColor" , 0xAA35},
893     {"RealColor" , 0xAA36},
894     {"GetSubTable" , 0xAA37},
895     {"UpdatePixMap" , 0xAA38},
896     {"MakeITable" , 0xAA39},
897     {"AddSearch" , 0xAA3A},
898     {"AddComp" , 0xAA3B},
899     {"SetClientID" , 0xAA3C},
900     {"ProtectEntry" , 0xAA3D},
901     {"ReserveEntry" , 0xAA3E},
902     {"SetEntries" , 0xAA3F},
903     {"QDError" , 0xAA40},
904     {"SetWinColor" , 0xAA41},
905     {"GetAuxWin" , 0xAA42},
906     {"SetControlColor" , 0xAA43},
907 cebix 1.3 {"GetAuxiliaryControlRecord", 0xAA44},
908 cebix 1.7 {"NewCWindow" , 0xAA45},
909     {"GetNewCWindow" , 0xAA46},
910     {"SetDeskCPat" , 0xAA47},
911     {"GetCWMgrPort" , 0xAA48},
912     {"SaveEntries" , 0xAA49},
913     {"RestoreEntries" , 0xAA4A},
914     {"NewColorDialog" , 0xAA4B},
915     {"DelSearch" , 0xAA4C},
916     {"DelComp" , 0xAA4D},
917     {"SetStdCProcs" , 0xAA4E},
918     {"CalcCMask" , 0xAA4F},
919     {"SeedCFill" , 0xAA50},
920     {"CopyDeepMask" , 0xAA51},
921     {"HighLevelFSDispatch" , 0xAA52},
922     {"DictionaryDispatch" , 0xAA53},
923     {"TextServicesDispatch" , 0xAA54},
924     {"KobeMgr" , 0xAA55},
925     {"SpeechRecognitionDispatch", 0xAA56},
926     {"DockingDispatch" , 0xAA57},
927     {"NewKernelDispatch" , 0xAA58},
928     {"MixedModeDispatch" , 0xAA59},
929     {"CodeFragmentDispatch" , 0xAA5A},
930     {"PBRemoteAccess" , 0xAA5B},
931     {"OCEUtils" , 0xAA5C},
932     {"DigitalSignature" , 0xAA5D},
933     {"OCETBDispatch" , 0xAA5E},
934     {"OCEAuthentication" , 0xAA5F},
935     {"DeleteMCEntries" , 0xAA60},
936     {"GetMCInfo" , 0xAA61},
937     {"SetMCInfo" , 0xAA62},
938     {"DisposeMCInfo" , 0xAA63},
939     {"GetMCEntry" , 0xAA64},
940     {"SetMCEntries" , 0xAA65},
941     {"MenuChoice" , 0xAA66},
942     {"ModalDialogMenuSetup" , 0xAA67},
943     {"DialogDispatch" , 0xAA68},
944     {"UserNameNotification" , 0xAA69},
945     {"DeviceMgr" , 0xAA6A},
946     {"PowerPCFuture" , 0xAA6B},
947     {"PenMacMgr" , 0xAA6C},
948     {"LanguageMgr" , 0xAA6D},
949     {"AppleGuideDispatch" , 0xAA6E},
950     {"InitPalettes" , 0xAA90},
951     {"NewPalette" , 0xAA91},
952     {"GetNewPalette" , 0xAA92},
953     {"DisposePalette" , 0xAA93},
954     {"ActivatePalette" , 0xAA94},
955     {"SetPalette" , 0xAA95},
956     {"GetPalette" , 0xAA96},
957     {"PmForeColor" , 0xAA97},
958     {"PmBackColor" , 0xAA98},
959     {"AnimateEntry" , 0xAA99},
960     {"AnimatePalette" , 0xAA9A},
961     {"GetEntryColor" , 0xAA9B},
962     {"SetEntryColor" , 0xAA9C},
963     {"GetEntryUsage" , 0xAA9D},
964     {"SetEntryUsage" , 0xAA9E},
965     {"CTab2Palette" , 0xAA9F},
966     {"Palette2CTab" , 0xAAA0},
967     {"CopyPalette" , 0xAAA1},
968     {"PaletteDispatch" , 0xAAA2},
969     {"CodecDispatch" , 0xAAA3},
970     {"ALMDispatch" , 0xAAA4},
971     {"QuickTimeDispatch" , 0xAAAA},
972     {"CursorDeviceDispatch" , 0xAADB},
973     {"HumanInterfaceUtilsDispatch", 0xAADD},
974     {"AppleScript" , 0xAAEE},
975     {"PCCardDispatch" , 0xAAF0},
976     {"ATAMgr" , 0xAAF1},
977     {"ControlStripDispatch" , 0xAAF2},
978     {"ExpansionBusDispatch" , 0xAAF3},
979     {"InterruptMgr" , 0xAAF4},
980     {"InitApplication" , 0xAAFA},
981     {"CleanupApplication" , 0xAAFB},
982     {"MixedModeMagic" , 0xAAFE},
983     {"BitBlt" , 0xAB00},
984     {"BitsToMap" , 0xAB01},
985     {"BitsToPix" , 0xAB02},
986     {"Jackson" , 0xAB03},
987     {"ColorMap" , 0xAB04},
988     {"CopyHandle" , 0xAB05},
989     {"CullPoints" , 0xAB06},
990     {"PutPicByte" , 0xAB07},
991     {"PutPicOp" , 0xAB08},
992     {"DrawArc" , 0xAB09},
993     {"DrawLine" , 0xAB0A},
994     {"DrawSlab" , 0xAB0B},
995     {"FastSlabMode" , 0xAB0C},
996     {"GetSeek" , 0xAB0D},
997     {"MakeScaleTbl" , 0xAB0E},
998     {"CheckPic" , 0xAB0F},
999     {"DoLine" , 0xAB10},
1000     {"OldPatToNew" , 0xAB11},
1001     {"PackRgn" , 0xAB12},
1002     {"PatConvert" , 0xAB13},
1003     {"PatDither" , 0xAB14},
1004     {"PatExpand" , 0xAB15},
1005     {"PInit" , 0xAB16},
1006     {"PortToMap" , 0xAB17},
1007     {"PushVerb" , 0xAB18},
1008     {"PutLine" , 0xAB19},
1009     {"PutOval" , 0xAB1A},
1010     {"PutRgn" , 0xAB1B},
1011     {"NewTempBuffer" , 0xAB1C},
1012     {"QDExtensions" , 0xAB1D},
1013     {"DisposeTempBuffer" , 0xAB1E},
1014     {"RgnBlit" , 0xAB1F},
1015     {"RgnOp" , 0xAB20},
1016     {"RSect" , 0xAB21},
1017     {"SeekRgn" , 0xAB22},
1018     {"SetFillPat" , 0xAB23},
1019     {"SetUpStretch" , 0xAB24},
1020     {"SlabMode" , 0xAB25},
1021     {"SortPoints" , 0xAB26},
1022     {"StretchBits" , 0xAB27},
1023     {"StdDevLoop" , 0xAB28},
1024     {"TrimRect" , 0xAB29},
1025     {"XorSlab" , 0xAB2A},
1026     {"ExTblPtr" , 0xAB2B},
1027     {"NewTempHandle" , 0xAB2D},
1028     {"PatExTbl" , 0xAB2E},
1029     {"bMAIN0" , 0xAB30},
1030     {"bMAIN1" , 0xAB31},
1031     {"bMAIN2" , 0xAB32},
1032     {"bMAIN3" , 0xAB33},
1033     {"bSETUP8" , 0xAB34},
1034     {"bMAIN9" , 0xAB35},
1035     {"bSETUP10" , 0xAB36},
1036     {"bMAIN11" , 0xAB37},
1037     {"bXMAIN8" , 0xAB38},
1038     {"bXMAIN9" , 0xAB39},
1039     {"bXMAIN10" , 0xAB3A},
1040     {"bXMAIN11" , 0xAB3B},
1041     {"bcMain0" , 0xAB3C},
1042     {"bcMain1" , 0xAB3D},
1043     {"bHilite" , 0xAB3E},
1044     {"bcMain3" , 0xAB3F},
1045     {"bEND0" , 0xAB40},
1046     {"bEND1" , 0xAB41},
1047     {"bEND2" , 0xAB42},
1048     {"bEND3" , 0xAB43},
1049     {"bLONG8" , 0xAB44},
1050     {"bEND9" , 0xAB45},
1051     {"bEND10" , 0xAB46},
1052     {"bEND11" , 0xAB47},
1053     {"bXLONG8" , 0xAB48},
1054     {"bXEND9" , 0xAB49},
1055     {"bXEND10" , 0xAB4A},
1056     {"bXEND11" , 0xAB4B},
1057     {"bcEnd0" , 0xAB4C},
1058     {"bcEnd1" , 0xAB4D},
1059     {"bSlowHilite" , 0xAB4E},
1060     {"bcEnd" , 0xAB4F},
1061     {"bAvg" , 0xAB50},
1062     {"bAddPin" , 0xAB51},
1063     {"bAddOver" , 0xAB52},
1064     {"bSubPin" , 0xAB53},
1065     {"bTransparent" , 0xAB54},
1066     {"bMax" , 0xAB55},
1067     {"bSubOver" , 0xAB56},
1068     {"bMin" , 0xAB57},
1069     {"bSetup0" , 0xAB58},
1070     {"bLeft0" , 0xAB59},
1071     {"rMASK0" , 0xAB5A},
1072     {"rMASK1" , 0xAB5B},
1073     {"rMASK2" , 0xAB5C},
1074     {"rMASK3" , 0xAB5D},
1075     {"rMASK8" , 0xAB5E},
1076     {"rMASK9" , 0xAB5F},
1077     {"rMASK10" , 0xAB60},
1078     {"rMASK11" , 0xAB61},
1079     {"rXMASK8" , 0xAB62},
1080     {"rXMASK9" , 0xAB63},
1081     {"rXMASK10" , 0xAB64},
1082     {"rXMASK11" , 0xAB65},
1083     {"rAvg" , 0xAB66},
1084     {"rAddPin" , 0xAB67},
1085     {"rAddOver" , 0xAB68},
1086     {"rSubPin" , 0xAB69},
1087     {"rTransparent" , 0xAB6A},
1088     {"rMax" , 0xAB6B},
1089     {"rSubOver" , 0xAB6C},
1090     {"rMin" , 0xAB6D},
1091     {"rcMask0" , 0xAB6E},
1092     {"rcMask1" , 0xAB6F},
1093     {"rSlowHilite" , 0xAB70},
1094     {"rcMask3" , 0xAB71},
1095     {"rHilite" , 0xAB72},
1096     {"stMASK0" , 0xAB73},
1097     {"stMASK1" , 0xAB74},
1098     {"stMASK2" , 0xAB75},
1099     {"stMASK3" , 0xAB76},
1100     {"stAvg" , 0xAB77},
1101     {"stAddPin" , 0xAB78},
1102     {"stAddOver" , 0xAB79},
1103     {"stSubPin" , 0xAB7A},
1104     {"stTransparent" , 0xAB7B},
1105     {"stMax" , 0xAB7C},
1106     {"stSubOver" , 0xAB7D},
1107     {"stMin" , 0xAB7E},
1108     {"stHilite" , 0xAB7F},
1109     {"slMASK8" , 0xAB80},
1110     {"slMASK9" , 0xAB81},
1111     {"slMASK10" , 0xAB82},
1112     {"slMASK11" , 0xAB83},
1113     {"slXMASK8" , 0xAB84},
1114     {"slXMASK9" , 0xAB85},
1115     {"slXMASK10" , 0xAB86},
1116     {"slXMASK11" , 0xAB87},
1117     {"slAvg" , 0xAB88},
1118     {"slAddPin" , 0xAB89},
1119     {"slAddOver" , 0xAB8A},
1120     {"slSubPin" , 0xAB8B},
1121     {"slTransparent" , 0xAB8C},
1122     {"slMax" , 0xAB8D},
1123     {"slSubOver" , 0xAB8E},
1124     {"slMin" , 0xAB8F},
1125     {"slHilite" , 0xAB90},
1126     {"ITabMatch" , 0xAB91},
1127     {"ColorThing" , 0xAB92},
1128     {"Pollack" , 0xAB93},
1129     {"AllocRunBuf" , 0xAB94},
1130     {"InitRgn" , 0xAB95},
1131     {"ScaleBlt" , 0xAB96},
1132     {"stNoStack" , 0xAB97},
1133     {"BlitCase" , 0xAB98},
1134     {"stScanLoop" , 0xAB99},
1135     {"PicItem1" , 0xAB9A},
1136     {"MakeGrayITab" , 0xAB9B},
1137     {"FastLine" , 0xAB9C},
1138     {"FastSlant" , 0xAB9D},
1139     {"BitsDevLoop" , 0xAB9E},
1140     {"rArith16Tab" , 0xABA0},
1141     {"rArith32Tab" , 0xABA1},
1142     {"rHiliteTab" , 0xABA2},
1143     {"gsRunTbl" , 0xABA3},
1144     {"gsExpTbl" , 0xABA4},
1145     {"gsSeekTbl" , 0xABA5},
1146     {"stArith16Tab" , 0xABA6},
1147     {"stArith32Tab" , 0xABA7},
1148     {"stColorTab" , 0xABA8},
1149     {"stGrayTab" , 0xABA9},
1150     {"stSearchTab" , 0xABAA},
1151     {"ScaleIndToInd" , 0xABAB},
1152     {"scIndTab1" , 0xABAC},
1153     {"scIndTab2" , 0xABAD},
1154     {"scIndTab4" , 0xABAE},
1155     {"scIndTab8" , 0xABAF},
1156     {"scIndTab16" , 0xABB0},
1157     {"scIndTab32" , 0xABB1},
1158     {"scDirTab1" , 0xABB2},
1159     {"scDirTab2" , 0xABB3},
1160     {"scDirTab4" , 0xABB4},
1161     {"scDirTab8" , 0xABB5},
1162     {"scDirTab16" , 0xABB6},
1163     {"scDirTab32" , 0xABB7},
1164     {"bArith16Tab" , 0xABB8},
1165     {"bArith32Tab" , 0xABB9},
1166     {"bHiliteTab" , 0xABBA},
1167     {"bArith16Setup" , 0xABBB},
1168     {"bArith32Setup" , 0xABBC},
1169     {"slArith16Tab" , 0xABBD},
1170     {"slArith32Tab" , 0xABBE},
1171     {"32QD" , 0xABBF},
1172     {"QDAlphaDispatch" , 0xABC0},
1173     {"QDStreamToMask" , 0xABC1},
1174     {"QTMatrixMathDispatch" , 0xABC2},
1175     {"NQDMisc" , 0xABC3},
1176     {"GetPMData" , 0xABC4},
1177     {"32QD" , 0xABC5},
1178     {"32QD" , 0xABC6},
1179     {"32QD" , 0xABC7},
1180     {"StdOpcodeProc" , 0xABC8},
1181     {"IconDispatch" , 0xABC9},
1182     {"DeviceLoop" , 0xABCA},
1183     {"PBBlockMove" , 0xABCC},
1184     {"SnappingTurk" , 0xABCD},
1185     {"UnicodeMgr" , 0xABCE},
1186     {"ProcessMgr" , 0xABCF},
1187     {"ModemMgr" , 0xABEA},
1188     {"DisplayDispatch" , 0xABEB},
1189     {"ButtonMgr" , 0xABEC},
1190     {"DragDispatch" , 0xABED},
1191     {"ColorSync" , 0xABEE},
1192     {"TTSMgr" , 0xABEF},
1193     {"AROSE" , 0xABF0},
1194     {"GestaltValueDispatch" , 0xABF1},
1195     {"ThreadDispatch" , 0xABF2},
1196     {"EddyTrap" , 0xABF3},
1197     {"XTNDMgr" , 0xABF4},
1198     {"DSPManager" , 0xABF5},
1199     {"CollectionMgr" , 0xABF6},
1200     {"SynchIdleTime" , 0xABF7},
1201     {"StdOpcodeProc" , 0xABF8},
1202     {"AUXDispatch" , 0xABF9},
1203     {"AUXSysCall" , 0xABFA},
1204     {"MessageMgr" , 0xABFB},
1205     {"TranslationDispatch" , 0xABFC},
1206     {"TouchStone" , 0xABFD},
1207     {"GXPrinting" , 0xABFE},
1208     {"DebugStr" , 0xABFF},
1209     {"" , 0}
1210 cebix 1.1 };
1211 cebix 1.2
1212     #endif