ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon_atraps.h
Revision: 1.2
Committed: 1999-10-04T21:16:02Z (24 years, 7 months ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.1: +20 -1 lines
Log Message:
- GPL'ified sources
- added provisions for autoconf stuff

File Contents

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