-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.txt
1298 lines (1298 loc) · 23.4 KB
/
tools.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; toolbox calls
; --- Tool Locator ---
0101 TLBootInit
0201 TLStartUp
0301 TLShutDown
0401 TLVersion
0501 TLReset
0601 TLStatus
0901 GetTSPtr
0A01 SetTSPtr
0B01 GetFuncPtr
0C01 GetWAP
0D01 SetWAP
0E01 LoadTools
0F01 LoadOneTool
1001 UnloadOneTool
1101 TLMountVolume
1201 TLTextMountVolume
1301 SaveTextState
1401 RestoreTextState
1501 MessageCenter
1601 SetDefaultTPT
1701 MessageByName
1801 StartUpTools
1901 ShutDownTools
1A01 GetMsgHandle
1B01 AcceptRequests
1C01 SendRequest
; --- Memory Manager ---
0102 MMBootInit
0202 MMStartUp
0302 MMShutDown
0402 MMVersion
0502 MMReset
0602 MMStatus
0902 NewHandle
0A02 ReallocHandle
0B02 RestoreHandle
0C02 AddToOOMQueue
0D02 DeleteFromOOMQueue
1002 DisposeHandle
1102 DisposeAll
1202 PurgeHandle
1302 PurgeAll
1802 GetHandleSize
1902 SetHandleSize
1A02 FindHandle
1B02 FreeMem
1C02 MaxBlock
1D02 TotalMem
1E02 CheckHandle
1F02 CompactMem
2002 HLock
2102 HLockAll
2202 HUnlock
2302 HUnlockAll
2402 SetPurge
2502 SetPurgeAll
2802 PtrToHand
2902 HandToPtr
2A02 HandToHand
2B02 BlockMove
2F02 RealFreeMem
3002 SetHandleID
; --- Miscellaneous Tool Set ---
0103 MTBootInit
0203 MTStartUp
0303 MTShutDown
0403 MTVersion
0503 MTReset
0603 MTStatus
0903 WriteBRam
0A03 ReadBRam
0B03 WriteBParam
0C03 ReadBParam
0D03 ReadTimeHex
0E03 WriteTimeHex
0F03 ReadAsciiTime
1003 SetVector
1103 GetVector
1203 SetHeartBeat
1303 DelHeartBeat
1403 ClrHeartBeat
1503 SysFailMgr
1603 GetAddr
1703 ReadMouse
1803 InitMouse
1903 SetMouse
1A03 HomeMouse
1B03 ClearMouse
1C03 ClampMouse
1D03 GetMouseClamp
1E03 PosMouse
1F03 ServeMouse
2003 GetNewID
2103 DeleteID
2203 StatusID
2303 IntSource
2403 FWEntry
2503 GetTick
2603 PackBytes
2703 UnPackBytes
2803 Munger
2903 GetIRQEnable
2A03 SetAbsClamp
2B03 GetAbsClamp
2C03 SysBeep
2E03 AddToQueue
2F03 DeleteFromQueue
3003 SetInterruptState
3103 GetInterruptState
3203 GetIntStateRecSize
3303 ReadMouse2
3403 GetCodeResConverter
3503 GetROMResource
3603 ReleaseROMResource
3703 ConvSeconds
3803 SysBeep2
3903 VersionString
3A03 WaitUntil
3B03 StringToText
3C03 ShowBootInfo
3D03 ScanDevices
3E03 AlertMessage
3F03 DoSysPrefs
; --- QuickDraw II ---
0104 QDBootInit
0204 QDStartup
0304 QDShutDown
0404 QDVersion
0504 QDReset
0604 QDStatus
0804 AddPt
0904 GetAddress
0A04 GrafOn
0B04 GrafOff
0C04 GetStandardSCB
0D04 InitColorTable
0E04 SetColorTable
0F04 GetColorTable
1004 SetColorEntry
1104 GetColorEntry
1204 SetSBC
1304 GetSCB
1404 SetAllSCBs
1504 ClearScreen
1604 SetMasterSCB
1704 GetMasterSCB
1804 OpenPort
1904 InitPort
1A04 ClosePort
1B04 SetPort
1C04 GetPort
1D04 SetPortLoc
1E04 GetPortLoc
1F04 SetPortRect
2004 GetPortRect
2104 SetPortSize
2204 MovePortTo
2304 SetOrigin
2404 SetClip
2504 GetClip
2604 ClipRect
2704 HidePen
2804 ShowPen
2904 GetPen
2A04 SetPenState
2B04 GetPenState
2C04 SetPenSize
2D04 GetPenSize
2E04 SetPenMode
2F04 GetPenMode
3004 SetPenPat
3104 GetPenPat
3204 SetPenMask
3304 GetPenMask
3404 SetBackPat
3504 GetBackPat
3604 PenNormal
3704 SetSolidPenPat
3804 SetSolidBackPat
3904 SolidPattern
3A04 MoveTo
3B04 Move
3C04 LineTo
3D04 Line
3E04 SetPicSave
3F04 GetPicSave
4004 SetRgnSave
4104 GetRgnSave
4204 SetPolySave
4304 GetPolySave
4404 SetGrafProcs
4504 GetGrafProcs
4604 SetUserField
4704 GetUserField
4804 SetSysField
4904 GetSysField
4A04 SetRect
4B04 OffsetRect
4C04 InsetRect
4D04 SectRect
4E04 UnionRect
4F04 PtInRect
5004 Pt2Rect
5104 EqualRect
5204 NotEmptyRect
5304 FrameRect
5404 PaintRect
5504 EraseRect
5604 InvertRect
5704 FillRect
5804 FrameOval
5904 PaintOval
5A04 EraseOval
5B04 InvertOval
5C04 FillOval
5D04 FrameRRect
5E04 PaintRRect
5F04 EraseRRect
6004 InvertRRect
6104 FillRRect
6204 FrameArc
6304 PaintArc
6404 EraseArc
6504 InvertArc
6604 FillArc
6704 NewRgn
6804 DisposeRgn
6904 CopyRgn
6A04 SetEmptyRgn
6B04 SetRectRgn
6C04 RectRgn
6D04 OpenRgn
6E04 CloseRgn
6F04 OffsetRgn
7004 InsetRgn
7104 SectRgn
7204 UnionRgn
7304 DiffRgn
7404 XorRgn
7504 PtInRgn
7604 RectInRgn
7704 EqualRgn
7804 EmptyRgn
7904 FrameRgn
7A04 PaintRgn
7B04 EraseRgn
7C04 InvertRgn
7D04 FillRgn
7E04 ScrollRect
7F04 PaintPixels
8104 SubPt
8204 SetPt
8304 EqualPt
8404 LocalToGlobal
8504 GlobalToLocal
8604 Random
8704 SetRandSeed
8804 GetPixel
8904 ScalePt
8A04 MapPt
8B04 MapRect
8C04 MapRgn
8D04 SetStdProcs
8E04 SetCursor
8F04 GetCursorAdr
9004 HideCursor
9104 ShowCursor
9404 SetFont
9504 GetFont
9604 GetFontInfo
9704 GetFontGlobals
9804 SetFontFlags
9904 GetFontFlags
9A04 SetTextFace
9B04 GetTextFace
9C04 SetTextMode
9D04 GetTextMode
9E04 SetSpaceExtra
9F04 GetSpaceExtra
A004 SetForeColor
A104 GetForeColor
A204 SetBackColor
A304 GetBackColor
A404 DrawChar
A504 DrawString
A604 DrawCString
A704 DrawText
A804 CharWidth
A904 StringWidth
AA04 CStringWidth
AB04 TextWidth
AC04 CharBounds
AD04 StringBounds
AE04 CStringBounds
AF04 TextBounds
B004 SetArcRot
B104 GetArcRot
B204 SetSysFont
B304 GetSysFont
B404 SetVisRgn
B504 GetVisRgn
B604 SetIntUse
B704 OpenPicture
B804 PicComment
B904 ClosePicture
BA04 DrawPicture
BB04 KillPicture
BC04 FramePoly
BD04 PaintPoly
BE04 ErasePoly
BF04 InvertPolt
C004 FillPolt
C104 OpenPoly
C204 ClosePoly
C304 KillPoly
C404 OffsetPoly
C504 MapPoly
C604 SetClipHandle
C704 GetClipHandle
C804 SetVisHandle
C904 GetVisHandle
CA04 InitCursor
CB04 SetBufDims
CC04 ForceBufDims
CD04 SaveBufDims
CE04 RestoreBufDims
CF04 GetFGSize
D004 SetFontID
D104 GetFontID
D204 SetTextSize
D304 GetTextSize
D404 SetCharExtra
D504 GetCharExtra
D604 PPToPort
D704 InflateTextBuffer
D804 GetRomFont
D904 GetFontLore
DA04 Get640Colors
DB04 Set640Color
; --- Desk Manager ---
0105 DeskBootInit
0205 DeskStartup
0305 DeskShutDown
0405 DeskVersion
0505 DeskReset
0605 DeskStatus
0905 SaveScrn
0A05 RestScrn
0B05 SaveAll
0C05 RestAll
0E05 InstallNDA
0F05 InstallCDA
1105 ChooseCDA
1305 SetDAStrPtr
1405 GetDAStrPtr
1505 OpenNDA
1605 CloseNDA
1705 SystemClick
1805 SystemEdit
1905 SystemTask
1A05 SystemEvent
1B05 GetNumNDAs
1C05 CloseNDAbyWinPtr
1D05 CloseAllNDAs
1E05 FixAppleMenu
1F05 AddToRunQ
2005 RemoveFromRunQ
2105 RemoveCDA
2205 RemoveNDA
2305 GetDeskAccInfo
2405 CallDeskAcc
2505 GetDeskGlobal
; --- Event Manager ---
0106 EMBootInit
0206 EMStartup
0306 EMShutDown
0406 EMVersion
0506 EMReset
0606 EMStatus
0906 DoWindows
0A06 GetNextEvent
0B06 EventAvail
0C06 GetMouse
0D06 Button
0E06 StillDown
0F06 WaitMouseUp
1006 TickCount
1106 GetDBLTime
1206 GetCaretTime
1306 SetSwitch
1406 PostEvent
1506 FlushEvents
1606 GetOSEvent
1706 OSEventAvail
1806 SetEventMask
1906 FakeMouse
1A06 SetAutoKeyLimit
1B06 GetKeyTranslation
1C06 SetKeyTranslation
; --- Scheduler ---
0107 SchBootInit
0207 SchStartup
0307 SchShutDown
0407 SchVersion
0507 SchReset
0607 SchStatus
0907 SchAddTask
0A07 SchFlush
; --- Sound Tool Set ---
0108 SoundBootInit
0208 SoundStartup
0308 SoundShutDown
0408 SoundVersion
0508 SoundReset
0608 SoundToolStatus
0908 WriteRamBlock
0A08 ReadRamBlock
0B08 GetTableAddres
0C08 GetSoundVolume
0D08 SetSoundVolume
0E08 FFStartSound
0F08 FFStopSound
1008 FFSoundStatus
1108 FFGeneratorStatus
1208 SetSoundMIRQV
1308 SetUserSoundIRQV
1408 FFSoundDoneStatus
1508 FFSetUpSound
1608 FFStartPlaying
1708 SetDOCReg
1808 ReadDOCReg
; --- Apple Desktop Bus Tool Set ---
0109 ADBBootInit
0209 ADBStartUp
0309 ADBShutDown
0409 ADBVersion
0509 ADBReset
0609 ADBStatus
0909 SendInfo
0A09 ReadKeyMicroData
0B09 ReadKeyMicroMemory
0D09 AsyncADBReceive
0E09 SyncADBReceive
0F09 AbsOn
1009 AbsOff
1109 ReadAbs
1209 SetAbsScale
1309 GetAbsScale
1409 SRQPoll
1509 SRQRemove
1609 ClearSRQTable
; --- SANE Tool Set ---
010A SANEBootInit
020A SANEStartup
030A SANEShutDown
040A SANEVersion
050A SANEReset
060A SANEStatus
090A SANEFP816
0A0A SANEDecStr816
0B0A SANEElems816
; --- Integer Math Tool Set ---
010B IMBootInit
020B IMStartup
030B IMShutDown
040B IMVersion
050B IMReset
060B IMStatus
090B Multiply
0A0B SDivide
0B0B UDivide
0C0B LongMul
0D0B LongDivide
0E0B FixRatio
0F0B FixMul
100B FracMul
110B FixDiv
120B FracDiv
130B FixRound
140B FracSqrt
150B FracCos
160B FracSin
170B FixATan2
180B HiWord
190B LoWord
1A0B Long2Fix
1B0B Fix2Long
1C0B Fix2Frac
1D0B Frac2Fix
1E0B Fix2X
1F0B Frac2X
200B X2Fix
210B X2Frac
220B Int2Hex
230B Long2Hex
240B Hex2Int
250B Hex2Long
260B Int2Dec
270B Long2Dec
280B Dec2Int
290B Dec2Long
2A0B HexIt
; --- Text Tools Set ---
010C TextBootInit
020C TextStartup
030C TextShutDown
040C TextVersion
050C TextReset
060C TextStatus
090C SetInGlobals
0A0C SetOutGlobals
0B0C SetErrGlobals
0C0C GetInGlobals
0D0C GetOutGlobals
0E0C GetErrGlobals
0F0C SetInputDevice
100C SetOutputDevice
110C SetErrDevice
120C GetInputDevice
130C GetOutputDevice
140C GetErrDevice
150C InitTextDev
160C CtlTextDev
170C StatusTextDev
180C WriteChar
190C ErrWriteChar
1A0C WriteLine
1B0C ErrWriteLine
1C0C WriteString
1D0C ErrWriteString
1E0C TextWriteBlock
1F0C ErrWriteBlock
200C WriteCString
210C ErrWriteCString
220C ReadChar
240C ReadLine
; --- reserved ---
; --- Window Manager ---
010E WindBootInit
020E WindStartup
030E WindShutDown
040E WindVersion
050E WindReset
060E WindStatus
090E NewWindow
0A0E CheckUpdate
0B0E CloseWindow
0C0E DeskTop
0D0E SetWTitle
0E0E GetWTitle
0F0E SetFrameColor
100E GetFrameColor
110E SelectWindow
120E HideWindow
130E ShowWindow
140E SendBehind
150E FrontWindow
160E SetInfoDraw
170E FindWindow
180E TrackGoAway
190E MoveWindow
1A0E DragWindow
1B0E GrowWindow
1C0E SizeWindow
1D0E TaskMaster
1E0E BeginUpdate
1F0E EndUpdate
200E GetWMgrPort
210E PinRect
220E HiliteWindow
230E ShowHide
240E BringToFront
250E WindNewRes
260E TrackZoom
270E ZoomWindow
280E SetWRefCon
290E GetWRefCon
2A0E GetNextWindow
2B0E GetWKind
2C0E GetWFrame
2D0E SetWFrame
2E0E GetStructRgn
2F0E GetContentRgn
300E GetUpdateRgn
310E GetDefProc
320E SetDefProc
330E GetWControls
340E SetOriginMask
350E GetInfoRefCon
360E SetInfoRefCon
370E GetZoomRect
380E SetZoomRect
390E RefreshDesktop
3A0E InvalRect
3B0E InvalRgn
3C0E ValidRect
3D0E ValidRgn
3E0E GetContentOrigin
3F0E SetContentOrigin
400E GetDataSize
410E SetDataSize
420E GetMaxGrow
430E SetMaxGrow
440E GetScroll
450E SetScroll
460E GetPage
470E SetPage
480E GetContentDraw
490E SetContentDraw
4A0E GetInfoDraw
4B0E SetSysWindow
4C0E GetSysWFlag
4D0E StartDrawing
4E0E SetWindowIcons
4F0E GetRectInfo
500E StartInfoDrawing
510E EndInfoDrawing
520E GetFirstWindow
530E WindDragRect
540E -- Window Manager Internal --
550E DrawInfoBar
560E WindowGlobal
570E SetContentOrigin
580E GetWindowMgrGlobals
590E AlertWindow
5A0E StartFrameDrawing
5B0E EndFrameDrawing
5C0E ResizeWindow
5D0E TaskMasterContent
5E0E TaskMasterKey
5F0E TaskMasterDA
600E CompileText
610E NewWindow2
620E ErrorWindow
630E GetAuxWindowInfo
640E DoModalWindow
650E MWGetCtlPart
660E MWSetMenuProc
670E MWStdDrawProc
680E MWSetUpEditMenu
690E FindCursorCtl
6A0E ResizeInfoBar
6B0E HandleDiskInsert
6C0E UpdateWindow
; --- Menu Manager ---
010F MenuBootInit
020F MenuStartup
030F MenuShutDown
040F MenuVersion
050F MenuReset
060F MenuStatus
090F MenuKey
0A0F GetMenuBar
0B0F MenuRefresh
0C0F FlashMenuBar
0D0F InsertMenu
0E0F DeleteMenu
0F0F InsertMItem
100F DeleteMItem
110F GetSysBar
120F SetSysBar
130F FixMenuBar
140F CountMItems
150F NewMenuBar
160F GetMHandle
170F SetBarColors
180F GetBarColors
190F SetMTitleStart
1A0F GetMTitleStart
1B0F GetMenuMgrPort
1C0F CalcMenuSize
1D0F SetMTitleWidth
1E0F GetMTitleWidth
1F0F SetMenuFlag
200F GetMenuFlag
210F SetMenuTitle
220F GetMenuTitle
230F MenuGlobal
240F SetMItem
250F GetMItem
260F SetMItemFlag
270F GetMItemFlag
280F SetMItemBlink
290F MenuNewRes
2A0F DrawMenuBar
2B0F MenuSelect
2C0F HiliteMenu
2D0F NewMenu
2E0F DisposeMenu
2F0F InitPalette
300F EnableMItem
310F DisableMItem
320F CheckMItem
330F SetMItemMark
340F GetMItemMark
350F SetMItemStyle
360F GetMItemStyle
370F SetMenuID
380F SetMItemID
390F SetMenuBar
3A0F SetMItemName
3B0F GetPopUpDefProc
3C0F PopUpMenuSelect
3E0F NewMenu2
3F0F InsertMItem2
400F SetMenuTitle2
410F SetMItem2
420F SetMItemName2
430F NewMenuBar2
450F HideMenuBar
460F ShowMenuBar
470F SetMItemIcon
480F GetMItemIcon
490F SetMItemStruct
4A0F GetMItemStruct
4B0F RemoveMItemStruct
4C0F GetMItemFlag2
4D0F SetMItemFlag2
4F0F GetMItemBlink
500F InsertPathMItems
; --- Control Manager ---
0110 CtlBootInit
0210 CtlStartup
0310 CtlShutDown
0410 CtlVersion
0510 CtlReset
0610 CtlStatus
0910 NewControl
0A10 DisposeControl
0B10 KillControls
0C10 SetCtlTitle
0D10 GetCtlTitle
0E10 HideControl
0F10 ShowControl
1010 DrawControls
1110 HiliteControl
1210 CtlNewRes
1310 FindControl
1410 TestControl
1510 TrackControl
1610 MoveControl
1710 DragControl
1810 SetCtlIcons
1910 SetCtlValue
1A10 GetCtlValue
1B10 SetCtlParams
1C10 GetCtlParams
1D10 DragRect
1E10 GrowSize
1F10 GetCtlDPage
2010 SetCtlAction
2110 GetCtlAction
2210 SetCtlRefCon
2310 GetCtlRefCon
2410 EraseControl
2510 DrawOneCtl
2610 FindTargetCtl
2710 MakeNextCtlTarget
2810 MakeThisCtlTarget
2910 SendEventToCtl
2A10 GetCtlID
2B10 SetCtlID
2C10 CallCtlDefProc
2D10 NotifyCtls
2E10 GetCtlMoreFlags
2F10 SetCtlMoreFlags
3010 GetCtlHandleFromID
3110 NewControl2
3210 CMLoadResource
3310 CMReleaseResource
3410 SetCtlParamPtr
3510 GetCtlParamPtr
3710 InvalCtls
3910 FindRadioButton
3A10 SetLETextByID
3B10 GetLETextByID
3C10 SetCtlValueByID
3D10 GetCtlValueByID
3E10 InvalOneCtlByID
3F10 HiliteCtlByID
; --- Loader ---
0111 LoaderBootInit
0211 LoaderStartup
0311 LoaderShutDown
0411 LoaderVersion
0511 LoaderReset
0611 LoaderStatus
0911 InitialLoad
0A11 Restart
0B11 LoadSegNum
0C11 UnloadSegNum
0D11 LoadSegName
0E11 UnloadSeg
0F11 GetLoadSegInfo
1011 GetUserID
1111 LGetPathname
1211 UserShutdown
1311 RenamePathname
2011 InitialLoad2
2111 GetUserID2
2211 LGetPathname2
; --- QuickDraw II Auxiliary ---
0112 QDAuxBootInit
0212 QDAuxStartup
0312 QDAuxShutDown
0412 QDAuxVersion
0512 QDAuxReset
0612 QDAuxStatus
0912 CopyPixels
0A12 WaitCursor
0B12 DrawIcon
0C12 SpecialRect
0D12 SeedFill
0E12 CalcMask
0F12 GetSysIcon
1012 PixelMap2Rgn
1312 IBeamCursor
1412 WhooshRect
1512 DrawStringWidth
1612 UseColorTable
1712 RestoreColorTable
; --- Print Manager ---
0113 PMBootInit
0213 PMStartup
0313 PMShutDown
0413 PMVersion
0513 PMReset
0613 PMStatus
0913 PrDefault
0A13 PrValidate
0B13 PrStlDialog
0C13 PrJobDialog
0D13 PrPixelMap
0E13 PrOpenDoc
0F13 PrCloseDoc
1013 PrOpenPage
1113 PrClosePage
1213 PrPicFile
1413 PrError
1513 PrSetError
1613 PrChoosePrinter
1813 PrGetPrinterSpecs
2313 PrDriverVer
2413 PrPortVer
2513 PrGetZoneName
2813 PrGetPrinterDvrName
2913 PrGetPortDvrName
2A13 PrGetUserName
2B13 PrGetNetworkName
3413 PMUnloadDriver
3513 PMLoadDriver
3613 PrGetDocName
3713 PrSetDocName
3813 PrGetPgOrientation
; --- Line Edit Tool Set ---
0114 LEBootInit
0214 LEStartup
0314 LEShutDown
0414 LEVersion
0514 LEReset
0614 LEStatus
0914 LENew
0A14 LEDispose
0B14 LESetText
0C14 LEIdle
0D14 LEClick
0E14 LESetSelect
0F14 LEActivate
1014 LEDeactivate
1114 LEKey
1214 LECur
1314 LECopy
1414 LEPaste
1514 LEDelete
1614 LEInsert
1714 LEUpdate
1814 LETextBox
1914 LEFromScrap
1A14 LEToScrap
1B14 LEScrapHandle
1C14 LEGetScrapLen
1D14 LESetScrapLen
1E14 LESetHilite
1F14 LESetCaret
2014 LETextBox2
2114 LESetJust
2214 LEGetTextHand
2314 LEGetTextLen
2414 GetLEDefProc
2514 LEClassifyKey
; --- Dialog Manager ---
0115 DialogBootInit
0215 DialogStartup
0315 DialogShutDown
0415 DialogVersion
0515 DialogReset
0615 DialogStatus
0915 ErrorSound
0A15 NewModalDialog
0B15 NewModelessDialog
0C15 CloseDialog
0D15 NewDItem
0E15 RemoveDItem
0F15 ModalDialog
1015 IsDialogEvent
1115 DialogSelect
1215 DlgCut
1315 DlgCopy
1415 DlgPaste
1515 DlgDelete
1615 DrawDialog
1715 Alert
1815 StopAlert
1915 NoteAlert
1A15 CautionAlert
1B15 ParamText
1C15 SetDAFont
1E15 GetControlDItem
1F15 GetIText
2015 SetIText
2115 SelectIText
2215 HideDItem
2315 ShowDItem
2415 FindDItem
2515 UpdateDialog
2615 GetDItemType
2715 SetDItemType
2815 GetDItemBox
2915 SetDItemBox
2A15 GetFirstDItem
2B15 GetNextDItem
2C15 ModalDialog2
2E15 GetDItemValue
2F15 SetDItemValue
3215 GetNewModalDialog
3315 GetNewDItem
3515 ResetAlertStage
3815 GetDItemBox
3415 GetAlertStage
3615 DefaultFilter
3715 GetDefButton
3815 SetDefButton
3915 DisableDItem
3A15 EnableDItem
; --- Scrap Manager ---
0116 ScrapBootInit
0216 ScrapStartup
0316 ScrapShutDown
0416 ScrapVersion
0516 ScrapReset
0616 ScrapStatus
0916 UnloadScrap
0A16 LoadScrap
0B16 ZeroScrap
0C16 PutScrap
0D16 GetScrap
0E16 GetScrapHandle
0F16 GetScrapSize
1016 GetScrapPath
1116 GetScrapPath
1216 GetScrapCount
1316 GetScrapState
1416 GetIndScrap
1516 ShowClipboard
; --- Standard File Tool Set ---
0117 SFBootInit
0217 SFStartup
0317 SFShutDown
0417 SFVersion
0517 SFReset
0617 SFStatus
0917 SFGetFile
0A17 SFPutFile
0B17 SFPGetFile
0C17 SFPPutFile
0D17 SFAllCaps
0E17 SFGetFile2
0F17 SFPutFile2
1017 SFPGetFile2
1117 SFPPutFile2
1217 SFShowInvisible
1317 SFReScan
1417 SFMultiGet2
1517 SFPMultiGet2
; --- reserved ---
; --- Note Synthesizer ---
0119 NSBootInit
0219 NSStartup
0319 NSShutDown
0419 NSVersion
0519 NSReset
0619 NSStatus
0919 AllocGen
0A19 DeAllocGen
0B19 NoteOn
0C19 NoteOff
0D19 AllNotesOff
0E19 NSSetUpdateRate