Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7161607a21bfc6062c864e2eaff97aee22a1b727 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547













                                               





                                          



                                        






                                                                        














































































































































































































































































































































































                                                                                                                                                  
                        
                                               




                                                    







                                                  







                                                      







                                               











































                                                             












                                                               




                                                    






                                                         







                                                           













































































































































































































































































































































































                                                                                   


                                                  







                                                    





                                                 
 





                                   





                                                     




































                                                 







                                          
                      
                                    

                                    
 













































                                                       





                                                          






























































































































































































































                                                                          





                                                                 





































































                                                      


                                                      




















































































































































































                                                                              



                        




















































































































































































                                                                                                         



                                                 




















































































































































































                                                                                                      




                                            






































































































































































































































































































                                                            





                                                 






















































































































                                                               




                                                



















































































































































































































































































































































































































































































































































                                                                         


                                









































































                                                                         


                          

































































































































































































                                                                                                           



                                              

































































































































































































































































































































































































































































                                                                                


                           







































































































































































































































                                                                                                       
org_eclipse_swt_internal_carbon_AEDesc=
AEDesc_descriptorType=cast=(DescType)
AEDesc_dataHandle=cast=(AEDataStorage)

org_eclipse_swt_internal_carbon_ATSTrapezoid=
ATSTrapezoid_upperLeft_x=accessor=upperLeft.x
ATSTrapezoid_upperLeft_y=accessor=upperLeft.y
ATSTrapezoid_upperRight_x=accessor=upperRight.x
ATSTrapezoid_upperRight_y=accessor=upperRight.y
ATSTrapezoid_lowerRight_x=accessor=lowerRight.x
ATSTrapezoid_lowerRight_y=accessor=lowerRight.y
ATSTrapezoid_lowerLeft_x=accessor=lowerLeft.x
ATSTrapezoid_lowerLeft_y=accessor=lowerLeft.y

org_eclipse_swt_internal_carbon_ATSUCaret=
ATSUCaret_fX=
ATSUCaret_fY=
ATSUCaret_fDeltaX=
ATSUCaret_fDeltaY=

org_eclipse_swt_internal_carbon_ATSUTab=
ATSUTab_tabPosition=
ATSUTab_tabType=

org_eclipse_swt_internal_carbon_ATSUUnhighlightData=
ATSUUnhighlightData_dataType=
ATSUUnhighlightData_red=accessor=unhighlightData.backgroundColor.red
ATSUUnhighlightData_green=accessor=unhighlightData.backgroundColor.green
ATSUUnhighlightData_blue=accessor=unhighlightData.backgroundColor.blue
ATSUUnhighlightData_alpha=accessor=unhighlightData.backgroundColor.alpha

org_eclipse_swt_internal_carbon_AlertStdCFStringAlertParamRec=
AlertStdCFStringAlertParamRec_version=
AlertStdCFStringAlertParamRec_movable=
AlertStdCFStringAlertParamRec_helpButton=
AlertStdCFStringAlertParamRec_defaultText=cast=(CFStringRef)
AlertStdCFStringAlertParamRec_cancelText=cast=(CFStringRef)
AlertStdCFStringAlertParamRec_otherText=cast=(CFStringRef)
AlertStdCFStringAlertParamRec_defaultButton=
AlertStdCFStringAlertParamRec_cancelButton=
AlertStdCFStringAlertParamRec_position=
AlertStdCFStringAlertParamRec_flags=

org_eclipse_swt_internal_carbon_BitMap=
BitMap_baseAddr=cast=(void *)
BitMap_rowBytes=
BitMap_top=accessor=bounds.top
BitMap_left=accessor=bounds.left
BitMap_bottom=accessor=bounds.bottom
BitMap_right=accessor=bounds.right

org_eclipse_swt_internal_carbon_CFRange=
CFRange_location=cast=(CFIndex)
CFRange_length=cast=(CFIndex)

org_eclipse_swt_internal_carbon_CGPoint=
CGPoint_x=cast=(float)
CGPoint_y=cast=(float)

org_eclipse_swt_internal_carbon_CGRect=
CGRect_x=accessor=origin.x,cast=(float)
CGRect_y=accessor=origin.y,cast=(float)
CGRect_width=accessor=size.width,cast=(float)
CGRect_height=accessor=size.height,cast=(float)

org_eclipse_swt_internal_carbon_ColorPickerInfo=
ColorPickerInfo_profile=accessor=theColor.profile,cast=(CMProfileHandle)
ColorPickerInfo_red=accessor=theColor.color.rgb.red,cast=(UInt16)
ColorPickerInfo_green=accessor=theColor.color.rgb.green,cast=(UInt16)
ColorPickerInfo_blue=accessor=theColor.color.rgb.blue,cast=(UInt16)
ColorPickerInfo_dstProfile=cast=(CMProfileHandle)
ColorPickerInfo_flags=cast=(UInt32)
ColorPickerInfo_placeWhere=cast=(DialogPlacementSpec)
ColorPickerInfo_h=accessor=dialogOrigin.h,cast=(short)
ColorPickerInfo_v=accessor=dialogOrigin.v,cast=(short)
ColorPickerInfo_pickerType=cast=(OSType)
ColorPickerInfo_eventProc=cast=(UserEventUPP)
ColorPickerInfo_colorProc=cast=(ColorChangedUPP)
ColorPickerInfo_colorProcData=cast=(UInt32)
ColorPickerInfo_prompt=cast=(Str255)
ColorPickerInfo_editMenuID=accessor=mInfo.editMenuID,cast=(SInt16)
ColorPickerInfo_cutItem=accessor=mInfo.cutItem,cast=(SInt16)
ColorPickerInfo_copyItem=accessor=mInfo.copyItem,cast=(SInt16)
ColorPickerInfo_pasteItem=accessor=mInfo.pasteItem,cast=(SInt16)
ColorPickerInfo_clearItem=accessor=mInfo.clearItem,cast=(SInt16)
ColorPickerInfo_undoItem=accessor=mInfo.undoItem,cast=(SInt16)
ColorPickerInfo_newColorChosen=cast=(Boolean)

org_eclipse_swt_internal_carbon_ControlButtonContentInfo=
ControlButtonContentInfo_contentType=cast=(ControlContentType)
ControlButtonContentInfo_iconRef=accessor=u.iconRef,cast=(void *)

org_eclipse_swt_internal_carbon_ControlFontStyleRec=
ControlFontStyleRec_flags=
ControlFontStyleRec_font=
ControlFontStyleRec_size=
ControlFontStyleRec_style=
ControlFontStyleRec_mode=
ControlFontStyleRec_just=
ControlFontStyleRec_foreColor_red=accessor=foreColor.red
ControlFontStyleRec_foreColor_green=accessor=foreColor.green
ControlFontStyleRec_foreColor_blue=accessor=foreColor.blue
ControlFontStyleRec_backColor_red=accessor=backColor.red
ControlFontStyleRec_backColor_green=accessor=backColor.green
ControlFontStyleRec_backColor_blue=accessor=backColor.blue

org_eclipse_swt_internal_carbon_ControlTabEntry=
ControlTabEntry_icon=cast=(ControlButtonContentInfo *)
ControlTabEntry_name=cast=(CFStringRef)
ControlTabEntry_enabled=cast=(Boolean)

org_eclipse_swt_internal_carbon_ControlTabInfoRecV1=
ControlTabInfoRecV1_version=cast=(SInt16)
ControlTabInfoRecV1_iconSuiteID=cast=(SInt16)
ControlTabInfoRecV1_name=cast=(CFStringRef)

org_eclipse_swt_internal_carbon_Cursor=
Cursor_data=
Cursor_mask=
Cursor_hotSpot_v=accessor=hotSpot.v
Cursor_hotSpot_h=accessor=hotSpot.h

org_eclipse_swt_internal_carbon_DataBrowserCallbacks=
DataBrowserCallbacks_version=cast=(UInt32)
DataBrowserCallbacks_v1_itemDataCallback=accessor=u.v1.itemDataCallback,cast=(DataBrowserItemDataUPP)
DataBrowserCallbacks_v1_itemCompareCallback=accessor=u.v1.itemCompareCallback,cast=(DataBrowserItemCompareUPP)
DataBrowserCallbacks_v1_itemNotificationCallback=accessor=u.v1.itemNotificationCallback,cast=(DataBrowserItemNotificationUPP)
DataBrowserCallbacks_v1_addDragItemCallback=accessor=u.v1.addDragItemCallback,cast=(DataBrowserAddDragItemUPP)
DataBrowserCallbacks_v1_acceptDragCallback=accessor=u.v1.acceptDragCallback,cast=(DataBrowserAcceptDragUPP)
DataBrowserCallbacks_v1_receiveDragCallback=accessor=u.v1.receiveDragCallback,cast=(DataBrowserReceiveDragUPP)
DataBrowserCallbacks_v1_postProcessDragCallback=accessor=u.v1.postProcessDragCallback,cast=(DataBrowserPostProcessDragUPP)
DataBrowserCallbacks_v1_itemHelpContentCallback=accessor=u.v1.itemHelpContentCallback,cast=(DataBrowserItemHelpContentUPP)
DataBrowserCallbacks_v1_getContextualMenuCallback=accessor=u.v1.getContextualMenuCallback,cast=(DataBrowserGetContextualMenuUPP)
DataBrowserCallbacks_v1_selectContextualMenuCallback=accessor=u.v1.selectContextualMenuCallback,cast=(DataBrowserSelectContextualMenuUPP)

org_eclipse_swt_internal_carbon_DataBrowserCustomCallbacks=
DataBrowserCustomCallbacks_version=
DataBrowserCustomCallbacks_v1_drawItemCallback=accessor=u.v1.drawItemCallback,cast=(DataBrowserDrawItemUPP)
DataBrowserCustomCallbacks_v1_editTextCallback=accessor=u.v1.editTextCallback,cast=(DataBrowserEditItemUPP)
DataBrowserCustomCallbacks_v1_hitTestCallback=accessor=u.v1.hitTestCallback,cast=(DataBrowserHitTestUPP)
DataBrowserCustomCallbacks_v1_trackingCallback=accessor=u.v1.trackingCallback,cast=(DataBrowserTrackingUPP)
DataBrowserCustomCallbacks_v1_dragRegionCallback=accessor=u.v1.dragRegionCallback,cast=(DataBrowserItemDragRgnUPP)
DataBrowserCustomCallbacks_v1_acceptDragCallback=accessor=u.v1.acceptDragCallback,cast=(DataBrowserItemAcceptDragUPP)
DataBrowserCustomCallbacks_v1_receiveDragCallback=accessor=u.v1.receiveDragCallback,cast=(DataBrowserItemReceiveDragUPP)

org_eclipse_swt_internal_carbon_DataBrowserListViewColumnDesc=
DataBrowserListViewColumnDesc_propertyDesc_propertyID=accessor=propertyDesc.propertyID,cast=(DataBrowserPropertyID)
DataBrowserListViewColumnDesc_propertyDesc_propertyType=accessor=propertyDesc.propertyType,cast=(OSType)
DataBrowserListViewColumnDesc_propertyDesc_propertyFlags=accessor=propertyDesc.propertyFlags,cast=(DataBrowserPropertyFlags)
DataBrowserListViewColumnDesc_headerBtnDesc_version=accessor=headerBtnDesc.version,cast=(UInt32)
DataBrowserListViewColumnDesc_headerBtnDesc_minimumWidth=accessor=headerBtnDesc.minimumWidth,cast=(UInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_maximumWidth=accessor=headerBtnDesc.maximumWidth,cast=(UInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_titleOffset=accessor=headerBtnDesc.titleOffset,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_titleString=accessor=headerBtnDesc.titleString,cast=(CFStringRef)
DataBrowserListViewColumnDesc_headerBtnDesc_initialOrder=accessor=headerBtnDesc.initialOrder,cast=(DataBrowserSortOrder)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_flags=accessor=headerBtnDesc.btnFontStyle.flags,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_font=accessor=headerBtnDesc.btnFontStyle.font,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_size=accessor=headerBtnDesc.btnFontStyle.size,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_style=accessor=headerBtnDesc.btnFontStyle.style,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_mode=accessor=headerBtnDesc.btnFontStyle.mode,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_just=accessor=headerBtnDesc.btnFontStyle.just,cast=(SInt16)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_foreColor_red=accessor=headerBtnDesc.btnFontStyle.foreColor.red,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_foreColor_green=accessor=headerBtnDesc.btnFontStyle.foreColor.green,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_foreColor_blue=accessor=headerBtnDesc.btnFontStyle.foreColor.blue,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_backColor_red=accessor=headerBtnDesc.btnFontStyle.backColor.red,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_backColor_green=accessor=headerBtnDesc.btnFontStyle.backColor.green,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnFontStyle_backColor_blue=accessor=headerBtnDesc.btnFontStyle.backColor.blue,cast=(unsigned short)
DataBrowserListViewColumnDesc_headerBtnDesc_btnContentInfo_contentType=accessor=headerBtnDesc.btnContentInfo.contentType,cast=(ControlContentType)
DataBrowserListViewColumnDesc_headerBtnDesc_btnContentInfo_iconRef=accessor=headerBtnDesc.btnContentInfo.u.iconRef,cast=(IconRef)

org_eclipse_swt_internal_carbon_DataBrowserListViewHeaderDesc=
DataBrowserListViewHeaderDesc_version=
DataBrowserListViewHeaderDesc_minimumWidth=
DataBrowserListViewHeaderDesc_maximumWidth=
DataBrowserListViewHeaderDesc_titleOffset=
DataBrowserListViewHeaderDesc_titleString=cast=(CFStringRef)
DataBrowserListViewHeaderDesc_initialOrder=
DataBrowserListViewHeaderDesc_btnFontStyle_flags=accessor=btnFontStyle.flags
DataBrowserListViewHeaderDesc_btnFontStyle_font=accessor=btnFontStyle.font
DataBrowserListViewHeaderDesc_btnFontStyle_size=accessor=btnFontStyle.size
DataBrowserListViewHeaderDesc_btnFontStyle_style=accessor=btnFontStyle.style
DataBrowserListViewHeaderDesc_btnFontStyle_mode=accessor=btnFontStyle.mode
DataBrowserListViewHeaderDesc_btnFontStyle_just=accessor=btnFontStyle.just
DataBrowserListViewHeaderDesc_btnFontStyle_foreColor_red=accessor=btnFontStyle.foreColor.red
DataBrowserListViewHeaderDesc_btnFontStyle_foreColor_green=accessor=btnFontStyle.foreColor.green
DataBrowserListViewHeaderDesc_btnFontStyle_foreColor_blue=accessor=btnFontStyle.foreColor.blue
DataBrowserListViewHeaderDesc_btnFontStyle_backColor_red=accessor=btnFontStyle.backColor.red
DataBrowserListViewHeaderDesc_btnFontStyle_backColor_green=accessor=btnFontStyle.backColor.green
DataBrowserListViewHeaderDesc_btnFontStyle_backColor_blue=accessor=btnFontStyle.backColor.blue
DataBrowserListViewHeaderDesc_btnContentInfo_contentType=accessor=btnContentInfo.contentType
DataBrowserListViewHeaderDesc_btnContentInfo_iconRef=accessor=btnContentInfo.u.iconRef,cast=(IconRef)

org_eclipse_swt_internal_carbon_EventRecord=
EventRecord_what=cast=(EventKind)
EventRecord_message=
EventRecord_when=
EventRecord_where_v=accessor=where.v
EventRecord_where_h=accessor=where.h
EventRecord_modifiers=cast=(EventModifiers)

org_eclipse_swt_internal_carbon_FontInfo=
FontInfo_ascent=
FontInfo_descent=
FontInfo_widMax=
FontInfo_leading=

org_eclipse_swt_internal_carbon_FontSelectionQDStyle=
FontSelectionQDStyle_version=
FontSelectionQDStyle_instance_fontFamily=accessor=instance.fontFamily
FontSelectionQDStyle_instance_fontStyle=accessor=instance.fontStyle
FontSelectionQDStyle_size=
FontSelectionQDStyle_hasColor=
FontSelectionQDStyle_reserved=
FontSelectionQDStyle_color_red=accessor=color.red
FontSelectionQDStyle_color_green=accessor=color.green
FontSelectionQDStyle_color_blue=accessor=color.blue

org_eclipse_swt_internal_carbon_GDevice=
GDevice_gdRefNum=
GDevice_gdID=
GDevice_gdType=
GDevice_gdITable=cast=(ITabHandle)
GDevice_gdResPref=
GDevice_gdSearchProc=cast=(SProcHndl)
GDevice_gdCompProc=cast=(CProcHndl)
GDevice_gdFlags=
GDevice_gdPMap=cast=(PixMapHandle)
GDevice_gdRefCon=
GDevice_gdNextGD=cast=(GDHandle)
GDevice_left=accessor=gdRect.left
GDevice_top=accessor=gdRect.top
GDevice_right=accessor=gdRect.right
GDevice_bottom=accessor=gdRect.bottom
GDevice_gdMode=
GDevice_gdCCBytes=
GDevice_gdCCDepth=
GDevice_gdCCXData=cast=(Handle)
GDevice_gdCCXMask=cast=(Handle)
GDevice_gdExt=cast=(Handle)

org_eclipse_swt_internal_carbon_HICommand=
HICommand_attributes=
HICommand_commandID=
HICommand_menu_menuRef=accessor=menu.menuRef,cast=(MenuRef)
HICommand_menu_menuItemIndex=accessor=menu.menuItemIndex,cast=(MenuItemIndex)

org_eclipse_swt_internal_carbon_HMHelpContentRec=
HMHelpContentRec_version=
HMHelpContentRec_absHotRect_top=accessor=absHotRect.top
HMHelpContentRec_absHotRect_left=accessor=absHotRect.left
HMHelpContentRec_absHotRect_bottom=accessor=absHotRect.bottom
HMHelpContentRec_absHotRect_right=accessor=absHotRect.right
HMHelpContentRec_tagSide=
HMHelpContentRec_content0_contentType=accessor=content[0].contentType
HMHelpContentRec_content0_tagCFString=accessor=content[0].u.tagCFString,cast=(CFStringRef)
HMHelpContentRec_content1_contentType=accessor=content[1].contentType
HMHelpContentRec_content1_tagCFString=accessor=content[1].u.tagCFString,cast=(CFStringRef)

org_eclipse_swt_internal_carbon_MenuTrackingData=
MenuTrackingData_menu=cast=(MenuRef)
MenuTrackingData_itemSelected=
MenuTrackingData_itemUnderMouse=
MenuTrackingData_top=accessor=itemRect.top
MenuTrackingData_left=accessor=itemRect.left
MenuTrackingData_bottom=accessor=itemRect.bottom
MenuTrackingData_right=accessor=itemRect.right
MenuTrackingData_virtualMenuTop=
MenuTrackingData_virtualMenuBottom=

org_eclipse_swt_internal_carbon_NavDialogCreationOptions=
NavDialogCreationOptions_version=
NavDialogCreationOptions_optionFlags=cast=(NavDialogOptionFlags)
NavDialogCreationOptions_location_h=accessor=location.h
NavDialogCreationOptions_location_v=accessor=location.v
NavDialogCreationOptions_clientName=cast=(CFStringRef)
NavDialogCreationOptions_windowTitle=cast=(CFStringRef)
NavDialogCreationOptions_actionButtonLabel=cast=(CFStringRef)
NavDialogCreationOptions_cancelButtonLabel=cast=(CFStringRef)
NavDialogCreationOptions_saveFileName=cast=(CFStringRef)
NavDialogCreationOptions_message=cast=(CFStringRef)
NavDialogCreationOptions_preferenceKey=
NavDialogCreationOptions_popupExtension=cast=(CFArrayRef)
NavDialogCreationOptions_modality=cast=(WindowModality)
NavDialogCreationOptions_parentWindow=cast=(WindowRef)

org_eclipse_swt_internal_carbon_NavReplyRecord=
NavReplyRecord_version=cast=(UInt16)
NavReplyRecord_validRecord=cast=(Boolean)
NavReplyRecord_replacing=cast=(Boolean)
NavReplyRecord_isStationery=cast=(Boolean)
NavReplyRecord_translationNeeded=cast=(Boolean)
NavReplyRecord_selection_descriptorType=accessor=selection.descriptorType,cast=(DescType)
NavReplyRecord_selection_dataHandle=accessor=selection.dataHandle,cast=(AEDataStorage)
NavReplyRecord_keyScript=cast=(ScriptCode)
NavReplyRecord_fileTranslation=cast=(FileTranslationSpecArrayHandle)
NavReplyRecord_reserved1=cast=(UInt32)
NavReplyRecord_saveFileName=cast=(CFStringRef)
NavReplyRecord_saveFileExtensionHidden=cast=(Boolean)
NavReplyRecord_reserved2=cast=(UInt8)
NavReplyRecord_reserved=cast=(char[])

org_eclipse_swt_internal_carbon_OS=
OS_AECountItems=
OS_AECountItems_0=cast=(const AEDescList *)
OS_AECountItems_1=cast=(long *)

OS_AEGetNthPtr=
OS_AEGetNthPtr_0=cast=(const AEDescList *)
OS_AEGetNthPtr_1=
OS_AEGetNthPtr_2=cast=(DescType)
OS_AEGetNthPtr_3=cast=(AEKeyword *)
OS_AEGetNthPtr_4=cast=(DescType *)
OS_AEGetNthPtr_5=cast=(void *)
OS_AEGetNthPtr_6=cast=(Size)
OS_AEGetNthPtr_7=cast=(Size *)

OS_AEProcessAppleEvent=
OS_AEProcessAppleEvent_0=cast=(const EventRecord *)

OS_ATSFontGetPostScriptName=
OS_ATSFontGetPostScriptName_0=cast=(ATSFontRef)
OS_ATSFontGetPostScriptName_1=cast=(ATSOptionFlags)
OS_ATSFontGetPostScriptName_2=cast=(CFStringRef *)

OS_ATSUBatchBreakLines=
OS_ATSUBatchBreakLines_0=cast=(ATSUTextLayout)
OS_ATSUBatchBreakLines_1=
OS_ATSUBatchBreakLines_2=
OS_ATSUBatchBreakLines_3=
OS_ATSUBatchBreakLines_4=cast=(ItemCount *)

OS_ATSUCreateStyle=
OS_ATSUCreateStyle_0=cast=(ATSUStyle *)

OS_ATSUCreateTextLayout=
OS_ATSUCreateTextLayout_0=cast=(ATSUTextLayout *)

OS_ATSUCreateTextLayoutWithTextPtr=
OS_ATSUCreateTextLayoutWithTextPtr_0=cast=(ConstUniCharArrayPtr)
OS_ATSUCreateTextLayoutWithTextPtr_1=
OS_ATSUCreateTextLayoutWithTextPtr_2=
OS_ATSUCreateTextLayoutWithTextPtr_3=
OS_ATSUCreateTextLayoutWithTextPtr_4=
OS_ATSUCreateTextLayoutWithTextPtr_5=cast=(const UniCharCount *)
OS_ATSUCreateTextLayoutWithTextPtr_6=cast=(ATSUStyle *)
OS_ATSUCreateTextLayoutWithTextPtr_7=cast=(ATSUTextLayout *)

OS_ATSUDisposeStyle=
OS_ATSUDisposeStyle_0=cast=(ATSUStyle)

OS_ATSUDisposeTextLayout=
OS_ATSUDisposeTextLayout_0=cast=(ATSUTextLayout)

OS_ATSUDrawText=
OS_ATSUDrawText_0=cast=(ATSUTextLayout)
OS_ATSUDrawText_1=cast=(UniCharArrayOffset)
OS_ATSUDrawText_2=cast=(UniCharCount)
OS_ATSUDrawText_3=cast=(ATSUTextMeasurement)
OS_ATSUDrawText_4=cast=(ATSUTextMeasurement)

OS_ATSUFindFontName=
OS_ATSUFindFontName_0=cast=ATSUFontID
OS_ATSUFindFontName_1=
OS_ATSUFindFontName_2=
OS_ATSUFindFontName_3=
OS_ATSUFindFontName_4=
OS_ATSUFindFontName_5=
OS_ATSUFindFontName_6=cast=Ptr
OS_ATSUFindFontName_7=
OS_ATSUFindFontName_8=

OS_ATSUGetFontIDs=
OS_ATSUGetFontIDs_0=cast=ATSUFontID *
OS_ATSUGetFontIDs_1=
OS_ATSUGetFontIDs_2=

OS_ATSUGetGlyphBounds__IIIIISII_3I=
OS_ATSUGetGlyphBounds__IIIIISII_3I_0=cast=(ATSUTextLayout)
OS_ATSUGetGlyphBounds__IIIIISII_3I_1=cast=(ATSUTextMeasurement)
OS_ATSUGetGlyphBounds__IIIIISII_3I_2=cast=(ATSUTextMeasurement)
OS_ATSUGetGlyphBounds__IIIIISII_3I_3=cast=(UniCharArrayOffset)
OS_ATSUGetGlyphBounds__IIIIISII_3I_4=
OS_ATSUGetGlyphBounds__IIIIISII_3I_5=
OS_ATSUGetGlyphBounds__IIIIISII_3I_6=
OS_ATSUGetGlyphBounds__IIIIISII_3I_7=cast=(ATSTrapezoid *)
OS_ATSUGetGlyphBounds__IIIIISII_3I_8=cast=(ItemCount *)

OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I=
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_0=cast=(ATSUTextLayout)
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_1=cast=(ATSUTextMeasurement)
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_2=cast=(ATSUTextMeasurement)
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_3=cast=(UniCharArrayOffset)
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_4=
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_5=
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_6=
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_7=cast=(ATSTrapezoid *)
OS_ATSUGetGlyphBounds__IIIIISILorg_eclipse_swt_internal_carbon_ATSTrapezoid_2_3I_8=cast=(ItemCount *)

OS_ATSUGetLayoutControl=
OS_ATSUGetLayoutControl_0=cast=(ATSUTextLayout)
OS_ATSUGetLayoutControl_1=cast=ATSUAttributeTag
OS_ATSUGetLayoutControl_2=
OS_ATSUGetLayoutControl_3=cast=ATSUAttributeValuePtr
OS_ATSUGetLayoutControl_4=cast=ByteCount *

OS_ATSUGetLineControl=
OS_ATSUGetLineControl_0=cast=(ATSUTextLayout)
OS_ATSUGetLineControl_1=cast=UniCharArrayOffset
OS_ATSUGetLineControl_2=cast=ATSUAttributeTag
OS_ATSUGetLineControl_3=cast=ByteCount
OS_ATSUGetLineControl_4=cast=ATSUAttributeValuePtr
OS_ATSUGetLineControl_5=cast=ByteCount *

OS_ATSUGetSoftLineBreaks=
OS_ATSUGetSoftLineBreaks_0=cast=(ATSUTextLayout)
OS_ATSUGetSoftLineBreaks_1=cast=(UniCharArrayOffset)
OS_ATSUGetSoftLineBreaks_2=cast=(UniCharCount)
OS_ATSUGetSoftLineBreaks_3=cast=(ItemCount)
OS_ATSUGetSoftLineBreaks_4=cast=(UniCharArrayOffset *)
OS_ATSUGetSoftLineBreaks_5=cast=(ItemCount *)

OS_ATSUGetTextHighlight=
OS_ATSUGetTextHighlight_0=cast=(ATSUTextLayout)
OS_ATSUGetTextHighlight_1=
OS_ATSUGetTextHighlight_2=
OS_ATSUGetTextHighlight_3=
OS_ATSUGetTextHighlight_4=
OS_ATSUGetTextHighlight_5=cast=RgnHandle

OS_ATSUGetUnjustifiedBounds=
OS_ATSUGetUnjustifiedBounds_0=cast=(ATSUTextLayout)
OS_ATSUGetUnjustifiedBounds_1=
OS_ATSUGetUnjustifiedBounds_2=
OS_ATSUGetUnjustifiedBounds_3=cast=ATSUTextMeasurement *
OS_ATSUGetUnjustifiedBounds_4=cast=ATSUTextMeasurement *
OS_ATSUGetUnjustifiedBounds_5=cast=ATSUTextMeasurement *
OS_ATSUGetUnjustifiedBounds_6=cast=ATSUTextMeasurement *

OS_ATSUHighlightText=
OS_ATSUHighlightText_0=cast=ATSUTextLayout
OS_ATSUHighlightText_1=cast=ATSUTextMeasurement
OS_ATSUHighlightText_2=cast=ATSUTextMeasurement
OS_ATSUHighlightText_3=
OS_ATSUHighlightText_4=

OS_ATSUNextCursorPosition=
OS_ATSUNextCursorPosition_0=cast=(ATSUTextLayout)
OS_ATSUNextCursorPosition_1=cast=(UniCharArrayOffset)
OS_ATSUNextCursorPosition_2=cast=(ATSUCursorMovementType)
OS_ATSUNextCursorPosition_3=cast=(UniCharArrayOffset *)

OS_ATSUOffsetToPosition=
OS_ATSUOffsetToPosition_0=cast=(ATSUTextLayout)
OS_ATSUOffsetToPosition_1=
OS_ATSUOffsetToPosition_2=
OS_ATSUOffsetToPosition_3=
OS_ATSUOffsetToPosition_4=
OS_ATSUOffsetToPosition_5=cast=Boolean *

OS_ATSUPositionToOffset=
OS_ATSUPositionToOffset_0=cast=(ATSUTextLayout)
OS_ATSUPositionToOffset_1=
OS_ATSUPositionToOffset_2=
OS_ATSUPositionToOffset_3=cast=UniCharArrayOffset *
OS_ATSUPositionToOffset_4=cast=Boolean *
OS_ATSUPositionToOffset_5=cast=UniCharArrayOffset *

OS_ATSUPreviousCursorPosition=
OS_ATSUPreviousCursorPosition_0=cast=(ATSUTextLayout)
OS_ATSUPreviousCursorPosition_1=cast=(UniCharArrayOffset)
OS_ATSUPreviousCursorPosition_2=cast=(ATSUCursorMovementType)
OS_ATSUPreviousCursorPosition_3=cast=(UniCharArrayOffset *)

OS_ATSUSetAttributes=
OS_ATSUSetAttributes_0=cast=(ATSUStyle)
OS_ATSUSetAttributes_1=cast=(ItemCount)
OS_ATSUSetAttributes_2=cast=(ATSUAttributeTag *)
OS_ATSUSetAttributes_3=cast=(ByteCount *)
OS_ATSUSetAttributes_4=cast=(ATSUAttributeValuePtr *)

OS_ATSUSetFontFeatures=
OS_ATSUSetFontFeatures_0=cast=(ATSUStyle)
OS_ATSUSetFontFeatures_1=cast=(ItemCount)
OS_ATSUSetFontFeatures_2=cast=(const ATSUFontFeatureType *)
OS_ATSUSetFontFeatures_3=cast=(const ATSUFontFeatureSelector *)

OS_ATSUSetHighlightingMethod=
OS_ATSUSetHighlightingMethod_0=cast=(ATSUTextLayout)
OS_ATSUSetHighlightingMethod_1=
OS_ATSUSetHighlightingMethod_2=

OS_ATSUSetLayoutControls=
OS_ATSUSetLayoutControls_0=cast=(ATSUTextLayout)
OS_ATSUSetLayoutControls_1=cast=(ItemCount)
OS_ATSUSetLayoutControls_2=cast=(ATSUAttributeTag *)
OS_ATSUSetLayoutControls_3=cast=(ByteCount *)
OS_ATSUSetLayoutControls_4=cast=(ATSUAttributeValuePtr *)

OS_ATSUSetLineControls=
OS_ATSUSetLineControls_0=cast=ATSUTextLayout
OS_ATSUSetLineControls_1=cast=UniCharArrayOffset
OS_ATSUSetLineControls_2=cast=ItemCount
OS_ATSUSetLineControls_3=cast=const ATSUAttributeTag *
OS_ATSUSetLineControls_4=cast=const ByteCount *
OS_ATSUSetLineControls_5=cast=const ATSUAttributeValuePtr *

OS_ATSUSetRunStyle=
OS_ATSUSetRunStyle_0=cast=(ATSUTextLayout)
OS_ATSUSetRunStyle_1=cast=(ATSUStyle)
OS_ATSUSetRunStyle_2=cast=(UniCharArrayOffset)
OS_ATSUSetRunStyle_3=cast=(UniCharCount)

OS_ATSUSetSoftLineBreak=
OS_ATSUSetSoftLineBreak_0=cast=(ATSUTextLayout)
OS_ATSUSetSoftLineBreak_1=

OS_ATSUSetTabArray=
OS_ATSUSetTabArray_0=cast=(ATSUTextLayout)
OS_ATSUSetTabArray_1=cast=const ATSUTab *
OS_ATSUSetTabArray_2=

OS_ATSUSetTextPointerLocation=
OS_ATSUSetTextPointerLocation_0=cast=(ATSUTextLayout)
OS_ATSUSetTextPointerLocation_1=cast=(ConstUniCharArrayPtr)
OS_ATSUSetTextPointerLocation_2=cast=(UniCharArrayOffset)
OS_ATSUSetTextPointerLocation_3=cast=(UniCharCount)
OS_ATSUSetTextPointerLocation_4=cast=(UniCharCount)

OS_ATSUSetTransientFontMatching=
OS_ATSUSetTransientFontMatching_0=cast=(ATSUTextLayout)
OS_ATSUSetTransientFontMatching_1=

OS_ATSUTextDeleted=
OS_ATSUTextDeleted_0=cast=(ATSUTextLayout)
OS_ATSUTextDeleted_1=
OS_ATSUTextDeleted_2=

OS_ATSUTextInserted=
OS_ATSUTextInserted_0=cast=(ATSUTextLayout)
OS_ATSUTextInserted_1=
OS_ATSUTextInserted_2=

OS_ActiveNonFloatingWindow=

OS_AddDataBrowserItems=
OS_AddDataBrowserItems_0=cast=(ControlRef)
OS_AddDataBrowserItems_1=cast=(DataBrowserItemID)
OS_AddDataBrowserItems_2=cast=(UInt32)
OS_AddDataBrowserItems_3=cast=(const DataBrowserItemID *)
OS_AddDataBrowserItems_4=cast=(DataBrowserPropertyID)

OS_AddDataBrowserListViewColumn=
OS_AddDataBrowserListViewColumn_0=cast=(ControlRef)
OS_AddDataBrowserListViewColumn_1=cast=(DataBrowserListViewColumnDesc *),flags=init
OS_AddDataBrowserListViewColumn_2=cast=(DataBrowserTableViewColumnIndex)

OS_AddDragItemFlavor=
OS_AddDragItemFlavor_0=cast=(DragRef)
OS_AddDragItemFlavor_1=cast=(DragItemRef)
OS_AddDragItemFlavor_2=cast=(FlavorType)
OS_AddDragItemFlavor_3=cast=(const void *)
OS_AddDragItemFlavor_4=cast=(Size)
OS_AddDragItemFlavor_5=cast=(FlavorFlags)

OS_AppendMenuItemTextWithCFString=
OS_AppendMenuItemTextWithCFString_0=cast=(MenuRef)
OS_AppendMenuItemTextWithCFString_1=cast=(CFStringRef)
OS_AppendMenuItemTextWithCFString_2=cast=(MenuItemAttributes)
OS_AppendMenuItemTextWithCFString_3=cast=(MenuCommand)
OS_AppendMenuItemTextWithCFString_4=cast=(MenuItemIndex *)

OS_AutoSizeDataBrowserListViewColumns=
OS_AutoSizeDataBrowserListViewColumns_0=cast=(ControlRef)

OS_BeginUpdate=
OS_BeginUpdate_0=cast=(WindowRef)

OS_BringToFront=
OS_BringToFront_0=cast=(WindowRef)

OS_CFArrayAppendValue=
OS_CFArrayAppendValue_0=cast=(CFMutableArrayRef)
OS_CFArrayAppendValue_1=cast=(const void *)

OS_CFArrayCreateMutable=
OS_CFArrayCreateMutable_0=cast=(CFAllocatorRef)
OS_CFArrayCreateMutable_1=cast=(CFIndex)
OS_CFArrayCreateMutable_2=cast=(const CFArrayCallBacks *)

OS_CFArrayGetCount=
OS_CFArrayGetCount_0=cast=(CFArrayRef)

OS_CFArrayGetValueAtIndex=
OS_CFArrayGetValueAtIndex_0=cast=(CFArrayRef)
OS_CFArrayGetValueAtIndex_1=

OS_CFRelease=
OS_CFRelease_0=cast=(CFTypeRef)

OS_CFStringCreateWithBytes=
OS_CFStringCreateWithBytes_0=cast=(CFAllocatorRef)
OS_CFStringCreateWithBytes_1=cast=(const UInt8 *)
OS_CFStringCreateWithBytes_2=cast=(CFIndex)
OS_CFStringCreateWithBytes_3=cast=(CFStringEncoding)
OS_CFStringCreateWithBytes_4=

OS_CFStringCreateWithCharacters=
OS_CFStringCreateWithCharacters_0=cast=(CFAllocatorRef)
OS_CFStringCreateWithCharacters_1=cast=(const UniChar *)
OS_CFStringCreateWithCharacters_2=cast=(CFIndex)

OS_CFStringGetBytes=
OS_CFStringGetBytes_0=cast=(CFStringRef)
OS_CFStringGetBytes_1=cast=(CFRange *),flags=struct
OS_CFStringGetBytes_2=cast=(CFStringEncoding)
OS_CFStringGetBytes_3=cast=(UInt8)
OS_CFStringGetBytes_4=cast=(Boolean)
OS_CFStringGetBytes_5=cast=(UInt8 *)
OS_CFStringGetBytes_6=cast=(CFIndex)
OS_CFStringGetBytes_7=cast=(CFIndex *)

OS_CFStringGetCharacters=
OS_CFStringGetCharacters_0=cast=(CFStringRef)
OS_CFStringGetCharacters_1=cast=(CFRange *),flags=struct
OS_CFStringGetCharacters_2=cast=(UniChar *)

OS_CFStringGetLength=
OS_CFStringGetLength_0=cast=(CFStringRef)

OS_CFStringGetSystemEncoding=

OS_CFURLCopyFileSystemPath=
OS_CFURLCopyFileSystemPath_0=cast=(CFURLRef)
OS_CFURLCopyFileSystemPath_1=cast=(CFURLPathStyle)

OS_CFURLCopyLastPathComponent=
OS_CFURLCopyLastPathComponent_0=cast=(CFURLRef)

OS_CFURLCreateCopyAppendingPathComponent=
OS_CFURLCreateCopyAppendingPathComponent_0=cast=(CFAllocatorRef)
OS_CFURLCreateCopyAppendingPathComponent_1=cast=(CFURLRef)
OS_CFURLCreateCopyAppendingPathComponent_2=cast=(CFStringRef)
OS_CFURLCreateCopyAppendingPathComponent_3=cast=(Boolean)

OS_CFURLCreateCopyDeletingLastPathComponent=
OS_CFURLCreateCopyDeletingLastPathComponent_0=cast=(CFAllocatorRef)
OS_CFURLCreateCopyDeletingLastPathComponent_1=cast=(CFURLRef)

OS_CFURLCreateFromFSRef=
OS_CFURLCreateFromFSRef_0=cast=(CFAllocatorRef)
OS_CFURLCreateFromFSRef_1=cast=(const struct FSRef *)

OS_CFURLCreateWithFileSystemPath=
OS_CFURLCreateWithFileSystemPath_0=cast=(CFAllocatorRef)
OS_CFURLCreateWithFileSystemPath_1=cast=(CFStringRef)
OS_CFURLCreateWithFileSystemPath_2=cast=(CFURLPathStyle)
OS_CFURLCreateWithFileSystemPath_3=

OS_CFURLGetFSRef=
OS_CFURLGetFSRef_0=cast=(CFURLRef)
OS_CFURLGetFSRef_1=cast=(struct FSRef *)

OS_CGBitmapContextCreate=
OS_CGBitmapContextCreate_0=cast=(void *)
OS_CGBitmapContextCreate_1=cast=(size_t)
OS_CGBitmapContextCreate_2=cast=(size_t)
OS_CGBitmapContextCreate_3=cast=(size_t)
OS_CGBitmapContextCreate_4=cast=(size_t)
OS_CGBitmapContextCreate_5=cast=(CGColorSpaceRef)
OS_CGBitmapContextCreate_6=cast=(CGImageAlphaInfo)

OS_CGColorSpaceCreateDeviceRGB=

OS_CGColorSpaceRelease=
OS_CGColorSpaceRelease_0=cast=(CGColorSpaceRef)

OS_CGContextAddArc=
OS_CGContextAddArc_0=cast=(CGContextRef)
OS_CGContextAddArc_1=cast=(float)
OS_CGContextAddArc_2=cast=(float)
OS_CGContextAddArc_3=cast=(float)
OS_CGContextAddArc_4=cast=(float)
OS_CGContextAddArc_5=cast=(float)
OS_CGContextAddArc_6=cast=(Boolean)

OS_CGContextAddArcToPoint=
OS_CGContextAddArcToPoint_0=cast=(CGContextRef)
OS_CGContextAddArcToPoint_1=
OS_CGContextAddArcToPoint_2=
OS_CGContextAddArcToPoint_3=
OS_CGContextAddArcToPoint_4=
OS_CGContextAddArcToPoint_5=

OS_CGContextAddLineToPoint=
OS_CGContextAddLineToPoint_0=cast=(CGContextRef)
OS_CGContextAddLineToPoint_1=
OS_CGContextAddLineToPoint_2=

OS_CGContextAddLines=
OS_CGContextAddLines_0=cast=(CGContextRef)
OS_CGContextAddLines_1=cast=(const CGPoint *)
OS_CGContextAddLines_2=cast=(size_t)

OS_CGContextBeginPath=
OS_CGContextBeginPath_0=cast=(CGContextRef)

OS_CGContextClearRect=
OS_CGContextClearRect_0=cast=(CGContextRef)
OS_CGContextClearRect_1=cast=(CGRect *),flags=struct

OS_CGContextClip=
OS_CGContextClip_0=cast=(CGContextRef)

OS_CGContextClosePath=
OS_CGContextClosePath_0=cast=(CGContextRef)

OS_CGContextDrawImage=
OS_CGContextDrawImage_0=cast=(CGContextRef)
OS_CGContextDrawImage_1=cast=(CGRect *),flags=struct
OS_CGContextDrawImage_2=cast=(CGImageRef)

OS_CGContextEOFillPath=
OS_CGContextEOFillPath_0=cast=(CGContextRef)

OS_CGContextFillPath=
OS_CGContextFillPath_0=cast=(CGContextRef)

OS_CGContextFillRect=
OS_CGContextFillRect_0=cast=(CGContextRef)
OS_CGContextFillRect_1=cast=(CGRect *),flags=struct

OS_CGContextFlush=
OS_CGContextFlush_0=cast=(CGContextRef)

OS_CGContextGetTextPosition=flags=no_gen
OS_CGContextGetTextPosition_0=cast=(CGContextRef)
OS_CGContextGetTextPosition_1=cast=(CGPoint)

OS_CGContextMoveToPoint=
OS_CGContextMoveToPoint_0=cast=(CGContextRef)
OS_CGContextMoveToPoint_1=cast=(float)
OS_CGContextMoveToPoint_2=cast=(float)

OS_CGContextRelease=
OS_CGContextRelease_0=cast=(CGContextRef)

OS_CGContextRestoreGState=
OS_CGContextRestoreGState_0=cast=(CGContextRef)

OS_CGContextSaveGState=
OS_CGContextSaveGState_0=cast=(CGContextRef)

OS_CGContextScaleCTM=
OS_CGContextScaleCTM_0=cast=(CGContextRef)
OS_CGContextScaleCTM_1=cast=(float)
OS_CGContextScaleCTM_2=cast=(float)

OS_CGContextSelectFont=
OS_CGContextSelectFont_0=cast=(CGContextRef)
OS_CGContextSelectFont_1=cast=(const char *)
OS_CGContextSelectFont_2=cast=(float)
OS_CGContextSelectFont_3=cast=(CGTextEncoding)

OS_CGContextSetFillColor=
OS_CGContextSetFillColor_0=cast=(CGContextRef)
OS_CGContextSetFillColor_1=cast=(const float *)

OS_CGContextSetFillColorSpace=
OS_CGContextSetFillColorSpace_0=cast=(CGContextRef)
OS_CGContextSetFillColorSpace_1=cast=(CGColorSpaceRef)

OS_CGContextSetFont=
OS_CGContextSetFont_0=cast=(CGContextRef)
OS_CGContextSetFont_1=cast=(CGFontRef)

OS_CGContextSetFontSize=
OS_CGContextSetFontSize_0=cast=(CGContextRef)
OS_CGContextSetFontSize_1=cast=(float)

OS_CGContextSetLineCap=
OS_CGContextSetLineCap_0=cast=(CGContextRef)
OS_CGContextSetLineCap_1=

OS_CGContextSetLineDash=
OS_CGContextSetLineDash_0=cast=(CGContextRef)
OS_CGContextSetLineDash_1=cast=(float)
OS_CGContextSetLineDash_2=cast=(const float *)
OS_CGContextSetLineDash_3=cast=(size_t)

OS_CGContextSetLineWidth=
OS_CGContextSetLineWidth_0=cast=(CGContextRef)
OS_CGContextSetLineWidth_1=cast=(float)

OS_CGContextSetRGBFillColor=
OS_CGContextSetRGBFillColor_0=cast=(CGContextRef)
OS_CGContextSetRGBFillColor_1=cast=(float)
OS_CGContextSetRGBFillColor_2=cast=(float)
OS_CGContextSetRGBFillColor_3=cast=(float)
OS_CGContextSetRGBFillColor_4=cast=(float)

OS_CGContextSetRGBStrokeColor=
OS_CGContextSetRGBStrokeColor_0=cast=(CGContextRef)
OS_CGContextSetRGBStrokeColor_1=cast=(float)
OS_CGContextSetRGBStrokeColor_2=cast=(float)
OS_CGContextSetRGBStrokeColor_3=cast=(float)
OS_CGContextSetRGBStrokeColor_4=cast=(float)

OS_CGContextSetShouldAntialias=
OS_CGContextSetShouldAntialias_0=cast=(CGContextRef)
OS_CGContextSetShouldAntialias_1=

OS_CGContextSetShouldSmoothFonts=
OS_CGContextSetShouldSmoothFonts_0=cast=(CGContextRef)
OS_CGContextSetShouldSmoothFonts_1=

OS_CGContextSetStrokeColor=
OS_CGContextSetStrokeColor_0=cast=(CGContextRef)
OS_CGContextSetStrokeColor_1=cast=(const float *)

OS_CGContextSetStrokeColorSpace=
OS_CGContextSetStrokeColorSpace_0=cast=(CGContextRef)
OS_CGContextSetStrokeColorSpace_1=cast=(CGColorSpaceRef)

OS_CGContextSetTextDrawingMode=
OS_CGContextSetTextDrawingMode_0=cast=(CGContextRef)
OS_CGContextSetTextDrawingMode_1=cast=(CGTextDrawingMode)

OS_CGContextSetTextMatrix=
OS_CGContextSetTextMatrix_0=cast=(CGContextRef)
OS_CGContextSetTextMatrix_1=cast=(CGAffineTransform *),flags=struct

OS_CGContextSetTextPosition=
OS_CGContextSetTextPosition_0=cast=(CGContextRef)
OS_CGContextSetTextPosition_1=cast=(float)
OS_CGContextSetTextPosition_2=cast=(float)

OS_CGContextShowText=
OS_CGContextShowText_0=cast=(CGContextRef)
OS_CGContextShowText_1=cast=(const char *)
OS_CGContextShowText_2=cast=(size_t)

OS_CGContextShowTextAtPoint=
OS_CGContextShowTextAtPoint_0=cast=(CGContextRef)
OS_CGContextShowTextAtPoint_1=cast=(float)
OS_CGContextShowTextAtPoint_2=cast=(float)
OS_CGContextShowTextAtPoint_3=cast=(const char *)
OS_CGContextShowTextAtPoint_4=cast=(size_t)

OS_CGContextStrokePath=
OS_CGContextStrokePath_0=cast=(CGContextRef)

OS_CGContextStrokeRect=
OS_CGContextStrokeRect_0=cast=(CGContextRef)
OS_CGContextStrokeRect_1=cast=(CGRect *),flags=struct

OS_CGContextSynchronize=
OS_CGContextSynchronize_0=cast=(CGContextRef)

OS_CGContextTranslateCTM=
OS_CGContextTranslateCTM_0=cast=(CGContextRef)
OS_CGContextTranslateCTM_1=cast=(float)
OS_CGContextTranslateCTM_2=cast=(float)

OS_CGDataProviderCreateWithData=
OS_CGDataProviderCreateWithData_0=cast=(void *)
OS_CGDataProviderCreateWithData_1=cast=(const void *)
OS_CGDataProviderCreateWithData_2=cast=(size_t)
OS_CGDataProviderCreateWithData_3=cast=(void *)

OS_CGDataProviderRelease=
OS_CGDataProviderRelease_0=cast=(CGDataProviderRef)

OS_CGDisplayBaseAddress=
OS_CGDisplayBaseAddress_0=cast=(CGDirectDisplayID)

OS_CGDisplayBitsPerPixel=
OS_CGDisplayBitsPerPixel_0=cast=(CGDirectDisplayID)

OS_CGDisplayBitsPerSample=
OS_CGDisplayBitsPerSample_0=cast=(CGDirectDisplayID)

OS_CGDisplayBytesPerRow=
OS_CGDisplayBytesPerRow_0=cast=(CGDirectDisplayID)

OS_CGDisplayPixelsHigh=
OS_CGDisplayPixelsHigh_0=cast=(CGDirectDisplayID)

OS_CGDisplayPixelsWide=
OS_CGDisplayPixelsWide_0=cast=(CGDirectDisplayID)

OS_CGFontCreateWithPlatformFont=
OS_CGFontCreateWithPlatformFont_0=

OS_CGFontRelease=
OS_CGFontRelease_0=cast=(CGFontRef)

OS_CGGetDisplaysWithRect=
OS_CGGetDisplaysWithRect_0=flags=struct
OS_CGGetDisplaysWithRect_1=cast=CGDisplayCount
OS_CGGetDisplaysWithRect_2=cast=(CGDirectDisplayID *)
OS_CGGetDisplaysWithRect_3=cast=CGDisplayCount *

OS_CGImageCreate=
OS_CGImageCreate_0=cast=(size_t)
OS_CGImageCreate_1=cast=(size_t)
OS_CGImageCreate_2=cast=(size_t)
OS_CGImageCreate_3=cast=(size_t)
OS_CGImageCreate_4=cast=(size_t)
OS_CGImageCreate_5=cast=(CGColorSpaceRef)
OS_CGImageCreate_6=cast=(CGImageAlphaInfo)
OS_CGImageCreate_7=cast=(CGDataProviderRef)
OS_CGImageCreate_8=cast=(const float *)
OS_CGImageCreate_9=cast=(Boolean)
OS_CGImageCreate_10=cast=(CGColorRenderingIntent)

OS_CGImageGetAlphaInfo=
OS_CGImageGetAlphaInfo_0=cast=(CGImageRef)

OS_CGImageGetBitsPerComponent=
OS_CGImageGetBitsPerComponent_0=cast=(CGImageRef)

OS_CGImageGetBitsPerPixel=
OS_CGImageGetBitsPerPixel_0=cast=(CGImageRef)

OS_CGImageGetBytesPerRow=
OS_CGImageGetBytesPerRow_0=cast=(CGImageRef)

OS_CGImageGetColorSpace=
OS_CGImageGetColorSpace_0=cast=(CGImageRef)

OS_CGImageGetHeight=
OS_CGImageGetHeight_0=cast=(CGImageRef)

OS_CGImageGetWidth=
OS_CGImageGetWidth_0=cast=(CGImageRef)

OS_CGImageRelease=
OS_CGImageRelease_0=cast=(CGImageRef)

OS_CGPostKeyboardEvent=
OS_CGPostKeyboardEvent_0=cast=(CGCharCode)
OS_CGPostKeyboardEvent_1=cast=CGKeyCode
OS_CGPostKeyboardEvent_2=cast=boolean_t

OS_CGPostMouseEvent=
OS_CGPostMouseEvent_0=flags=struct
OS_CGPostMouseEvent_1=cast=boolean_t
OS_CGPostMouseEvent_2=
OS_CGPostMouseEvent_3=cast=boolean_t
OS_CGPostMouseEvent_4=cast=boolean_t
OS_CGPostMouseEvent_5=cast=boolean_t

OS_CGWarpMouseCursorPosition=
OS_CGWarpMouseCursorPosition_0=flags=struct

OS_CallNextEventHandler=
OS_CallNextEventHandler_0=cast=(EventHandlerCallRef)
OS_CallNextEventHandler_1=cast=(EventRef)

OS_CharWidth=
OS_CharWidth_0=cast=(CharParameter)

OS_ClearCurrentScrap=

OS_ClearKeyboardFocus=
OS_ClearKeyboardFocus_0=cast=(WindowRef)

OS_ClearMenuBar=

OS_ClipCGContextToRegion=
OS_ClipCGContextToRegion_0=cast=(CGContextRef)
OS_ClipCGContextToRegion_1=cast=(const Rect *)
OS_ClipCGContextToRegion_2=cast=(RgnHandle)

OS_CloseDataBrowserContainer=
OS_CloseDataBrowserContainer_0=cast=(ControlRef)
OS_CloseDataBrowserContainer_1=cast=(DataBrowserItemID)

OS_ClosePoly=

OS_CloseRgn=
OS_CloseRgn_0=cast=(RgnHandle)

OS_CollapseWindow=
OS_CollapseWindow_0=cast=(WindowRef)
OS_CollapseWindow_1=cast=(Boolean)

OS_ConvertEventRefToEventRecord=
OS_ConvertEventRefToEventRecord_0=cast=(EventRef)
OS_ConvertEventRefToEventRecord_1=cast=(EventRecord *)

OS_ConvertFromPStringToUnicode=
OS_ConvertFromPStringToUnicode_0=cast=TextToUnicodeInfo
OS_ConvertFromPStringToUnicode_1=cast=ConstStr255Param
OS_ConvertFromPStringToUnicode_2=
OS_ConvertFromPStringToUnicode_3=
OS_ConvertFromPStringToUnicode_4=

OS_ConvertFromUnicodeToPString=
OS_ConvertFromUnicodeToPString_0=cast=UnicodeToTextInfo
OS_ConvertFromUnicodeToPString_1=
OS_ConvertFromUnicodeToPString_2=cast=ConstUniCharArrayPtr
OS_ConvertFromUnicodeToPString_3=

OS_CopyBits=
OS_CopyBits_0=cast=(const BitMap *)
OS_CopyBits_1=cast=(const BitMap *)
OS_CopyBits_2=cast=(const Rect *)
OS_CopyBits_3=cast=(const Rect *)
OS_CopyBits_4=cast=(short)
OS_CopyBits_5=cast=(RgnHandle)

OS_CopyControlTitleAsCFString=
OS_CopyControlTitleAsCFString_0=cast=(ControlRef)
OS_CopyControlTitleAsCFString_1=cast=(CFStringRef *)

OS_CopyDeepMask=
OS_CopyDeepMask_0=cast=(const BitMap *)
OS_CopyDeepMask_1=cast=(const BitMap *)
OS_CopyDeepMask_2=cast=(const BitMap *)
OS_CopyDeepMask_3=cast=(const Rect *)
OS_CopyDeepMask_4=cast=(const Rect *)
OS_CopyDeepMask_5=cast=(const Rect *)
OS_CopyDeepMask_6=cast=(short)
OS_CopyDeepMask_7=cast=(RgnHandle)

OS_CopyMenuItemTextAsCFString=
OS_CopyMenuItemTextAsCFString_0=cast=(MenuRef)
OS_CopyMenuItemTextAsCFString_1=cast=(MenuItemIndex)
OS_CopyMenuItemTextAsCFString_2=cast=(CFStringRef *)

OS_CopyRgn=
OS_CopyRgn_0=cast=(RgnHandle)
OS_CopyRgn_1=cast=(RgnHandle)

OS_CountDragItemFlavors=
OS_CountDragItemFlavors_0=cast=(DragRef)
OS_CountDragItemFlavors_1=cast=(DragItemRef)
OS_CountDragItemFlavors_2=cast=(UInt16 *)

OS_CountDragItems=
OS_CountDragItems_0=cast=(DragRef)
OS_CountDragItems_1=cast=(UInt16 *)

OS_CountMenuItems=
OS_CountMenuItems_0=cast=(MenuRef)

OS_CountSubControls=
OS_CountSubControls_0=cast=(ControlRef)
OS_CountSubControls_1=cast=(UInt16 *)

OS_CreateBevelButtonControl=
OS_CreateBevelButtonControl_0=cast=(WindowRef)
OS_CreateBevelButtonControl_1=cast=(const Rect *)
OS_CreateBevelButtonControl_2=cast=(CFStringRef)
OS_CreateBevelButtonControl_3=cast=(ControlBevelThickness)
OS_CreateBevelButtonControl_4=cast=(ControlBevelButtonBehavior)
OS_CreateBevelButtonControl_5=cast=(ControlButtonContentInfoPtr)
OS_CreateBevelButtonControl_6=cast=(SInt16)
OS_CreateBevelButtonControl_7=cast=(ControlBevelButtonMenuBehavior)
OS_CreateBevelButtonControl_8=cast=(ControlBevelButtonMenuPlacement)
OS_CreateBevelButtonControl_9=cast=(ControlRef *)

OS_CreateCGContextForPort=
OS_CreateCGContextForPort_0=cast=(CGrafPtr)
OS_CreateCGContextForPort_1=cast=(CGContextRef *)

OS_CreateCheckBoxControl=
OS_CreateCheckBoxControl_0=cast=(WindowRef)
OS_CreateCheckBoxControl_1=cast=(const Rect *)
OS_CreateCheckBoxControl_2=cast=(CFStringRef)
OS_CreateCheckBoxControl_3=cast=(SInt32)
OS_CreateCheckBoxControl_4=cast=(Boolean)
OS_CreateCheckBoxControl_5=cast=(ControlRef *)

OS_CreateDataBrowserControl=
OS_CreateDataBrowserControl_0=cast=(WindowRef)
OS_CreateDataBrowserControl_1=cast=(const Rect *)
OS_CreateDataBrowserControl_2=cast=(DataBrowserViewStyle)
OS_CreateDataBrowserControl_3=cast=(ControlRef *)

OS_CreateEditUnicodeTextControl=
OS_CreateEditUnicodeTextControl_0=cast=(WindowRef)
OS_CreateEditUnicodeTextControl_1=
OS_CreateEditUnicodeTextControl_2=cast=(CFStringRef)
OS_CreateEditUnicodeTextControl_3=
OS_CreateEditUnicodeTextControl_4=
OS_CreateEditUnicodeTextControl_5=cast=(ControlRef *)

OS_CreateEvent=
OS_CreateEvent_0=cast=(CFAllocatorRef)
OS_CreateEvent_1=cast=(UInt32)
OS_CreateEvent_2=cast=(UInt32)
OS_CreateEvent_3=cast=(EventTime)
OS_CreateEvent_4=cast=(EventAttributes)
OS_CreateEvent_5=cast=(EventRef *)

OS_CreateGroupBoxControl=
OS_CreateGroupBoxControl_0=cast=(WindowRef)
OS_CreateGroupBoxControl_1=cast=(const Rect *)
OS_CreateGroupBoxControl_2=cast=(CFStringRef)
OS_CreateGroupBoxControl_3=cast=(Boolean)
OS_CreateGroupBoxControl_4=cast=(ControlRef *)

OS_CreateIconControl=
OS_CreateIconControl_0=cast=(WindowRef)
OS_CreateIconControl_1=
OS_CreateIconControl_2=
OS_CreateIconControl_3=
OS_CreateIconControl_4=cast=(ControlRef *)

OS_CreateNewMenu=
OS_CreateNewMenu_0=cast=(MenuID)
OS_CreateNewMenu_1=cast=(MenuAttributes)
OS_CreateNewMenu_2=cast=(MenuRef *)

OS_CreateNewWindow=
OS_CreateNewWindow_0=cast=(WindowClass)
OS_CreateNewWindow_1=cast=(WindowAttributes)
OS_CreateNewWindow_2=cast=(const Rect *)
OS_CreateNewWindow_3=cast=(WindowRef *)

OS_CreatePopupArrowControl=
OS_CreatePopupArrowControl_0=cast=(WindowRef)
OS_CreatePopupArrowControl_1=cast=(const Rect *)
OS_CreatePopupArrowControl_2=cast=(ControlPopupArrowOrientation)
OS_CreatePopupArrowControl_3=cast=(ControlPopupArrowSize)
OS_CreatePopupArrowControl_4=cast=(ControlRef *)

OS_CreatePopupButtonControl=
OS_CreatePopupButtonControl_0=cast=(WindowRef)
OS_CreatePopupButtonControl_1=
OS_CreatePopupButtonControl_2=cast=(CFStringRef)
OS_CreatePopupButtonControl_3=
OS_CreatePopupButtonControl_4=
OS_CreatePopupButtonControl_5=
OS_CreatePopupButtonControl_6=
OS_CreatePopupButtonControl_7=
OS_CreatePopupButtonControl_8=cast=(ControlRef *)

OS_CreateProgressBarControl=
OS_CreateProgressBarControl_0=cast=(WindowRef)
OS_CreateProgressBarControl_1=
OS_CreateProgressBarControl_2=
OS_CreateProgressBarControl_3=
OS_CreateProgressBarControl_4=
OS_CreateProgressBarControl_5=
OS_CreateProgressBarControl_6=cast=(ControlRef *)

OS_CreatePushButtonControl=
OS_CreatePushButtonControl_0=cast=(WindowRef)
OS_CreatePushButtonControl_1=cast=(const Rect *)
OS_CreatePushButtonControl_2=cast=(CFStringRef)
OS_CreatePushButtonControl_3=cast=(ControlRef *)

OS_CreatePushButtonWithIconControl=
OS_CreatePushButtonWithIconControl_0=cast=(WindowRef)
OS_CreatePushButtonWithIconControl_1=
OS_CreatePushButtonWithIconControl_2=cast=(CFStringRef)
OS_CreatePushButtonWithIconControl_3=cast=(ControlButtonContentInfo *)
OS_CreatePushButtonWithIconControl_4=cast=(ControlPushButtonIconAlignment)
OS_CreatePushButtonWithIconControl_5=cast=(ControlRef *)

OS_CreateRadioButtonControl=
OS_CreateRadioButtonControl_0=cast=(WindowRef)
OS_CreateRadioButtonControl_1=cast=(const Rect *)
OS_CreateRadioButtonControl_2=cast=(CFStringRef)
OS_CreateRadioButtonControl_3=cast=(SInt32)
OS_CreateRadioButtonControl_4=cast=(Boolean)
OS_CreateRadioButtonControl_5=cast=(ControlRef *)

OS_CreateRootControl=
OS_CreateRootControl_0=cast=(WindowRef)
OS_CreateRootControl_1=cast=(ControlRef *)

OS_CreateScrollBarControl=
OS_CreateScrollBarControl_0=cast=(WindowRef)
OS_CreateScrollBarControl_1=
OS_CreateScrollBarControl_2=
OS_CreateScrollBarControl_3=
OS_CreateScrollBarControl_4=
OS_CreateScrollBarControl_5=
OS_CreateScrollBarControl_6=
OS_CreateScrollBarControl_7=cast=(ControlActionUPP)
OS_CreateScrollBarControl_8=cast=(ControlRef *)

OS_CreateSeparatorControl=
OS_CreateSeparatorControl_0=cast=(WindowRef)
OS_CreateSeparatorControl_1=
OS_CreateSeparatorControl_2=cast=(ControlRef *)

OS_CreateSliderControl=
OS_CreateSliderControl_0=cast=(WindowRef)
OS_CreateSliderControl_1=cast=(const Rect *)
OS_CreateSliderControl_2=cast=(SInt32)
OS_CreateSliderControl_3=cast=(SInt32)
OS_CreateSliderControl_4=cast=(SInt32)
OS_CreateSliderControl_5=cast=(ControlSliderOrientation)
OS_CreateSliderControl_6=cast=(UInt16)
OS_CreateSliderControl_7=cast=(Boolean)
OS_CreateSliderControl_8=cast=(ControlActionUPP)
OS_CreateSliderControl_9=cast=(ControlRef *)

OS_CreateStandardAlert=
OS_CreateStandardAlert_0=cast=(AlertType)
OS_CreateStandardAlert_1=cast=(CFStringRef)
OS_CreateStandardAlert_2=cast=(CFStringRef)
OS_CreateStandardAlert_3=cast=(const AlertStdCFStringAlertParamRec *)
OS_CreateStandardAlert_4=cast=(DialogRef *)

OS_CreateStaticTextControl=
OS_CreateStaticTextControl_0=cast=(WindowRef)
OS_CreateStaticTextControl_1=
OS_CreateStaticTextControl_2=cast=(CFStringRef)
OS_CreateStaticTextControl_3=cast=(const ControlFontStyleRec *)
OS_CreateStaticTextControl_4=cast=(ControlRef *)

OS_CreateTabsControl=
OS_CreateTabsControl_0=cast=(WindowRef)
OS_CreateTabsControl_1=cast=(const Rect *)
OS_CreateTabsControl_2=cast=(ControlTabSize)
OS_CreateTabsControl_3=cast=(ControlTabDirection)
OS_CreateTabsControl_4=cast=(UInt16)
OS_CreateTabsControl_5=cast=(const ControlTabEntry *)
OS_CreateTabsControl_6=cast=(ControlRef *)

OS_CreateTextToUnicodeInfoByEncoding=
OS_CreateTextToUnicodeInfoByEncoding_0=cast=(TextEncoding)
OS_CreateTextToUnicodeInfoByEncoding_1=cast=(TextToUnicodeInfo *)

OS_CreateUnicodeToTextInfoByEncoding=
OS_CreateUnicodeToTextInfoByEncoding_0=cast=(TextEncoding)
OS_CreateUnicodeToTextInfoByEncoding_1=cast=(UnicodeToTextInfo *)

OS_CreateUserPaneControl=
OS_CreateUserPaneControl_0=cast=(WindowRef)
OS_CreateUserPaneControl_1=
OS_CreateUserPaneControl_2=
OS_CreateUserPaneControl_3=cast=(ControlRef *)

OS_CreateWindowGroup=
OS_CreateWindowGroup_0=cast=(WindowGroupAttributes)
OS_CreateWindowGroup_1=cast=(WindowGroupRef *)

OS_DMGetFirstScreenDevice=
OS_DMGetFirstScreenDevice_0=cast=(Boolean)

OS_DMGetNextScreenDevice=
OS_DMGetNextScreenDevice_0=cast=(GDHandle)
OS_DMGetNextScreenDevice_1=cast=(Boolean)

OS_DeleteMenu=
OS_DeleteMenu_0=cast=(MenuID)

OS_DeleteMenuItem=
OS_DeleteMenuItem_0=cast=(MenuRef)
OS_DeleteMenuItem_1=cast=(short)

OS_DeleteMenuItems=
OS_DeleteMenuItems_0=cast=(MenuRef)
OS_DeleteMenuItems_1=cast=(MenuItemIndex)
OS_DeleteMenuItems_2=cast=(ItemCount)

OS_DiffRgn=
OS_DiffRgn_0=cast=(RgnHandle)
OS_DiffRgn_1=cast=(RgnHandle)
OS_DiffRgn_2=cast=(RgnHandle)

OS_DisableControl=
OS_DisableControl_0=cast=(ControlRef)

OS_DisableMenuCommand=
OS_DisableMenuCommand_0=cast=(MenuRef)
OS_DisableMenuCommand_1=cast=(MenuCommand)

OS_DisableMenuItem=
OS_DisableMenuItem_0=cast=(MenuRef)
OS_DisableMenuItem_1=cast=(MenuItemIndex)

OS_DisposeControl=
OS_DisposeControl_0=cast=(ControlRef)

OS_DisposeDrag=
OS_DisposeDrag_0=cast=(DragRef)

OS_DisposeGWorld=
OS_DisposeGWorld_0=cast=(GWorldPtr)

OS_DisposeHandle=
OS_DisposeHandle_0=cast=(Handle)

OS_DisposeMenu=
OS_DisposeMenu_0=cast=(MenuRef)

OS_DisposePtr=
OS_DisposePtr_0=cast=(Ptr)

OS_DisposeRgn=
OS_DisposeRgn_0=cast=(RgnHandle)

OS_DisposeTextToUnicodeInfo=
OS_DisposeTextToUnicodeInfo_0=cast=TextToUnicodeInfo *

OS_DisposeUnicodeToTextInfo=
OS_DisposeUnicodeToTextInfo_0=cast=UnicodeToTextInfo *

OS_DisposeWindow=
OS_DisposeWindow_0=cast=(WindowRef)

OS_DrawControlInCurrentPort=
OS_DrawControlInCurrentPort_0=cast=(ControlRef)

OS_DrawMenuBar=

OS_DrawText=
OS_DrawText_0=cast=(const void *)
OS_DrawText_1=cast=(short)
OS_DrawText_2=cast=(short)

OS_DrawThemeButton=
OS_DrawThemeButton_0=cast=(Rect *)
OS_DrawThemeButton_1=cast=(ThemeButtonKind)
OS_DrawThemeButton_2=cast=(const ThemeButtonDrawInfo *)
OS_DrawThemeButton_3=cast=(const ThemeButtonDrawInfo *)
OS_DrawThemeButton_4=cast=(ThemeEraseUPP)
OS_DrawThemeButton_5=cast=(ThemeButtonDrawUPP)
OS_DrawThemeButton_6=cast=(UInt32)

OS_DrawThemeEditTextFrame=
OS_DrawThemeEditTextFrame_0=cast=(const Rect *)
OS_DrawThemeEditTextFrame_1=cast=(ThemeDrawState)

OS_DrawThemeFocusRect=
OS_DrawThemeFocusRect_0=cast=(const Rect *)
OS_DrawThemeFocusRect_1=cast=(Boolean)

OS_DrawThemePopupArrow=
OS_DrawThemePopupArrow_0=
OS_DrawThemePopupArrow_1=cast=ThemeArrowOrientation
OS_DrawThemePopupArrow_2=cast=(ThemePopupArrowSize)
OS_DrawThemePopupArrow_3=cast=(ThemeDrawState)
OS_DrawThemePopupArrow_4=cast=(ThemeEraseUPP)
OS_DrawThemePopupArrow_5=cast=(UInt32)

OS_DrawThemeSeparator=
OS_DrawThemeSeparator_0=cast=(const Rect *)
OS_DrawThemeSeparator_1=cast=(ThemeDrawState)

OS_DrawThemeTextBox=
OS_DrawThemeTextBox_0=cast=(CFStringRef)
OS_DrawThemeTextBox_1=cast=(ThemeFontID)
OS_DrawThemeTextBox_2=cast=(ThemeDrawState)
OS_DrawThemeTextBox_3=cast=(Boolean)
OS_DrawThemeTextBox_4=cast=(const Rect *)
OS_DrawThemeTextBox_5=cast=(SInt16)
OS_DrawThemeTextBox_6=cast=(void *)

OS_EmbedControl=
OS_EmbedControl_0=cast=(ControlRef)
OS_EmbedControl_1=cast=(ControlRef)

OS_EmptyRect=
OS_EmptyRect_0=cast=(const Rect *)

OS_EmptyRgn=
OS_EmptyRgn_0=cast=(RgnHandle)

OS_EnableControl=
OS_EnableControl_0=cast=(ControlRef)

OS_EnableMenuCommand=
OS_EnableMenuCommand_0=cast=(MenuRef)
OS_EnableMenuCommand_1=cast=(MenuCommand)

OS_EnableMenuItem=
OS_EnableMenuItem_0=cast=(MenuRef)
OS_EnableMenuItem_1=cast=(MenuItemIndex)

OS_EndUpdate=
OS_EndUpdate_0=cast=(WindowRef)

OS_EqualRect=
OS_EqualRect_0=
OS_EqualRect_1=

OS_EraseRect=
OS_EraseRect_0=cast=(const Rect *)

OS_EraseRgn=
OS_EraseRgn_0=cast=(RgnHandle)

OS_FMCreateFontFamilyInstanceIterator=
OS_FMCreateFontFamilyInstanceIterator_0=cast=(FMFontFamily)
OS_FMCreateFontFamilyInstanceIterator_1=cast=(FMFontFamilyInstanceIterator *)

OS_FMCreateFontFamilyIterator=
OS_FMCreateFontFamilyIterator_0=cast=(const FMFilter *)
OS_FMCreateFontFamilyIterator_1=cast=(void *)
OS_FMCreateFontFamilyIterator_2=cast=(OptionBits)
OS_FMCreateFontFamilyIterator_3=cast=(FMFontFamilyIterator *)

OS_FMDisposeFontFamilyInstanceIterator=
OS_FMDisposeFontFamilyInstanceIterator_0=cast=(FMFontFamilyInstanceIterator *)

OS_FMDisposeFontFamilyIterator=
OS_FMDisposeFontFamilyIterator_0=cast=(FMFontFamilyIterator *)

OS_FMGetATSFontRefFromFont=
OS_FMGetATSFontRefFromFont_0=

OS_FMGetFontFamilyFromName=
OS_FMGetFontFamilyFromName_0=cast=(ConstStr255Param)

OS_FMGetFontFamilyInstanceFromFont=
OS_FMGetFontFamilyInstanceFromFont_0=cast=FMFont
OS_FMGetFontFamilyInstanceFromFont_1=cast=FMFontFamily *
OS_FMGetFontFamilyInstanceFromFont_2=cast=FMFontStyle *

OS_FMGetFontFamilyName=
OS_FMGetFontFamilyName_0=
OS_FMGetFontFamilyName_1=

OS_FMGetFontFromFontFamilyInstance=
OS_FMGetFontFromFontFamilyInstance_0=cast=(FMFontFamily)
OS_FMGetFontFromFontFamilyInstance_1=cast=(FMFontStyle)
OS_FMGetFontFromFontFamilyInstance_2=cast=(FMFont *)
OS_FMGetFontFromFontFamilyInstance_3=cast=(FMFontStyle *)

OS_FMGetNextFontFamily=
OS_FMGetNextFontFamily_0=cast=(FMFontFamilyIterator *)
OS_FMGetNextFontFamily_1=cast=(FMFontFamily *)

OS_FMGetNextFontFamilyInstance=
OS_FMGetNextFontFamilyInstance_0=cast=(FMFontFamilyInstanceIterator *)
OS_FMGetNextFontFamilyInstance_1=cast=(FMFont *)
OS_FMGetNextFontFamilyInstance_2=cast=(FMFontStyle *)
OS_FMGetNextFontFamilyInstance_3=cast=(FMFontSize *)

OS_FPIsFontPanelVisible=

OS_FPShowHideFontPanel=

OS_FSGetCatalogInfo=
OS_FSGetCatalogInfo_0=cast=(FSRef *)
OS_FSGetCatalogInfo_1=cast=(FSCatalogInfoBitmap)
OS_FSGetCatalogInfo_2=cast=(FSCatalogInfo *)
OS_FSGetCatalogInfo_3=cast=(HFSUniStr255 *)
OS_FSGetCatalogInfo_4=cast=(FSSpec *)
OS_FSGetCatalogInfo_5=cast=(FSRef *)

OS_FSpGetFInfo=
OS_FSpGetFInfo_0=cast=(FSSpec *)
OS_FSpGetFInfo_1=cast=(FInfo *)

OS_FSpMakeFSRef=
OS_FSpMakeFSRef_0=cast=(const FSSpec *)
OS_FSpMakeFSRef_1=cast=(FSRef *)

OS_FetchFontInfo=
OS_FetchFontInfo_0=
OS_FetchFontInfo_1=
OS_FetchFontInfo_2=
OS_FetchFontInfo_3=

OS_FindWindow=
OS_FindWindow_0=cast=(Point *),flags=struct
OS_FindWindow_1=cast=(WindowRef *)

OS_Fix2Long=
OS_Fix2Long_0=

OS_FrameOval=
OS_FrameOval_0=cast=(const Rect *)

OS_FramePoly=
OS_FramePoly_0=cast=(PolyHandle)

OS_FrameRect=
OS_FrameRect_0=cast=(const Rect *)

OS_FrameRoundRect=
OS_FrameRoundRect_0=cast=(const Rect *)
OS_FrameRoundRect_1=cast=(short)
OS_FrameRoundRect_2=cast=(short)

OS_FrontWindow=

OS_Gestalt=
OS_Gestalt_0=cast=OSType
OS_Gestalt_1=cast=long *

OS_GetAppFont=

OS_GetApplicationEventTarget=

OS_GetAvailableWindowAttributes=
OS_GetAvailableWindowAttributes_0=cast=(WindowClass)

OS_GetAvailableWindowPositioningBounds=
OS_GetAvailableWindowPositioningBounds_0=cast=(GDHandle)
OS_GetAvailableWindowPositioningBounds_1=cast=(Rect *)

OS_GetBestControlRect=
OS_GetBestControlRect_0=cast=(ControlRef)
OS_GetBestControlRect_1=cast=(Rect *)
OS_GetBestControlRect_2=cast=(SInt16 *)

OS_GetCaretTime=

OS_GetClip=
OS_GetClip_0=cast=(RgnHandle)

OS_GetControl32BitMaximum=
OS_GetControl32BitMaximum_0=cast=(ControlRef)

OS_GetControl32BitMinimum=
OS_GetControl32BitMinimum_0=cast=(ControlRef)

OS_GetControl32BitValue=
OS_GetControl32BitValue_0=cast=(ControlRef)

OS_GetControlBounds=
OS_GetControlBounds_0=cast=(ControlRef)
OS_GetControlBounds_1=cast=(Rect *)

OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I=
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_0=cast=(ControlRef)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_1=cast=(ControlPartCode)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_2=cast=(ResType)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_3=cast=(Size)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_4=cast=(void *)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_ControlFontStyleRec_2_3I_5=cast=(Size *)

OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I=
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_0=cast=(ControlRef)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_1=cast=(ControlPartCode)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_2=cast=(ResType)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_3=cast=(Size)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_4=cast=(void *)
OS_GetControlData__ISIILorg_eclipse_swt_internal_carbon_Rect_2_3I_5=cast=(Size *)

OS_GetControlData__ISII_3B_3I=
OS_GetControlData__ISII_3B_3I_0=cast=(ControlRef)
OS_GetControlData__ISII_3B_3I_1=cast=(ControlPartCode)
OS_GetControlData__ISII_3B_3I_2=cast=(ResType)
OS_GetControlData__ISII_3B_3I_3=cast=(Size)
OS_GetControlData__ISII_3B_3I_4=cast=(void *)
OS_GetControlData__ISII_3B_3I_5=cast=(Size *)

OS_GetControlData__ISII_3I_3I=
OS_GetControlData__ISII_3I_3I_0=cast=(ControlRef)
OS_GetControlData__ISII_3I_3I_1=cast=(ControlPartCode)
OS_GetControlData__ISII_3I_3I_2=cast=(ResType)
OS_GetControlData__ISII_3I_3I_3=cast=(Size)
OS_GetControlData__ISII_3I_3I_4=cast=(void *)
OS_GetControlData__ISII_3I_3I_5=cast=(Size *)

OS_GetControlData__ISII_3S_3I=
OS_GetControlData__ISII_3S_3I_0=cast=(ControlRef)
OS_GetControlData__ISII_3S_3I_1=cast=(ControlPartCode)
OS_GetControlData__ISII_3S_3I_2=cast=(ResType)
OS_GetControlData__ISII_3S_3I_3=cast=(Size)
OS_GetControlData__ISII_3S_3I_4=cast=(void *)
OS_GetControlData__ISII_3S_3I_5=cast=(Size *)

OS_GetControlEventTarget=
OS_GetControlEventTarget_0=cast=(ControlRef)

OS_GetControlFeatures=
OS_GetControlFeatures_0=cast=(ControlRef)
OS_GetControlFeatures_1=

OS_GetControlOwner=
OS_GetControlOwner_0=cast=(ControlRef)

OS_GetControlProperty=
OS_GetControlProperty_0=cast=(ControlRef)
OS_GetControlProperty_1=
OS_GetControlProperty_2=
OS_GetControlProperty_3=
OS_GetControlProperty_4=
OS_GetControlProperty_5=

OS_GetControlReference=
OS_GetControlReference_0=cast=(ControlRef)

OS_GetControlRegion=
OS_GetControlRegion_0=cast=(ControlRef)
OS_GetControlRegion_1=cast=(ControlPartCode)
OS_GetControlRegion_2=cast=(RgnHandle)

OS_GetControlValue=
OS_GetControlValue_0=cast=(ControlRef)

OS_GetControlViewSize=
OS_GetControlViewSize_0=cast=(ControlRef)

OS_GetCurrentEventButtonState=

OS_GetCurrentEventKeyModifiers=

OS_GetCurrentEventLoop=

OS_GetCurrentEventQueue=

OS_GetCurrentProcess=
OS_GetCurrentProcess_0=cast=(ProcessSerialNumber *)

OS_GetCurrentScrap=
OS_GetCurrentScrap_0=cast=(ScrapRef *)

OS_GetDataBrowserCallbacks=
OS_GetDataBrowserCallbacks_0=cast=(ControlRef)
OS_GetDataBrowserCallbacks_1=cast=(DataBrowserCallbacks *)

OS_GetDataBrowserItemCount=
OS_GetDataBrowserItemCount_0=cast=(ControlRef)
OS_GetDataBrowserItemCount_1=cast=(DataBrowserItemID)
OS_GetDataBrowserItemCount_2=cast=(Boolean)
OS_GetDataBrowserItemCount_3=cast=(DataBrowserItemState)
OS_GetDataBrowserItemCount_4=cast=(UInt32 *)

OS_GetDataBrowserItemDataButtonValue=
OS_GetDataBrowserItemDataButtonValue_0=cast=(ControlRef)
OS_GetDataBrowserItemDataButtonValue_1=

OS_GetDataBrowserItemPartBounds=
OS_GetDataBrowserItemPartBounds_0=cast=(ControlRef)
OS_GetDataBrowserItemPartBounds_1=cast=(DataBrowserItemID)
OS_GetDataBrowserItemPartBounds_2=cast=(DataBrowserPropertyID)
OS_GetDataBrowserItemPartBounds_3=cast=(DataBrowserPropertyPart)
OS_GetDataBrowserItemPartBounds_4=cast=(Rect *)

OS_GetDataBrowserItemState=
OS_GetDataBrowserItemState_0=cast=(ControlRef)
OS_GetDataBrowserItemState_1=
OS_GetDataBrowserItemState_2=

OS_GetDataBrowserItems=
OS_GetDataBrowserItems_0=cast=(ControlRef)
OS_GetDataBrowserItems_1=cast=(DataBrowserItemID)
OS_GetDataBrowserItems_2=cast=(Boolean)
OS_GetDataBrowserItems_3=cast=(DataBrowserItemState)
OS_GetDataBrowserItems_4=cast=(Handle)

OS_GetDataBrowserListViewHeaderBtnHeight=
OS_GetDataBrowserListViewHeaderBtnHeight_0=cast=(ControlRef)
OS_GetDataBrowserListViewHeaderBtnHeight_1=

OS_GetDataBrowserListViewHeaderDesc=
OS_GetDataBrowserListViewHeaderDesc_0=cast=(ControlRef)
OS_GetDataBrowserListViewHeaderDesc_1=cast=(DataBrowserTableViewColumnID)
OS_GetDataBrowserListViewHeaderDesc_2=cast=(DataBrowserListViewHeaderDesc *)

OS_GetDataBrowserScrollBarInset=
OS_GetDataBrowserScrollBarInset_0=cast=(ControlRef)
OS_GetDataBrowserScrollBarInset_1=

OS_GetDataBrowserScrollPosition=
OS_GetDataBrowserScrollPosition_0=cast=(ControlRef)
OS_GetDataBrowserScrollPosition_1=cast=(UInt32 *)
OS_GetDataBrowserScrollPosition_2=cast=(UInt32 *)

OS_GetDataBrowserSelectionAnchor=
OS_GetDataBrowserSelectionAnchor_0=cast=(ControlRef)
OS_GetDataBrowserSelectionAnchor_1=cast=(UInt32 *)
OS_GetDataBrowserSelectionAnchor_2=cast=(UInt32 *)

OS_GetDataBrowserSelectionFlags=
OS_GetDataBrowserSelectionFlags_0=cast=(ControlRef)
OS_GetDataBrowserSelectionFlags_1=

OS_GetDataBrowserSortProperty=
OS_GetDataBrowserSortProperty_0=cast=(ControlRef)
OS_GetDataBrowserSortProperty_1=

OS_GetDataBrowserTableViewColumnPosition=
OS_GetDataBrowserTableViewColumnPosition_0=cast=(ControlRef)
OS_GetDataBrowserTableViewColumnPosition_1=cast=(DataBrowserTableViewColumnID)
OS_GetDataBrowserTableViewColumnPosition_2=cast=(DataBrowserTableViewColumnIndex *)

OS_GetDataBrowserTableViewItemID=
OS_GetDataBrowserTableViewItemID_0=cast=(ControlRef)
OS_GetDataBrowserTableViewItemID_1=cast=(DataBrowserTableViewRowIndex)
OS_GetDataBrowserTableViewItemID_2=cast=(DataBrowserItemID *)

OS_GetDataBrowserTableViewItemRow=
OS_GetDataBrowserTableViewItemRow_0=cast=(ControlRef)
OS_GetDataBrowserTableViewItemRow_1=cast=(DataBrowserTableViewRowIndex)
OS_GetDataBrowserTableViewItemRow_2=cast=(DataBrowserItemID *)

OS_GetDataBrowserTableViewNamedColumnWidth=
OS_GetDataBrowserTableViewNamedColumnWidth_0=cast=(ControlRef)
OS_GetDataBrowserTableViewNamedColumnWidth_1=cast=(DataBrowserTableViewColumnID)
OS_GetDataBrowserTableViewNamedColumnWidth_2=cast=(UInt16 *)

OS_GetDataBrowserTableViewRowHeight=
OS_GetDataBrowserTableViewRowHeight_0=cast=(ControlRef)
OS_GetDataBrowserTableViewRowHeight_1=cast=(UInt16 *)

OS_GetDblTime=

OS_GetDefFontSize=

OS_GetDeviceList=

OS_GetDragAllowableActions=
OS_GetDragAllowableActions_0=cast=(DragRef)
OS_GetDragAllowableActions_1=cast=(DragActions *)

OS_GetDragDropAction=
OS_GetDragDropAction_0=cast=(DragRef)
OS_GetDragDropAction_1=cast=(DragActions *)

OS_GetDragItemReferenceNumber=
OS_GetDragItemReferenceNumber_0=cast=(DragRef)
OS_GetDragItemReferenceNumber_1=
OS_GetDragItemReferenceNumber_2=cast=(DragItemRef *)

OS_GetDragModifiers=
OS_GetDragModifiers_0=cast=(DragRef)
OS_GetDragModifiers_1=cast=(SInt16 *)
OS_GetDragModifiers_2=cast=(SInt16 *)
OS_GetDragModifiers_3=cast=(SInt16 *)

OS_GetDragMouse=
OS_GetDragMouse_0=cast=(DragRef)
OS_GetDragMouse_1=cast=(Point *)
OS_GetDragMouse_2=cast=(Point *)

OS_GetEventClass=
OS_GetEventClass_0=cast=(EventRef)

OS_GetEventDispatcherTarget=

OS_GetEventKind=
OS_GetEventKind_0=cast=(EventRef)

OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2=
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_CGPoint_2_6=cast=(void *)

OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2=
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_HICommand_2_6=cast=(void *)

OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2=
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Point_2_6=cast=(void *)

OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2=
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_RGBColor_2_6=cast=(void *)

OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2=
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3ILorg_eclipse_swt_internal_carbon_Rect_2_6=cast=(void *)

OS_GetEventParameter__III_3II_3I_3B=
OS_GetEventParameter__III_3II_3I_3B_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3I_3B_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3I_3B_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3I_3B_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3I_3B_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3I_3B_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3I_3B_6=cast=(void *)

OS_GetEventParameter__III_3II_3I_3C=
OS_GetEventParameter__III_3II_3I_3C_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3I_3C_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3I_3C_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3I_3C_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3I_3C_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3I_3C_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3I_3C_6=cast=(void *)

OS_GetEventParameter__III_3II_3I_3I=
OS_GetEventParameter__III_3II_3I_3I_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3I_3I_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3I_3I_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3I_3I_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3I_3I_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3I_3I_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3I_3I_6=cast=(void *)

OS_GetEventParameter__III_3II_3I_3S=
OS_GetEventParameter__III_3II_3I_3S_0=cast=(EventRef)
OS_GetEventParameter__III_3II_3I_3S_1=cast=(EventParamName)
OS_GetEventParameter__III_3II_3I_3S_2=cast=(EventParamType)
OS_GetEventParameter__III_3II_3I_3S_3=cast=(EventParamType *)
OS_GetEventParameter__III_3II_3I_3S_4=cast=(UInt32)
OS_GetEventParameter__III_3II_3I_3S_5=cast=(UInt32 *)
OS_GetEventParameter__III_3II_3I_3S_6=cast=(void *)

OS_GetEventTime=
OS_GetEventTime_0=cast=(EventRef)

OS_GetFlavorData=
OS_GetFlavorData_0=cast=(DragRef)
OS_GetFlavorData_1=cast=(DragItemRef)
OS_GetFlavorData_2=cast=(FlavorType)
OS_GetFlavorData_3=cast=(void *)
OS_GetFlavorData_4=cast=(Size *)
OS_GetFlavorData_5=

OS_GetFlavorDataSize=
OS_GetFlavorDataSize_0=cast=(DragRef)
OS_GetFlavorDataSize_1=cast=(DragItemRef)
OS_GetFlavorDataSize_2=cast=(FlavorType)
OS_GetFlavorDataSize_3=cast=(Size *)

OS_GetFlavorType=
OS_GetFlavorType_0=cast=(DragRef)
OS_GetFlavorType_1=cast=(DragItemRef)
OS_GetFlavorType_2=
OS_GetFlavorType_3=cast=(FlavorType *)

OS_GetFontInfo=
OS_GetFontInfo_0=cast=(FontInfo *)

OS_GetGDevice=

OS_GetGWorld=
OS_GetGWorld_0=cast=(CGrafPtr *)
OS_GetGWorld_1=cast=(GDHandle *)

OS_GetGlobalMouse=
OS_GetGlobalMouse_0=cast=(Point *)

OS_GetHandleSize=
OS_GetHandleSize_0=cast=(Handle)

OS_GetIconFamilyData=
OS_GetIconFamilyData_0=cast=IconFamilyHandle
OS_GetIconFamilyData_1=cast=OSType
OS_GetIconFamilyData_2=cast=(Handle)

OS_GetIconRef=
OS_GetIconRef_0=cast=(SInt16)
OS_GetIconRef_1=cast=(OSType)
OS_GetIconRef_2=cast=(OSType)
OS_GetIconRef_3=cast=(IconRef *)

OS_GetIndMenuItemWithCommandID=
OS_GetIndMenuItemWithCommandID_0=cast=(MenuRef)
OS_GetIndMenuItemWithCommandID_1=cast=(MenuCommand)
OS_GetIndMenuItemWithCommandID_2=cast=(UInt32)
OS_GetIndMenuItemWithCommandID_3=cast=(MenuRef *)
OS_GetIndMenuItemWithCommandID_4=cast=(MenuItemIndex *)

OS_GetIndexedSubControl=
OS_GetIndexedSubControl_0=cast=(ControlRef)
OS_GetIndexedSubControl_1=cast=(UInt16)
OS_GetIndexedSubControl_2=cast=(ControlRef *)

OS_GetItemMark=
OS_GetItemMark_0=cast=(MenuRef)
OS_GetItemMark_1=
OS_GetItemMark_2=

OS_GetKeyboardFocus=
OS_GetKeyboardFocus_0=cast=(WindowRef)
OS_GetKeyboardFocus_1=cast=(ControlRef *)

OS_GetLastUserEventTime=

OS_GetMBarHeight=

OS_GetMainDevice=

OS_GetMainEventQueue=

OS_GetMenuCommandMark=
OS_GetMenuCommandMark_0=cast=(MenuRef)
OS_GetMenuCommandMark_1=cast=(MenuCommand)
OS_GetMenuCommandMark_2=cast=(UniChar *)

OS_GetMenuEventTarget=
OS_GetMenuEventTarget_0=cast=(MenuRef)

OS_GetMenuFont=
OS_GetMenuFont_0=cast=(MenuRef)
OS_GetMenuFont_1=cast=(SInt16 *)
OS_GetMenuFont_2=cast=(UInt16 *)

OS_GetMenuHeight=
OS_GetMenuHeight_0=cast=(MenuRef)

OS_GetMenuID=
OS_GetMenuID_0=cast=(MenuRef)

OS_GetMenuItemCommandID=
OS_GetMenuItemCommandID_0=cast=(MenuRef)
OS_GetMenuItemCommandID_1=cast=(SInt16)
OS_GetMenuItemCommandID_2=cast=(MenuCommand *)

OS_GetMenuItemHierarchicalMenu=
OS_GetMenuItemHierarchicalMenu_0=cast=(MenuRef)
OS_GetMenuItemHierarchicalMenu_1=cast=(SInt16)
OS_GetMenuItemHierarchicalMenu_2=cast=(MenuRef *)

OS_GetMenuItemRefCon=
OS_GetMenuItemRefCon_0=cast=(MenuRef)
OS_GetMenuItemRefCon_1=cast=(SInt16)
OS_GetMenuItemRefCon_2=cast=(UInt32 *)

OS_GetMenuTrackingData=
OS_GetMenuTrackingData_0=cast=(MenuRef)
OS_GetMenuTrackingData_1=

OS_GetMenuWidth=
OS_GetMenuWidth_0=cast=(MenuRef)

OS_GetMouse=
OS_GetMouse_0=cast=(Point *)

OS_GetNextDevice=
OS_GetNextDevice_0=cast=(GDHandle)

OS_GetPixBounds=
OS_GetPixBounds_0=cast=(PixMapHandle)
OS_GetPixBounds_1=cast=(Rect *)

OS_GetPixDepth=
OS_GetPixDepth_0=cast=(PixMapHandle)

OS_GetPort=
OS_GetPort_0=cast=(GrafPtr *)

OS_GetPortBitMapForCopyBits=
OS_GetPortBitMapForCopyBits_0=cast=(CGrafPtr)

OS_GetPortBounds=
OS_GetPortBounds_0=cast=(CGrafPtr)
OS_GetPortBounds_1=cast=(Rect *)

OS_GetPortClipRegion=
OS_GetPortClipRegion_0=cast=(CGrafPtr)
OS_GetPortClipRegion_1=cast=(RgnHandle)

OS_GetPortVisibleRegion=
OS_GetPortVisibleRegion_0=cast=(CGrafPtr)
OS_GetPortVisibleRegion_1=cast=(RgnHandle)

OS_GetPtrSize=
OS_GetPtrSize_0=cast=(Ptr)

OS_GetRegionBounds=
OS_GetRegionBounds_0=cast=(RgnHandle)
OS_GetRegionBounds_1=cast=(Rect *)

OS_GetRootControl=
OS_GetRootControl_0=cast=(WindowRef)
OS_GetRootControl_1=cast=(ControlRef *)

OS_GetScrapFlavorCount=
OS_GetScrapFlavorCount_0=cast=(ScrapRef)
OS_GetScrapFlavorCount_1=cast=(UInt32 *)

OS_GetScrapFlavorData=
OS_GetScrapFlavorData_0=cast=(ScrapRef)
OS_GetScrapFlavorData_1=cast=(ScrapFlavorType)
OS_GetScrapFlavorData_2=cast=(Size *)
OS_GetScrapFlavorData_3=cast=(void *)

OS_GetScrapFlavorInfoList=
OS_GetScrapFlavorInfoList_0=cast=(ScrapRef)
OS_GetScrapFlavorInfoList_1=cast=(UInt32 *)
OS_GetScrapFlavorInfoList_2=cast=(ScrapFlavorInfo *)

OS_GetScrapFlavorSize=
OS_GetScrapFlavorSize_0=cast=(ScrapRef)
OS_GetScrapFlavorSize_1=cast=(ScrapFlavorType)
OS_GetScrapFlavorSize_2=cast=(Size *)

OS_GetScriptManagerVariable=
OS_GetScriptManagerVariable_0=

OS_GetSuperControl=
OS_GetSuperControl_0=cast=(ControlRef)
OS_GetSuperControl_1=cast=(ControlRef *)

OS_GetTabContentRect=
OS_GetTabContentRect_0=cast=ControlRef
OS_GetTabContentRect_1=

OS_GetThemeBrushAsColor=
OS_GetThemeBrushAsColor_0=
OS_GetThemeBrushAsColor_1=
OS_GetThemeBrushAsColor_2=
OS_GetThemeBrushAsColor_3=

OS_GetThemeDrawingState=
OS_GetThemeDrawingState_0=cast=(ThemeDrawingState *)

OS_GetThemeFont=
OS_GetThemeFont_0=cast=(ThemeFontID)
OS_GetThemeFont_1=cast=(ScriptCode)
OS_GetThemeFont_2=cast=(char *)
OS_GetThemeFont_3=cast=(SInt16 *)
OS_GetThemeFont_4=cast=(Style *)

OS_GetThemeMenuItemExtra=
OS_GetThemeMenuItemExtra_0=
OS_GetThemeMenuItemExtra_1=
OS_GetThemeMenuItemExtra_2=

OS_GetThemeMetric=
OS_GetThemeMetric_0=
OS_GetThemeMetric_1=

OS_GetThemeTextColor=
OS_GetThemeTextColor_0=
OS_GetThemeTextColor_1=
OS_GetThemeTextColor_2=
OS_GetThemeTextColor_3=

OS_GetThemeTextDimensions=
OS_GetThemeTextDimensions_0=cast=(CFStringRef)
OS_GetThemeTextDimensions_1=cast=(ThemeFontID)
OS_GetThemeTextDimensions_2=cast=(ThemeDrawState)
OS_GetThemeTextDimensions_3=cast=(Boolean)
OS_GetThemeTextDimensions_4=cast=(Point *)
OS_GetThemeTextDimensions_5=cast=(SInt16 *)

OS_GetUserFocusEventTarget=

OS_GetUserFocusWindow=

OS_GetWRefCon=
OS_GetWRefCon_0=cast=(WindowRef)

OS_GetWindowActivationScope=
OS_GetWindowActivationScope_0=cast=(WindowRef)
OS_GetWindowActivationScope_1=cast=(WindowActivationScope *)

OS_GetWindowBounds=
OS_GetWindowBounds_0=cast=(WindowRef)
OS_GetWindowBounds_1=cast=(WindowRegionCode)
OS_GetWindowBounds_2=cast=(Rect *)

OS_GetWindowDefaultButton=
OS_GetWindowDefaultButton_0=cast=(WindowRef)
OS_GetWindowDefaultButton_1=cast=(ControlRef *)

OS_GetWindowEventTarget=
OS_GetWindowEventTarget_0=cast=(WindowRef)

OS_GetWindowFromPort=
OS_GetWindowFromPort_0=cast=(CGrafPtr)

OS_GetWindowGroupOfClass=
OS_GetWindowGroupOfClass_0=

OS_GetWindowModality=
OS_GetWindowModality_0=cast=(WindowRef)
OS_GetWindowModality_1=cast=(WindowModality *)
OS_GetWindowModality_2=cast=(WindowRef *)

OS_GetWindowPort=
OS_GetWindowPort_0=cast=(WindowRef)

OS_GetWindowRegion=
OS_GetWindowRegion_0=cast=(WindowRef)
OS_GetWindowRegion_1=cast=(WindowRegionCode)
OS_GetWindowRegion_2=cast=(RgnHandle)

OS_GetWindowStructureWidths=
OS_GetWindowStructureWidths_0=cast=(WindowRef)
OS_GetWindowStructureWidths_1=cast=(Rect *)

OS_HIComboBoxAppendTextItem=
OS_HIComboBoxAppendTextItem_0=cast=(HIViewRef)
OS_HIComboBoxAppendTextItem_1=cast=(CFStringRef)
OS_HIComboBoxAppendTextItem_2=cast=(CFIndex *)

OS_HIComboBoxCopyTextItemAtIndex=
OS_HIComboBoxCopyTextItemAtIndex_0=cast=(HIViewRef)
OS_HIComboBoxCopyTextItemAtIndex_1=cast=(CFIndex)
OS_HIComboBoxCopyTextItemAtIndex_2=cast=(CFStringRef *)

OS_HIComboBoxCreate=
OS_HIComboBoxCreate_0=cast=(const HIRect *)
OS_HIComboBoxCreate_1=cast=(CFStringRef)
OS_HIComboBoxCreate_2=cast=(const ControlFontStyleRec *)
OS_HIComboBoxCreate_3=cast=(CFArrayRef)
OS_HIComboBoxCreate_4=cast=(OptionBits)
OS_HIComboBoxCreate_5=cast=(HIViewRef *)

OS_HIComboBoxGetItemCount=
OS_HIComboBoxGetItemCount_0=cast=(HIViewRef)

OS_HIComboBoxInsertTextItemAtIndex=
OS_HIComboBoxInsertTextItemAtIndex_0=cast=(HIViewRef)
OS_HIComboBoxInsertTextItemAtIndex_1=cast=(CFIndex)
OS_HIComboBoxInsertTextItemAtIndex_2=cast=(CFStringRef)

OS_HIComboBoxRemoveItemAtIndex=
OS_HIComboBoxRemoveItemAtIndex_0=cast=(HIViewRef)
OS_HIComboBoxRemoveItemAtIndex_1=cast=(CFIndex)

OS_HIObjectCopyClassID=
OS_HIObjectCopyClassID_0=cast=(HIObjectRef)

OS_HIObjectCreate=
OS_HIObjectCreate_0=cast=(CFStringRef)
OS_HIObjectCreate_1=cast=(EventRef)
OS_HIObjectCreate_2=cast=(HIObjectRef *)

OS_HIObjectRegisterSubclass=
OS_HIObjectRegisterSubclass_0=cast=(CFStringRef)
OS_HIObjectRegisterSubclass_1=cast=(CFStringRef)
OS_HIObjectRegisterSubclass_2=cast=(OptionBits)
OS_HIObjectRegisterSubclass_3=cast=(EventHandlerUPP)
OS_HIObjectRegisterSubclass_4=cast=(UInt32)
OS_HIObjectRegisterSubclass_5=cast=(const EventTypeSpec *)
OS_HIObjectRegisterSubclass_6=cast=(void *)
OS_HIObjectRegisterSubclass_7=cast=(HIObjectClassRef *)

OS_HIViewAddSubview=
OS_HIViewAddSubview_0=cast=(HIViewRef)
OS_HIViewAddSubview_1=cast=(HIViewRef)

OS_HIViewClick=
OS_HIViewClick_0=cast=(HIViewRef)
OS_HIViewClick_1=cast=(EventRef)

OS_HIViewConvertPoint=
OS_HIViewConvertPoint_0=cast=(HIPoint *)
OS_HIViewConvertPoint_1=cast=(HIViewRef)
OS_HIViewConvertPoint_2=cast=(HIViewRef)

OS_HIViewCreateOffscreenImage=
OS_HIViewCreateOffscreenImage_0=cast=HIViewRef
OS_HIViewCreateOffscreenImage_1=cast=OptionBits
OS_HIViewCreateOffscreenImage_2=cast=(HIRect *)
OS_HIViewCreateOffscreenImage_3=cast=CGImageRef *

OS_HIViewFindByID=
OS_HIViewFindByID_0=cast=(HIViewRef)
OS_HIViewFindByID_1=cast=(HIViewID *),flags=struct
OS_HIViewFindByID_2=cast=(HIViewRef *)

OS_HIViewGetFirstSubview=
OS_HIViewGetFirstSubview_0=cast=(HIViewRef)

OS_HIViewGetFrame=
OS_HIViewGetFrame_0=cast=(HIViewRef)
OS_HIViewGetFrame_1=cast=(HIRect *)

OS_HIViewGetLastSubview=
OS_HIViewGetLastSubview_0=cast=(HIViewRef)

OS_HIViewGetNextView=
OS_HIViewGetNextView_0=cast=(HIViewRef)

OS_HIViewGetRoot=
OS_HIViewGetRoot_0=cast=(WindowRef)

OS_HIViewGetSizeConstraints=
OS_HIViewGetSizeConstraints_0=cast=(HIViewRef)
OS_HIViewGetSizeConstraints_1=cast=(HISize *)
OS_HIViewGetSizeConstraints_2=cast=(HISize *)

OS_HIViewGetSubviewHit=
OS_HIViewGetSubviewHit_0=cast=(HIViewRef)
OS_HIViewGetSubviewHit_1=cast=(CGPoint *)
OS_HIViewGetSubviewHit_2=cast=(Boolean)
OS_HIViewGetSubviewHit_3=cast=(HIViewRef *)

OS_HIViewGetViewForMouseEvent=
OS_HIViewGetViewForMouseEvent_0=cast=(HIViewRef)
OS_HIViewGetViewForMouseEvent_1=cast=(EventRef)
OS_HIViewGetViewForMouseEvent_2=cast=(HIViewRef *)

OS_HIViewIsVisible=
OS_HIViewIsVisible_0=cast=(HIViewRef)

OS_HIViewRemoveFromSuperview=
OS_HIViewRemoveFromSuperview_0=cast=(HIViewRef)

OS_HIViewSetBoundsOrigin=
OS_HIViewSetBoundsOrigin_0=cast=(HIViewRef)
OS_HIViewSetBoundsOrigin_1=
OS_HIViewSetBoundsOrigin_2=

OS_HIViewSetDrawingEnabled=
OS_HIViewSetDrawingEnabled_0=cast=(HIViewRef)
OS_HIViewSetDrawingEnabled_1=cast=(Boolean)

OS_HIViewSetFrame=
OS_HIViewSetFrame_0=cast=(HIViewRef)
OS_HIViewSetFrame_1=cast=(const HIRect *)

OS_HIViewSetNeedsDisplay=
OS_HIViewSetNeedsDisplay_0=cast=(HIViewRef)
OS_HIViewSetNeedsDisplay_1=cast=(Boolean)

OS_HIViewSetNeedsDisplayInRegion=
OS_HIViewSetNeedsDisplayInRegion_0=cast=(HIViewRef)
OS_HIViewSetNeedsDisplayInRegion_1=cast=(RgnHandle)
OS_HIViewSetNeedsDisplayInRegion_2=cast=(Boolean)

OS_HIViewSetVisible=
OS_HIViewSetVisible_0=cast=(HIViewRef)
OS_HIViewSetVisible_1=cast=(Boolean)

OS_HIViewSetZOrder=
OS_HIViewSetZOrder_0=cast=(HIViewRef)
OS_HIViewSetZOrder_1=cast=(HIViewZOrderOp)
OS_HIViewSetZOrder_2=cast=(HIViewRef)

OS_HIViewSimulateClick=
OS_HIViewSimulateClick_0=cast=(HIViewRef)
OS_HIViewSimulateClick_1=cast=(HIViewPartCode)
OS_HIViewSimulateClick_2=cast=(UInt32)
OS_HIViewSimulateClick_3=cast=(ControlPartCode *)

OS_HLock=
OS_HLock_0=cast=(Handle)

OS_HMGetTagDelay=
OS_HMGetTagDelay_0=

OS_HMHideTag=

OS_HMInstallControlContentCallback=
OS_HMInstallControlContentCallback_0=cast=(ControlRef)
OS_HMInstallControlContentCallback_1=cast=(HMControlContentUPP)

OS_HMSetTagDelay=
OS_HMSetTagDelay_0=

OS_HUnlock=
OS_HUnlock_0=cast=(Handle)

OS_HandleControlClick=
OS_HandleControlClick_0=cast=(ControlRef)
OS_HandleControlClick_1=flags=struct
OS_HandleControlClick_2=cast=(EventModifiers)
OS_HandleControlClick_3=cast=(ControlActionUPP)

OS_HandleControlSetCursor=
OS_HandleControlSetCursor_0=cast=(ControlRef)
OS_HandleControlSetCursor_1=flags=struct
OS_HandleControlSetCursor_2=cast=(EventModifiers)
OS_HandleControlSetCursor_3=cast=(Boolean *)

OS_HiWord=
OS_HiWord_0=

OS_HideWindow=
OS_HideWindow_0=cast=(WindowRef)

OS_HiliteMenu=
OS_HiliteMenu_0=cast=(MenuID)

OS_IconRefToIconFamily=
OS_IconRefToIconFamily_0=cast=IconRef
OS_IconRefToIconFamily_1=cast=IconSelectorValue
OS_IconRefToIconFamily_2=cast=IconFamilyHandle *

OS_InitContextualMenus=

OS_InitCursor=

OS_InitDataBrowserCallbacks=
OS_InitDataBrowserCallbacks_0=cast=(DataBrowserCallbacks *),flags=init

OS_InitDataBrowserCustomCallbacks=
OS_InitDataBrowserCustomCallbacks_0=

OS_InsertMenu=
OS_InsertMenu_0=cast=(MenuRef)
OS_InsertMenu_1=cast=(MenuID)

OS_InsertMenuItemTextWithCFString=
OS_InsertMenuItemTextWithCFString_0=cast=(MenuRef)
OS_InsertMenuItemTextWithCFString_1=cast=(CFStringRef)
OS_InsertMenuItemTextWithCFString_2=cast=(MenuItemIndex)
OS_InsertMenuItemTextWithCFString_3=cast=(MenuItemAttributes)
OS_InsertMenuItemTextWithCFString_4=cast=(MenuCommand)

OS_InstallEventHandler=
OS_InstallEventHandler_0=cast=(EventTargetRef)
OS_InstallEventHandler_1=cast=(EventHandlerUPP)
OS_InstallEventHandler_2=cast=(UInt32)
OS_InstallEventHandler_3=cast=(const EventTypeSpec *)
OS_InstallEventHandler_4=cast=(void *)
OS_InstallEventHandler_5=cast=(EventHandlerRef *)

OS_InstallEventLoopTimer=
OS_InstallEventLoopTimer_0=cast=(EventLoopRef)
OS_InstallEventLoopTimer_1=cast=(EventTimerInterval)
OS_InstallEventLoopTimer_2=cast=(EventTimerInterval)
OS_InstallEventLoopTimer_3=cast=(EventLoopTimerUPP)
OS_InstallEventLoopTimer_4=cast=(void *)
OS_InstallEventLoopTimer_5=cast=(EventLoopTimerRef *)

OS_InstallReceiveHandler=
OS_InstallReceiveHandler_0=cast=(DragReceiveHandlerUPP)
OS_InstallReceiveHandler_1=cast=(WindowRef)
OS_InstallReceiveHandler_2=cast=(void *)

OS_InstallTrackingHandler=
OS_InstallTrackingHandler_0=cast=(DragTrackingHandlerUPP)
OS_InstallTrackingHandler_1=cast=(WindowRef)
OS_InstallTrackingHandler_2=cast=(void *)

OS_InvalWindowRect=
OS_InvalWindowRect_0=cast=(WindowRef)
OS_InvalWindowRect_1=cast=(const Rect *)

OS_InvalWindowRgn=
OS_InvalWindowRgn_0=cast=(WindowRef)
OS_InvalWindowRgn_1=cast=(RgnHandle)

OS_InvertRect=
OS_InvertRect_0=cast=(const Rect *)

OS_InvertRgn=
OS_InvertRgn_0=cast=(RgnHandle)

OS_IsControlActive=
OS_IsControlActive_0=cast=(ControlRef)

OS_IsControlEnabled=
OS_IsControlEnabled_0=cast=(ControlRef)

OS_IsControlVisible=
OS_IsControlVisible_0=cast=(ControlRef)

OS_IsDataBrowserItemSelected=
OS_IsDataBrowserItemSelected_0=cast=(ControlRef)
OS_IsDataBrowserItemSelected_1=cast=(DataBrowserItemID)

OS_IsMenuCommandEnabled=
OS_IsMenuCommandEnabled_0=cast=(MenuRef)
OS_IsMenuCommandEnabled_1=cast=(MenuCommand)

OS_IsMenuItemEnabled=
OS_IsMenuItemEnabled_0=cast=(MenuRef)
OS_IsMenuItemEnabled_1=cast=(MenuItemIndex)

OS_IsValidControlHandle=
OS_IsValidControlHandle_0=cast=(ControlRef)

OS_IsValidMenu=
OS_IsValidMenu_0=cast=(MenuRef)

OS_IsValidWindowPtr=
OS_IsValidWindowPtr_0=cast=(WindowRef)

OS_IsWindowActive=
OS_IsWindowActive_0=cast=(WindowRef)

OS_IsWindowCollapsed=
OS_IsWindowCollapsed_0=cast=(WindowRef)

OS_IsWindowVisible=
OS_IsWindowVisible_0=cast=(WindowRef)

OS_KeyTranslate=
OS_KeyTranslate_0=cast=const void *
OS_KeyTranslate_1=
OS_KeyTranslate_2=cast=UInt32 *

OS_KillPoly=
OS_KillPoly_0=cast=(PolyHandle)

OS_LineTo=
OS_LineTo_0=cast=(short)
OS_LineTo_1=cast=(short)

OS_LoWord=
OS_LoWord_0=

OS_LockPortBits=
OS_LockPortBits_0=cast=(GrafPtr)

OS_Long2Fix=
OS_Long2Fix_0=

OS_MenuSelect=
OS_MenuSelect_0=cast=(Point *),flags=struct

OS_MoveControl=
OS_MoveControl_0=cast=(ControlRef)
OS_MoveControl_1=cast=(SInt16)
OS_MoveControl_2=cast=(SInt16)

OS_MoveTo=
OS_MoveTo_0=cast=(short)
OS_MoveTo_1=cast=(short)

OS_MoveWindow=
OS_MoveWindow_0=cast=(WindowRef)
OS_MoveWindow_1=cast=(short)
OS_MoveWindow_2=cast=(short)
OS_MoveWindow_3=cast=(Boolean)

OS_NavCreateChooseFolderDialog=
OS_NavCreateChooseFolderDialog_0=cast=(const NavDialogCreationOptions *)
OS_NavCreateChooseFolderDialog_1=cast=(NavEventUPP)
OS_NavCreateChooseFolderDialog_2=cast=(NavObjectFilterUPP)
OS_NavCreateChooseFolderDialog_3=cast=(void *)
OS_NavCreateChooseFolderDialog_4=cast=(NavDialogRef *)

OS_NavCreateGetFileDialog=
OS_NavCreateGetFileDialog_0=cast=(const NavDialogCreationOptions *)
OS_NavCreateGetFileDialog_1=cast=(NavTypeListHandle)
OS_NavCreateGetFileDialog_2=cast=(NavEventUPP)
OS_NavCreateGetFileDialog_3=cast=(NavPreviewUPP)
OS_NavCreateGetFileDialog_4=cast=(NavObjectFilterUPP)
OS_NavCreateGetFileDialog_5=cast=(void *)
OS_NavCreateGetFileDialog_6=cast=(NavDialogRef *)

OS_NavCreatePutFileDialog=
OS_NavCreatePutFileDialog_0=cast=(const NavDialogCreationOptions *)
OS_NavCreatePutFileDialog_1=cast=(OSType)
OS_NavCreatePutFileDialog_2=cast=(OSType)
OS_NavCreatePutFileDialog_3=cast=(NavEventUPP)
OS_NavCreatePutFileDialog_4=cast=(void *)
OS_NavCreatePutFileDialog_5=cast=(NavDialogRef *)

OS_NavDialogDispose=
OS_NavDialogDispose_0=cast=(NavDialogRef)

OS_NavDialogGetReply=
OS_NavDialogGetReply_0=cast=(NavDialogRef)
OS_NavDialogGetReply_1=cast=(NavReplyRecord *)

OS_NavDialogGetSaveFileName=
OS_NavDialogGetSaveFileName_0=cast=(NavDialogRef)

OS_NavDialogGetUserAction=
OS_NavDialogGetUserAction_0=cast=(NavDialogRef)

OS_NavDialogRun=
OS_NavDialogRun_0=cast=(NavDialogRef)

OS_NavDialogSetSaveFileName=
OS_NavDialogSetSaveFileName_0=cast=(NavDialogRef)
OS_NavDialogSetSaveFileName_1=cast=(CFStringRef)

OS_NavGetDefaultDialogCreationOptions=
OS_NavGetDefaultDialogCreationOptions_0=cast=(NavDialogCreationOptions *)

OS_NewControl=
OS_NewControl_0=cast=(WindowRef)
OS_NewControl_1=cast=(const Rect *)
OS_NewControl_2=cast=(ConstStr255Param)
OS_NewControl_3=cast=(Boolean)
OS_NewControl_4=cast=(SInt16)
OS_NewControl_5=cast=(SInt16)
OS_NewControl_6=cast=(SInt16)
OS_NewControl_7=cast=(SInt16)
OS_NewControl_8=cast=(SInt32)

OS_NewDrag=
OS_NewDrag_0=cast=(DragRef *)

OS_NewGWorldFromPtr=
OS_NewGWorldFromPtr_0=cast=(GWorldPtr *)
OS_NewGWorldFromPtr_1=cast=(unsigned long)
OS_NewGWorldFromPtr_2=cast=(const Rect *)
OS_NewGWorldFromPtr_3=cast=(CTabHandle)
OS_NewGWorldFromPtr_4=cast=(GDHandle)
OS_NewGWorldFromPtr_5=cast=(GWorldFlags)
OS_NewGWorldFromPtr_6=cast=(Ptr)
OS_NewGWorldFromPtr_7=cast=(long)

OS_NewHandle=
OS_NewHandle_0=cast=(Size)

OS_NewHandleClear=
OS_NewHandleClear_0=cast=(Size)

OS_NewPtr=
OS_NewPtr_0=cast=(Size)

OS_NewPtrClear=
OS_NewPtrClear_0=cast=(Size)

OS_NewRgn=

OS_OffsetRect=
OS_OffsetRect_0=
OS_OffsetRect_1=
OS_OffsetRect_2=

OS_OffsetRgn=
OS_OffsetRgn_0=cast=(RgnHandle)
OS_OffsetRgn_1=cast=(short)
OS_OffsetRgn_2=cast=(short)

OS_OpenDataBrowserContainer=
OS_OpenDataBrowserContainer_0=cast=(ControlRef)
OS_OpenDataBrowserContainer_1=cast=(DataBrowserItemID)

OS_OpenPoly=

OS_OpenRgn=

OS_PMCreatePageFormat=
OS_PMCreatePageFormat_0=cast=(PMPageFormat *)

OS_PMCreatePrintSettings=
OS_PMCreatePrintSettings_0=cast=(PMPrintSettings *)

OS_PMCreateSession=
OS_PMCreateSession_0=cast=(PMPrintSession *)

OS_PMFlattenPageFormat=
OS_PMFlattenPageFormat_0=cast=PMPageFormat
OS_PMFlattenPageFormat_1=cast=Handle *

OS_PMFlattenPrintSettings=
OS_PMFlattenPrintSettings_0=cast=PMPrintSettings
OS_PMFlattenPrintSettings_1=cast=Handle *

OS_PMGetAdjustedPageRect=
OS_PMGetAdjustedPageRect_0=cast=(PMPageFormat)
OS_PMGetAdjustedPageRect_1=cast=(PMRect *)

OS_PMGetAdjustedPaperRect=
OS_PMGetAdjustedPaperRect_0=cast=(PMPageFormat)
OS_PMGetAdjustedPaperRect_1=cast=(PMRect *)

OS_PMGetCollate=
OS_PMGetCollate_0=cast=PMPrintSettings
OS_PMGetCollate_1=

OS_PMGetCopies=
OS_PMGetCopies_0=cast=(PMPrintSettings)
OS_PMGetCopies_1=cast=(UInt32 *)

OS_PMGetFirstPage=
OS_PMGetFirstPage_0=cast=(PMPrintSettings)
OS_PMGetFirstPage_1=cast=(UInt32 *)

OS_PMGetJobNameCFString=
OS_PMGetJobNameCFString_0=cast=(PMPrintSettings)
OS_PMGetJobNameCFString_1=cast=(CFStringRef *)

OS_PMGetLastPage=
OS_PMGetLastPage_0=cast=(PMPrintSettings)
OS_PMGetLastPage_1=cast=(UInt32 *)

OS_PMGetPageRange=
OS_PMGetPageRange_0=cast=(PMPrintSettings)
OS_PMGetPageRange_1=cast=(UInt32 *)
OS_PMGetPageRange_2=cast=(UInt32 *)

OS_PMGetResolution=
OS_PMGetResolution_0=cast=(PMPageFormat)
OS_PMGetResolution_1=cast=(PMResolution *)

OS_PMRelease=
OS_PMRelease_0=cast=(PMObject)

OS_PMSessionBeginDocumentNoDialog=
OS_PMSessionBeginDocumentNoDialog_0=cast=(PMPrintSession)
OS_PMSessionBeginDocumentNoDialog_1=cast=(PMPrintSettings)
OS_PMSessionBeginDocumentNoDialog_2=cast=(PMPageFormat)

OS_PMSessionBeginPageNoDialog=
OS_PMSessionBeginPageNoDialog_0=cast=(PMPrintSession)
OS_PMSessionBeginPageNoDialog_1=cast=(PMPageFormat)
OS_PMSessionBeginPageNoDialog_2=cast=(const PMRect *)

OS_PMSessionCopyDestinationLocation=
OS_PMSessionCopyDestinationLocation_0=cast=PMPrintSession
OS_PMSessionCopyDestinationLocation_1=cast=PMPrintSettings
OS_PMSessionCopyDestinationLocation_2=cast=(CFURLRef *)

OS_PMSessionCreatePrinterList=
OS_PMSessionCreatePrinterList_0=cast=PMPrintSession
OS_PMSessionCreatePrinterList_1=cast=CFArrayRef *
OS_PMSessionCreatePrinterList_2=cast=CFIndex *
OS_PMSessionCreatePrinterList_3=cast=PMPrinter *

OS_PMSessionDefaultPageFormat=
OS_PMSessionDefaultPageFormat_0=cast=(PMPrintSession)
OS_PMSessionDefaultPageFormat_1=cast=(PMPageFormat)

OS_PMSessionDefaultPrintSettings=
OS_PMSessionDefaultPrintSettings_0=cast=(PMPrintSession)
OS_PMSessionDefaultPrintSettings_1=cast=(PMPrintSettings)

OS_PMSessionEndDocumentNoDialog=
OS_PMSessionEndDocumentNoDialog_0=cast=(PMPrintSession)

OS_PMSessionEndPageNoDialog=
OS_PMSessionEndPageNoDialog_0=cast=(PMPrintSession)

OS_PMSessionError=
OS_PMSessionError_0=cast=(PMPrintSession)

OS_PMSessionGetDestinationType=
OS_PMSessionGetDestinationType_0=cast=PMPrintSession
OS_PMSessionGetDestinationType_1=cast=PMPrintSettings
OS_PMSessionGetDestinationType_2=cast=(PMDestinationType *)

OS_PMSessionGetGraphicsContext=
OS_PMSessionGetGraphicsContext_0=cast=(PMPrintSession)
OS_PMSessionGetGraphicsContext_1=cast=(CFStringRef)
OS_PMSessionGetGraphicsContext_2=cast=(void **)

OS_PMSessionPageSetupDialog=
OS_PMSessionPageSetupDialog_0=cast=(PMPrintSession)
OS_PMSessionPageSetupDialog_1=cast=(PMPageFormat)
OS_PMSessionPageSetupDialog_2=cast=(Boolean *)

OS_PMSessionPrintDialog=
OS_PMSessionPrintDialog_0=cast=(PMPrintSession)
OS_PMSessionPrintDialog_1=cast=(PMPrintSettings)
OS_PMSessionPrintDialog_2=cast=(PMPageFormat)
OS_PMSessionPrintDialog_3=cast=(Boolean *)

OS_PMSessionSetCurrentPrinter=
OS_PMSessionSetCurrentPrinter_0=cast=PMPrintSession
OS_PMSessionSetCurrentPrinter_1=cast=CFStringRef

OS_PMSessionSetDestination=
OS_PMSessionSetDestination_0=cast=PMPrintSession
OS_PMSessionSetDestination_1=cast=PMPrintSettings
OS_PMSessionSetDestination_2=cast=PMDestinationType
OS_PMSessionSetDestination_3=cast=CFStringRef
OS_PMSessionSetDestination_4=cast=CFURLRef

OS_PMSessionSetDocumentFormatGeneration=
OS_PMSessionSetDocumentFormatGeneration_0=cast=(PMPrintSession)
OS_PMSessionSetDocumentFormatGeneration_1=cast=(CFStringRef)
OS_PMSessionSetDocumentFormatGeneration_2=cast=(CFArrayRef)
OS_PMSessionSetDocumentFormatGeneration_3=cast=(CFTypeRef)

OS_PMSessionSetError=
OS_PMSessionSetError_0=cast=(PMPrintSession)
OS_PMSessionSetError_1=

OS_PMSessionUseSheets=
OS_PMSessionUseSheets_0=cast=(PMPrintSession)
OS_PMSessionUseSheets_1=cast=(WindowRef)
OS_PMSessionUseSheets_2=cast=(PMSheetDoneUPP)

OS_PMSessionValidatePageFormat=
OS_PMSessionValidatePageFormat_0=cast=(PMPrintSession)
OS_PMSessionValidatePageFormat_1=cast=(PMPageFormat)
OS_PMSessionValidatePageFormat_2=cast=(Boolean *)

OS_PMSessionValidatePrintSettings=
OS_PMSessionValidatePrintSettings_0=cast=(PMPrintSession)
OS_PMSessionValidatePrintSettings_1=cast=(PMPrintSettings)
OS_PMSessionValidatePrintSettings_2=cast=(Boolean *)

OS_PMSetCollate=
OS_PMSetCollate_0=cast=PMPrintSettings
OS_PMSetCollate_1=

OS_PMSetFirstPage=
OS_PMSetFirstPage_0=cast=(PMPrintSettings)
OS_PMSetFirstPage_1=cast=(UInt32)
OS_PMSetFirstPage_2=cast=(Boolean)

OS_PMSetJobNameCFString=
OS_PMSetJobNameCFString_0=cast=(PMPrintSettings)
OS_PMSetJobNameCFString_1=cast=CFStringRef

OS_PMSetLastPage=
OS_PMSetLastPage_0=cast=(PMPrintSettings)
OS_PMSetLastPage_1=cast=(UInt32)
OS_PMSetLastPage_2=cast=(Boolean)

OS_PMSetPageRange=
OS_PMSetPageRange_0=cast=(PMPrintSettings)
OS_PMSetPageRange_1=cast=(UInt32)
OS_PMSetPageRange_2=cast=(UInt32)

OS_PMUnflattenPageFormat=
OS_PMUnflattenPageFormat_0=cast=Handle
OS_PMUnflattenPageFormat_1=cast=PMPageFormat *

OS_PMUnflattenPrintSettings=
OS_PMUnflattenPrintSettings_0=cast=Handle
OS_PMUnflattenPrintSettings_1=cast=(PMPrintSettings *)

OS_PaintOval=
OS_PaintOval_0=cast=(const Rect *)

OS_PaintPoly=
OS_PaintPoly_0=cast=(PolyHandle)

OS_PaintRect=
OS_PaintRect_0=cast=(const Rect *)

OS_PaintRoundRect=
OS_PaintRoundRect_0=cast=(const Rect *)
OS_PaintRoundRect_1=cast=(short)
OS_PaintRoundRect_2=cast=(short)

OS_PenSize=
OS_PenSize_0=cast=(short)
OS_PenSize_1=cast=(short)

OS_PickColor=
OS_PickColor_0=cast=(ColorPickerInfo *)

OS_PopUpMenuSelect=
OS_PopUpMenuSelect_0=cast=(MenuRef)
OS_PopUpMenuSelect_1=cast=(short)
OS_PopUpMenuSelect_2=cast=(short)
OS_PopUpMenuSelect_3=cast=(short)

OS_PostEvent=
OS_PostEvent_0=cast=(EventKind)
OS_PostEvent_1=cast=(UInt32)

OS_PostEventToQueue=
OS_PostEventToQueue_0=cast=(EventQueueRef)
OS_PostEventToQueue_1=cast=(EventRef)
OS_PostEventToQueue_2=cast=(EventPriority)

OS_PtInRect=
OS_PtInRect_0=cast=(Point *),flags=struct
OS_PtInRect_1=cast=(const Rect *)

OS_PtInRgn=
OS_PtInRgn_0=cast=(Point *),flags=struct
OS_PtInRgn_1=cast=(RgnHandle)

OS_PutScrapFlavor=
OS_PutScrapFlavor_0=cast=(ScrapRef)
OS_PutScrapFlavor_1=cast=(ScrapFlavorType)
OS_PutScrapFlavor_2=cast=(ScrapFlavorFlags)
OS_PutScrapFlavor_3=cast=(Size)
OS_PutScrapFlavor_4=cast=(const void *)

OS_QDBeginCGContext=
OS_QDBeginCGContext_0=cast=(CGrafPtr)
OS_QDBeginCGContext_1=cast=(CGContextRef *)

OS_QDEndCGContext=
OS_QDEndCGContext_0=cast=(CGrafPtr)
OS_QDEndCGContext_1=cast=(CGContextRef *)

OS_QDFlushPortBuffer=
OS_QDFlushPortBuffer_0=cast=(CGrafPtr)
OS_QDFlushPortBuffer_1=cast=(RgnHandle)

OS_QDGlobalToLocalPoint=
OS_QDGlobalToLocalPoint_0=cast=(CGrafPtr)
OS_QDGlobalToLocalPoint_1=cast=(Point *)

OS_QDLocalToGlobalPoint=
OS_QDLocalToGlobalPoint_0=cast=(CGrafPtr)
OS_QDLocalToGlobalPoint_1=cast=(Point *)

OS_QDSetDirtyRegion=
OS_QDSetDirtyRegion_0=cast=(CGrafPtr)
OS_QDSetDirtyRegion_1=cast=(RgnHandle)

OS_QDSetPatternOrigin=
OS_QDSetPatternOrigin_0=cast=(Point *),flags=struct

OS_QDSwapTextFlags=
OS_QDSwapTextFlags_0=cast=(UInt32)

OS_RGBBackColor=
OS_RGBBackColor_0=cast=(const RGBColor *)

OS_RGBForeColor=
OS_RGBForeColor_0=cast=(const RGBColor *)

OS_ReceiveNextEvent=
OS_ReceiveNextEvent_0=cast=(UInt32)
OS_ReceiveNextEvent_1=cast=(const EventTypeSpec *)
OS_ReceiveNextEvent_2=cast=(EventTimeout)
OS_ReceiveNextEvent_3=cast=(Boolean)
OS_ReceiveNextEvent_4=cast=(EventRef *)

OS_RectInRgn=
OS_RectInRgn_0=cast=(const Rect *)
OS_RectInRgn_1=cast=(RgnHandle)

OS_RectRgn=
OS_RectRgn_0=cast=(RgnHandle)
OS_RectRgn_1=cast=(const Rect *)

OS_RegisterAppearanceClient=

OS_ReleaseEvent=
OS_ReleaseEvent_0=cast=(EventRef)

OS_ReleaseIconRef=
OS_ReleaseIconRef_0=cast=IconRef

OS_ReleaseMenu=
OS_ReleaseMenu_0=cast=(MenuRef)

OS_ReleaseWindow=
OS_ReleaseWindow_0=cast=WindowRef

OS_ReleaseWindowGroup=
OS_ReleaseWindowGroup_0=cast=(WindowGroupRef)

OS_RemoveControlProperty=
OS_RemoveControlProperty_0=cast=(ControlRef)
OS_RemoveControlProperty_1=
OS_RemoveControlProperty_2=

OS_RemoveDataBrowserItems=
OS_RemoveDataBrowserItems_0=cast=(ControlRef)
OS_RemoveDataBrowserItems_1=cast=(DataBrowserItemID)
OS_RemoveDataBrowserItems_2=cast=(UInt32)
OS_RemoveDataBrowserItems_3=cast=(const DataBrowserItemID *)
OS_RemoveDataBrowserItems_4=cast=(DataBrowserPropertyID)

OS_RemoveDataBrowserTableViewColumn=
OS_RemoveDataBrowserTableViewColumn_0=cast=(ControlRef)
OS_RemoveDataBrowserTableViewColumn_1=cast=(DataBrowserTableViewColumnID)

OS_RemoveEventHandler=
OS_RemoveEventHandler_0=cast=(EventHandlerRef)

OS_RemoveEventLoopTimer=
OS_RemoveEventLoopTimer_0=cast=(EventLoopTimerRef)

OS_RemoveReceiveHandler=
OS_RemoveReceiveHandler_0=cast=(DragReceiveHandlerUPP)
OS_RemoveReceiveHandler_1=cast=(WindowRef)

OS_RemoveTrackingHandler=
OS_RemoveTrackingHandler_0=cast=(DragTrackingHandlerUPP)
OS_RemoveTrackingHandler_1=cast=(WindowRef)

OS_RepositionWindow=
OS_RepositionWindow_0=cast=(WindowRef)
OS_RepositionWindow_1=cast=(WindowRef)
OS_RepositionWindow_2=

OS_ReshapeCustomWindow=
OS_ReshapeCustomWindow_0=cast=WindowRef

OS_RetainEvent=
OS_RetainEvent_0=cast=(EventRef)

OS_RetainMenu=
OS_RetainMenu_0=cast=(MenuRef)

OS_RetainWindow=
OS_RetainWindow_0=cast=(WindowRef)

OS_RevealDataBrowserItem=
OS_RevealDataBrowserItem_0=cast=(ControlRef)
OS_RevealDataBrowserItem_1=cast=(DataBrowserItemID)
OS_RevealDataBrowserItem_2=cast=(DataBrowserPropertyID)
OS_RevealDataBrowserItem_3=cast=(DataBrowserRevealOptions)

OS_RunStandardAlert=
OS_RunStandardAlert_0=cast=(DialogRef)
OS_RunStandardAlert_1=cast=(ModalFilterUPP)
OS_RunStandardAlert_2=cast=(DialogItemIndex *)

OS_ScrollRect=
OS_ScrollRect_0=cast=(const Rect *)
OS_ScrollRect_1=cast=(short)
OS_ScrollRect_2=cast=(short)
OS_ScrollRect_3=cast=(RgnHandle)

OS_SectRect=
OS_SectRect_0=flags=no_out
OS_SectRect_1=flags=no_out
OS_SectRect_2=flags=no_in

OS_SectRgn=
OS_SectRgn_0=cast=(RgnHandle)
OS_SectRgn_1=cast=(RgnHandle)
OS_SectRgn_2=cast=(RgnHandle)

OS_SelectWindow=
OS_SelectWindow_0=cast=(WindowRef)

OS_SendBehind=
OS_SendBehind_0=cast=(WindowRef)
OS_SendBehind_1=cast=(WindowRef)

OS_SendEventToEventTarget=
OS_SendEventToEventTarget_0=cast=(EventRef)
OS_SendEventToEventTarget_1=cast=(EventTargetRef)

OS_SetBevelButtonContentInfo=
OS_SetBevelButtonContentInfo_0=cast=(ControlRef)
OS_SetBevelButtonContentInfo_1=cast=(ControlButtonContentInfoPtr)

OS_SetClip=
OS_SetClip_0=cast=(RgnHandle)

OS_SetControl32BitMaximum=
OS_SetControl32BitMaximum_0=cast=(ControlRef)
OS_SetControl32BitMaximum_1=cast=(SInt32)

OS_SetControl32BitMinimum=
OS_SetControl32BitMinimum_0=cast=(ControlRef)
OS_SetControl32BitMinimum_1=cast=(SInt32)

OS_SetControl32BitValue=
OS_SetControl32BitValue_0=cast=(ControlRef)
OS_SetControl32BitValue_1=cast=(SInt32)

OS_SetControlAction=
OS_SetControlAction_0=cast=(ControlRef)
OS_SetControlAction_1=cast=(ControlActionUPP)

OS_SetControlBounds=
OS_SetControlBounds_0=cast=(ControlRef)
OS_SetControlBounds_1=cast=(const Rect *)

OS_SetControlColorProc=
OS_SetControlColorProc_0=cast=(ControlRef)
OS_SetControlColorProc_1=cast=(ControlColorUPP)

OS_SetControlData__IIIII=
OS_SetControlData__IIIII_0=cast=(ControlRef)
OS_SetControlData__IIIII_1=cast=(ControlPartCode)
OS_SetControlData__IIIII_2=cast=(ResType)
OS_SetControlData__IIIII_3=cast=(Size)
OS_SetControlData__IIIII_4=cast=(const void *)

OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2=
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_0=cast=(ControlRef)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_1=cast=(ControlPartCode)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_2=cast=(ResType)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_3=cast=(Size)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlButtonContentInfo_2_4=cast=(const void *)

OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2=
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_0=cast=(ControlRef)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_1=cast=(ControlPartCode)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_2=cast=(ResType)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_3=cast=(Size)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_ControlTabInfoRecV1_2_4=cast=(const void *)

OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2=
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_0=cast=(ControlRef)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_1=cast=(ControlPartCode)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_2=cast=(ResType)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_3=cast=(Size)
OS_SetControlData__IIIILorg_eclipse_swt_internal_carbon_Rect_2_4=cast=(const void *)

OS_SetControlData__IIII_3B=
OS_SetControlData__IIII_3B_0=cast=(ControlRef)
OS_SetControlData__IIII_3B_1=cast=(ControlPartCode)
OS_SetControlData__IIII_3B_2=cast=(ResType)
OS_SetControlData__IIII_3B_3=cast=(Size)
OS_SetControlData__IIII_3B_4=cast=(const void *)

OS_SetControlData__IIII_3I=
OS_SetControlData__IIII_3I_0=cast=(ControlRef)
OS_SetControlData__IIII_3I_1=cast=(ControlPartCode)
OS_SetControlData__IIII_3I_2=cast=(ResType)
OS_SetControlData__IIII_3I_3=cast=(Size)
OS_SetControlData__IIII_3I_4=cast=(const void *)

OS_SetControlData__IIII_3S=
OS_SetControlData__IIII_3S_0=cast=(ControlRef)
OS_SetControlData__IIII_3S_1=cast=(ControlPartCode)
OS_SetControlData__IIII_3S_2=cast=(ResType)
OS_SetControlData__IIII_3S_3=cast=(Size)
OS_SetControlData__IIII_3S_4=cast=(const void *)

OS_SetControlFontStyle=
OS_SetControlFontStyle_0=cast=(ControlRef)
OS_SetControlFontStyle_1=cast=(const ControlFontStyleRec *)

OS_SetControlPopupMenuHandle=
OS_SetControlPopupMenuHandle_0=cast=(ControlRef)
OS_SetControlPopupMenuHandle_1=cast=(MenuRef)

OS_SetControlProperty=
OS_SetControlProperty_0=cast=(ControlRef)
OS_SetControlProperty_1=
OS_SetControlProperty_2=
OS_SetControlProperty_3=
OS_SetControlProperty_4=cast=(const void *)

OS_SetControlReference=
OS_SetControlReference_0=cast=(ControlRef)
OS_SetControlReference_1=cast=(SInt32)

OS_SetControlTitleWithCFString=
OS_SetControlTitleWithCFString_0=cast=(ControlRef)
OS_SetControlTitleWithCFString_1=cast=(CFStringRef)

OS_SetControlViewSize=
OS_SetControlViewSize_0=cast=(ControlRef)
OS_SetControlViewSize_1=cast=(SInt32)

OS_SetControlVisibility=
OS_SetControlVisibility_0=cast=(ControlRef)
OS_SetControlVisibility_1=
OS_SetControlVisibility_2=

OS_SetCursor=
OS_SetCursor_0=cast=(const Cursor *)

OS_SetDataBrowserCallbacks=
OS_SetDataBrowserCallbacks_0=cast=(ControlRef)
OS_SetDataBrowserCallbacks_1=cast=(const DataBrowserCallbacks *),flags=init

OS_SetDataBrowserCustomCallbacks=
OS_SetDataBrowserCustomCallbacks_0=cast=(ControlRef)
OS_SetDataBrowserCustomCallbacks_1=

OS_SetDataBrowserHasScrollBars=
OS_SetDataBrowserHasScrollBars_0=cast=(ControlRef)
OS_SetDataBrowserHasScrollBars_1=cast=(Boolean)
OS_SetDataBrowserHasScrollBars_2=cast=(Boolean)

OS_SetDataBrowserItemDataBooleanValue=
OS_SetDataBrowserItemDataBooleanValue_0=cast=(DataBrowserItemDataRef)
OS_SetDataBrowserItemDataBooleanValue_1=cast=(Boolean)

OS_SetDataBrowserItemDataButtonValue=
OS_SetDataBrowserItemDataButtonValue_0=cast=(DataBrowserItemDataRef)
OS_SetDataBrowserItemDataButtonValue_1=cast=(ThemeButtonValue)

OS_SetDataBrowserItemDataIcon=
OS_SetDataBrowserItemDataIcon_0=cast=(DataBrowserItemDataRef)
OS_SetDataBrowserItemDataIcon_1=cast=(IconRef)

OS_SetDataBrowserItemDataItemID=
OS_SetDataBrowserItemDataItemID_0=cast=(DataBrowserItemDataRef)
OS_SetDataBrowserItemDataItemID_1=cast=(DataBrowserItemID)

OS_SetDataBrowserItemDataText=
OS_SetDataBrowserItemDataText_0=cast=(DataBrowserItemDataRef)
OS_SetDataBrowserItemDataText_1=cast=(CFStringRef)

OS_SetDataBrowserListViewDisclosureColumn=
OS_SetDataBrowserListViewDisclosureColumn_0=cast=(ControlRef)
OS_SetDataBrowserListViewDisclosureColumn_1=cast=(DataBrowserTableViewColumnID)
OS_SetDataBrowserListViewDisclosureColumn_2=cast=(Boolean)

OS_SetDataBrowserListViewHeaderBtnHeight=
OS_SetDataBrowserListViewHeaderBtnHeight_0=cast=(ControlRef)
OS_SetDataBrowserListViewHeaderBtnHeight_1=cast=(UInt16)

OS_SetDataBrowserListViewHeaderDesc=
OS_SetDataBrowserListViewHeaderDesc_0=cast=(ControlRef)
OS_SetDataBrowserListViewHeaderDesc_1=
OS_SetDataBrowserListViewHeaderDesc_2=

OS_SetDataBrowserScrollPosition=
OS_SetDataBrowserScrollPosition_0=cast=(ControlRef)
OS_SetDataBrowserScrollPosition_1=cast=(UInt32)
OS_SetDataBrowserScrollPosition_2=cast=(UInt32)

OS_SetDataBrowserSelectedItems=
OS_SetDataBrowserSelectedItems_0=cast=(ControlRef)
OS_SetDataBrowserSelectedItems_1=cast=(UInt32)
OS_SetDataBrowserSelectedItems_2=cast=(const DataBrowserItemID *)
OS_SetDataBrowserSelectedItems_3=cast=(DataBrowserSetOption)

OS_SetDataBrowserSelectionFlags=
OS_SetDataBrowserSelectionFlags_0=cast=(ControlRef)
OS_SetDataBrowserSelectionFlags_1=cast=(DataBrowserSelectionFlags)

OS_SetDataBrowserSortOrder=
OS_SetDataBrowserSortOrder_0=cast=(ControlRef)
OS_SetDataBrowserSortOrder_1=

OS_SetDataBrowserTableViewColumnPosition=
OS_SetDataBrowserTableViewColumnPosition_0=cast=(ControlRef)
OS_SetDataBrowserTableViewColumnPosition_1=
OS_SetDataBrowserTableViewColumnPosition_2=

OS_SetDataBrowserTableViewHiliteStyle=
OS_SetDataBrowserTableViewHiliteStyle_0=cast=(ControlRef)
OS_SetDataBrowserTableViewHiliteStyle_1=

OS_SetDataBrowserTableViewItemRow=
OS_SetDataBrowserTableViewItemRow_0=cast=(ControlRef)
OS_SetDataBrowserTableViewItemRow_1=
OS_SetDataBrowserTableViewItemRow_2=

OS_SetDataBrowserTableViewNamedColumnWidth=
OS_SetDataBrowserTableViewNamedColumnWidth_0=cast=(ControlRef)
OS_SetDataBrowserTableViewNamedColumnWidth_1=cast=(DataBrowserTableViewColumnID)
OS_SetDataBrowserTableViewNamedColumnWidth_2=cast=(UInt16)

OS_SetDataBrowserTarget=
OS_SetDataBrowserTarget_0=cast=(ControlRef)
OS_SetDataBrowserTarget_1=cast=(DataBrowserItemID)

OS_SetDragAllowableActions=
OS_SetDragAllowableActions_0=cast=(DragRef)
OS_SetDragAllowableActions_1=cast=(DragActions)
OS_SetDragAllowableActions_2=cast=(Boolean)

OS_SetDragDropAction=
OS_SetDragDropAction_0=cast=(DragRef)
OS_SetDragDropAction_1=cast=(DragActions)

OS_SetDragInputProc=
OS_SetDragInputProc_0=cast=(DragRef)
OS_SetDragInputProc_1=cast=(DragInputUPP)
OS_SetDragInputProc_2=cast=(void *)

OS_SetEventLoopTimerNextFireTime=
OS_SetEventLoopTimerNextFireTime_0=cast=(EventLoopTimerRef)
OS_SetEventLoopTimerNextFireTime_1=cast=(EventTimerInterval)

OS_SetEventParameter__IIII_3C=
OS_SetEventParameter__IIII_3C_0=cast=(EventRef)
OS_SetEventParameter__IIII_3C_1=cast=(EventParamName)
OS_SetEventParameter__IIII_3C_2=cast=(EventParamType)
OS_SetEventParameter__IIII_3C_3=cast=(UInt32)
OS_SetEventParameter__IIII_3C_4=cast=(const void *)

OS_SetEventParameter__IIII_3S=
OS_SetEventParameter__IIII_3S_0=cast=(EventRef)
OS_SetEventParameter__IIII_3S_1=cast=(EventParamName)
OS_SetEventParameter__IIII_3S_2=cast=(EventParamType)
OS_SetEventParameter__IIII_3S_3=cast=(UInt32)
OS_SetEventParameter__IIII_3S_4=cast=(const void *)

OS_SetFontInfoForSelection=
OS_SetFontInfoForSelection_0=cast=(OSType)
OS_SetFontInfoForSelection_1=cast=(UInt32)
OS_SetFontInfoForSelection_2=cast=(void *)
OS_SetFontInfoForSelection_3=cast=(HIObjectRef)

OS_SetFrontProcess=
OS_SetFrontProcess_0=cast=(const ProcessSerialNumber *)

OS_SetFrontProcessWithOptions=
OS_SetFrontProcessWithOptions_0=cast=(const ProcessSerialNumber *)
OS_SetFrontProcessWithOptions_1=

OS_SetGWorld=
OS_SetGWorld_0=cast=(CGrafPtr)
OS_SetGWorld_1=cast=(GDHandle)

OS_SetItemMark=
OS_SetItemMark_0=cast=(MenuRef)
OS_SetItemMark_1=
OS_SetItemMark_2=

OS_SetKeyboardFocus=
OS_SetKeyboardFocus_0=cast=(WindowRef)
OS_SetKeyboardFocus_1=cast=(ControlRef)
OS_SetKeyboardFocus_2=cast=(ControlFocusPart)

OS_SetMenuCommandMark=
OS_SetMenuCommandMark_0=cast=(MenuRef)
OS_SetMenuCommandMark_1=cast=(MenuCommand)
OS_SetMenuCommandMark_2=cast=(UniChar)

OS_SetMenuFont=
OS_SetMenuFont_0=cast=(MenuRef)
OS_SetMenuFont_1=cast=(SInt16)
OS_SetMenuFont_2=cast=(UInt16)

OS_SetMenuItemCommandKey=
OS_SetMenuItemCommandKey_0=cast=(MenuRef)
OS_SetMenuItemCommandKey_1=cast=(MenuItemIndex)
OS_SetMenuItemCommandKey_2=cast=(Boolean)
OS_SetMenuItemCommandKey_3=cast=(UInt16)

OS_SetMenuItemHierarchicalMenu=
OS_SetMenuItemHierarchicalMenu_0=cast=(MenuRef)
OS_SetMenuItemHierarchicalMenu_1=cast=(MenuItemIndex)
OS_SetMenuItemHierarchicalMenu_2=cast=(MenuRef)

OS_SetMenuItemIconHandle=
OS_SetMenuItemIconHandle_0=cast=(MenuRef)
OS_SetMenuItemIconHandle_1=cast=(SInt16)
OS_SetMenuItemIconHandle_2=cast=(UInt8)
OS_SetMenuItemIconHandle_3=cast=(Handle)

OS_SetMenuItemKeyGlyph=
OS_SetMenuItemKeyGlyph_0=cast=(MenuRef)
OS_SetMenuItemKeyGlyph_1=cast=(SInt16)
OS_SetMenuItemKeyGlyph_2=cast=(SInt16)

OS_SetMenuItemModifiers=
OS_SetMenuItemModifiers_0=cast=(MenuRef)
OS_SetMenuItemModifiers_1=cast=(SInt16)
OS_SetMenuItemModifiers_2=cast=(UInt8)

OS_SetMenuItemRefCon=
OS_SetMenuItemRefCon_0=cast=(MenuRef)
OS_SetMenuItemRefCon_1=cast=(SInt16)
OS_SetMenuItemRefCon_2=cast=(UInt32)

OS_SetMenuItemTextWithCFString=
OS_SetMenuItemTextWithCFString_0=cast=(MenuRef)
OS_SetMenuItemTextWithCFString_1=cast=(MenuItemIndex)
OS_SetMenuItemTextWithCFString_2=cast=(CFStringRef)

OS_SetMenuTitleWithCFString=
OS_SetMenuTitleWithCFString_0=cast=(MenuRef)
OS_SetMenuTitleWithCFString_1=cast=(CFStringRef)

OS_SetOrigin=
OS_SetOrigin_0=cast=(short)
OS_SetOrigin_1=cast=(short)

OS_SetPort=
OS_SetPort_0=cast=(GrafPtr)

OS_SetPortBounds=
OS_SetPortBounds_0=cast=(CGrafPtr)
OS_SetPortBounds_1=cast=(const Rect *)

OS_SetPortWindowPort=
OS_SetPortWindowPort_0=cast=(WindowRef)

OS_SetPt=
OS_SetPt_0=cast=(Point *)
OS_SetPt_1=cast=(short)
OS_SetPt_2=cast=(short)

OS_SetRect=
OS_SetRect_0=cast=(Rect *)
OS_SetRect_1=cast=(short)
OS_SetRect_2=cast=(short)
OS_SetRect_3=cast=(short)
OS_SetRect_4=cast=(short)

OS_SetRectRgn=
OS_SetRectRgn_0=cast=(RgnHandle)
OS_SetRectRgn_1=cast=(short)
OS_SetRectRgn_2=cast=(short)
OS_SetRectRgn_3=cast=(short)
OS_SetRectRgn_4=cast=(short)

OS_SetRootMenu=
OS_SetRootMenu_0=cast=(MenuRef)

OS_SetThemeBackground=
OS_SetThemeBackground_0=cast=(ThemeBrush)
OS_SetThemeBackground_1=cast=(SInt16)
OS_SetThemeBackground_2=cast=(Boolean)

OS_SetThemeCursor=
OS_SetThemeCursor_0=cast=(ThemeCursor)

OS_SetThemeDrawingState=
OS_SetThemeDrawingState_0=cast=(ThemeDrawingState)
OS_SetThemeDrawingState_1=cast=(Boolean)

OS_SetThemeTextColor=
OS_SetThemeTextColor_0=
OS_SetThemeTextColor_1=
OS_SetThemeTextColor_2=

OS_SetThemeWindowBackground=
OS_SetThemeWindowBackground_0=cast=(WindowRef)
OS_SetThemeWindowBackground_1=cast=(ThemeBrush)
OS_SetThemeWindowBackground_2=cast=(Boolean)

OS_SetUpControlBackground=
OS_SetUpControlBackground_0=cast=(ControlRef)
OS_SetUpControlBackground_1=cast=(SInt16)
OS_SetUpControlBackground_2=cast=(Boolean)

OS_SetWRefCon=
OS_SetWRefCon_0=cast=(WindowRef)
OS_SetWRefCon_1=cast=(long)

OS_SetWindowActivationScope=
OS_SetWindowActivationScope_0=cast=(WindowRef)
OS_SetWindowActivationScope_1=cast=(WindowActivationScope)

OS_SetWindowBounds=
OS_SetWindowBounds_0=cast=(WindowRef)
OS_SetWindowBounds_1=cast=(WindowRegionCode)
OS_SetWindowBounds_2=cast=(Rect *)

OS_SetWindowDefaultButton=
OS_SetWindowDefaultButton_0=cast=(WindowRef)
OS_SetWindowDefaultButton_1=cast=(ControlRef)

OS_SetWindowGroup=
OS_SetWindowGroup_0=cast=(WindowRef)
OS_SetWindowGroup_1=cast=(WindowGroupRef)

OS_SetWindowGroupOwner=
OS_SetWindowGroupOwner_0=cast=(WindowGroupRef)
OS_SetWindowGroupOwner_1=cast=(WindowRef)

OS_SetWindowGroupParent=
OS_SetWindowGroupParent_0=cast=(WindowGroupRef)
OS_SetWindowGroupParent_1=cast=(WindowGroupRef)

OS_SetWindowModality=
OS_SetWindowModality_0=cast=(WindowRef)
OS_SetWindowModality_1=cast=(WindowModality)
OS_SetWindowModality_2=cast=(WindowRef)

OS_SetWindowTitleWithCFString=
OS_SetWindowTitleWithCFString_0=cast=(WindowRef)
OS_SetWindowTitleWithCFString_1=cast=(CFStringRef)

OS_ShowWindow=
OS_ShowWindow_0=cast=(WindowRef)

OS_SizeControl=
OS_SizeControl_0=cast=(ControlRef)
OS_SizeControl_1=cast=(SInt16)
OS_SizeControl_2=cast=(SInt16)

OS_SizeWindow=
OS_SizeWindow_0=cast=(WindowRef)
OS_SizeWindow_1=cast=(short)
OS_SizeWindow_2=cast=(short)
OS_SizeWindow_3=cast=(Boolean)

OS_StillDown=

OS_SyncCGContextOriginWithPort=
OS_SyncCGContextOriginWithPort_0=cast=(CGContextRef)
OS_SyncCGContextOriginWithPort_1=cast=(CGrafPtr)

OS_SysBeep=
OS_SysBeep_0=cast=(short)

OS_TXNActivate=
OS_TXNActivate_0=cast=(TXNObject)
OS_TXNActivate_1=cast=(TXNFrameID)
OS_TXNActivate_2=cast=(TXNScrollBarState)

OS_TXNAdjustCursor=
OS_TXNAdjustCursor_0=cast=(TXNObject)
OS_TXNAdjustCursor_1=cast=(RgnHandle)

OS_TXNClick=
OS_TXNClick_0=cast=(TXNObject)
OS_TXNClick_1=cast=(const EventRecord *)

OS_TXNCopy=
OS_TXNCopy_0=cast=(TXNObject)

OS_TXNCut=
OS_TXNCut_0=cast=(TXNObject)

OS_TXNDataSize=
OS_TXNDataSize_0=cast=(TXNObject)

OS_TXNDeleteObject=
OS_TXNDeleteObject_0=cast=(TXNObject)

OS_TXNDraw=
OS_TXNDraw_0=cast=(TXNObject)
OS_TXNDraw_1=cast=(GWorldPtr)

OS_TXNEchoMode=
OS_TXNEchoMode_0=cast=(TXNObject)
OS_TXNEchoMode_1=cast=(UniChar)
OS_TXNEchoMode_2=cast=(TextEncoding)
OS_TXNEchoMode_3=cast=(Boolean)

OS_TXNFocus=
OS_TXNFocus_0=cast=(TXNObject)
OS_TXNFocus_1=cast=(Boolean)

OS_TXNGetData=
OS_TXNGetData_0=cast=(TXNObject)
OS_TXNGetData_1=cast=(TXNOffset)
OS_TXNGetData_2=cast=(TXNOffset)
OS_TXNGetData_3=cast=(Handle *)

OS_TXNGetLineCount=
OS_TXNGetLineCount_0=cast=(TXNObject)
OS_TXNGetLineCount_1=cast=(ItemCount *)

OS_TXNGetLineMetrics=
OS_TXNGetLineMetrics_0=cast=(TXNObject)
OS_TXNGetLineMetrics_1=cast=(UInt32)
OS_TXNGetLineMetrics_2=cast=(Fixed *)
OS_TXNGetLineMetrics_3=cast=(Fixed *)

OS_TXNGetRectBounds=
OS_TXNGetRectBounds_0=cast=(TXNObject)
OS_TXNGetRectBounds_1=cast=(Rect *)
OS_TXNGetRectBounds_2=cast=(TXNLongRect *)
OS_TXNGetRectBounds_3=cast=(TXNLongRect *)

OS_TXNGetSelection=
OS_TXNGetSelection_0=cast=(TXNObject)
OS_TXNGetSelection_1=cast=(TXNOffset *)
OS_TXNGetSelection_2=cast=(TXNOffset *)

OS_TXNGetTXNObjectControls=
OS_TXNGetTXNObjectControls_0=cast=(TXNObject)
OS_TXNGetTXNObjectControls_1=cast=(ItemCount)
OS_TXNGetTXNObjectControls_2=cast=(const TXNControlTag *)
OS_TXNGetTXNObjectControls_3=cast=(TXNControlData *)

OS_TXNGetViewRect=
OS_TXNGetViewRect_0=cast=(TXNObject)
OS_TXNGetViewRect_1=

OS_TXNInitTextension=
OS_TXNInitTextension_0=cast=(const TXNMacOSPreferredFontDescription *)
OS_TXNInitTextension_1=cast=(ItemCount)
OS_TXNInitTextension_2=cast=(TXNInitOptions)

OS_TXNNewObject=
OS_TXNNewObject_0=cast=(const FSSpec *)
OS_TXNNewObject_1=cast=(WindowRef)
OS_TXNNewObject_2=cast=(const Rect *)
OS_TXNNewObject_3=cast=(TXNFrameOptions)
OS_TXNNewObject_4=cast=(TXNFrameType)
OS_TXNNewObject_5=cast=(TXNFileType)
OS_TXNNewObject_6=cast=(TXNPermanentTextEncodingType)
OS_TXNNewObject_7=cast=(TXNObject *)
OS_TXNNewObject_8=cast=(TXNFrameID *)
OS_TXNNewObject_9=cast=(TXNObjectRefcon)

OS_TXNOffsetToPoint=
OS_TXNOffsetToPoint_0=cast=(TXNObject)
OS_TXNOffsetToPoint_1=cast=(TXNOffset)
OS_TXNOffsetToPoint_2=cast=(Point *)

OS_TXNPaste=
OS_TXNPaste_0=cast=(TXNObject)

OS_TXNPointToOffset=
OS_TXNPointToOffset_0=cast=(TXNObject)
OS_TXNPointToOffset_1=flags=struct
OS_TXNPointToOffset_2=cast=(TXNOffset *)

OS_TXNSelectAll=
OS_TXNSelectAll_0=cast=(TXNObject)

OS_TXNSetBackground=
OS_TXNSetBackground_0=cast=(TXNObject)
OS_TXNSetBackground_1=cast=(const TXNBackground *)

OS_TXNSetData=
OS_TXNSetData_0=cast=(TXNObject)
OS_TXNSetData_1=cast=(TXNDataType)
OS_TXNSetData_2=cast=(const void *)
OS_TXNSetData_3=cast=(ByteCount)
OS_TXNSetData_4=cast=(TXNOffset)
OS_TXNSetData_5=cast=(TXNOffset)

OS_TXNSetFrameBounds=
OS_TXNSetFrameBounds_0=cast=(TXNObject)
OS_TXNSetFrameBounds_1=cast=(SInt32)
OS_TXNSetFrameBounds_2=cast=(SInt32)
OS_TXNSetFrameBounds_3=cast=(SInt32)
OS_TXNSetFrameBounds_4=cast=(SInt32)
OS_TXNSetFrameBounds_5=cast=(TXNFrameID)

OS_TXNSetRectBounds=
OS_TXNSetRectBounds_0=cast=(TXNObject)
OS_TXNSetRectBounds_1=cast=(Rect *)
OS_TXNSetRectBounds_2=cast=(TXNLongRect *)
OS_TXNSetRectBounds_3=cast=(Boolean)

OS_TXNSetSelection=
OS_TXNSetSelection_0=cast=(TXNObject)
OS_TXNSetSelection_1=cast=(TXNOffset)
OS_TXNSetSelection_2=cast=(TXNOffset)

OS_TXNSetTXNObjectControls=
OS_TXNSetTXNObjectControls_0=cast=(TXNObject)
OS_TXNSetTXNObjectControls_1=cast=(Boolean)
OS_TXNSetTXNObjectControls_2=cast=(ItemCount)
OS_TXNSetTXNObjectControls_3=cast=(const TXNControlTag *)
OS_TXNSetTXNObjectControls_4=cast=(const TXNControlData *)

OS_TXNSetTypeAttributes=
OS_TXNSetTypeAttributes_0=cast=(TXNObject)
OS_TXNSetTypeAttributes_1=cast=(ItemCount)
OS_TXNSetTypeAttributes_2=cast=(const TXNTypeAttributes *)
OS_TXNSetTypeAttributes_3=cast=(TXNOffset)
OS_TXNSetTypeAttributes_4=cast=(TXNOffset)

OS_TXNShowSelection=
OS_TXNShowSelection_0=cast=(TXNObject)
OS_TXNShowSelection_1=cast=(Boolean)

OS_TestControl=
OS_TestControl_0=cast=(ControlRef)
OS_TestControl_1=cast=(Point *),flags=struct

OS_TextFace=
OS_TextFace_0=cast=(StyleParameter)

OS_TextFont=
OS_TextFont_0=cast=(short)

OS_TextMode=
OS_TextMode_0=cast=(short)

OS_TextSize=
OS_TextSize_0=cast=(short)

OS_TextWidth=
OS_TextWidth_0=cast=(const void *)
OS_TextWidth_1=cast=(short)
OS_TextWidth_2=cast=(short)

OS_TrackDrag=
OS_TrackDrag_0=cast=(DragRef)
OS_TrackDrag_1=cast=(const EventRecord *)
OS_TrackDrag_2=cast=(RgnHandle)

OS_TrackMouseLocationWithOptions=
OS_TrackMouseLocationWithOptions_0=cast=(GrafPtr)
OS_TrackMouseLocationWithOptions_1=cast=(OptionBits)
OS_TrackMouseLocationWithOptions_2=cast=(EventTimeout)
OS_TrackMouseLocationWithOptions_3=cast=(Point *)
OS_TrackMouseLocationWithOptions_4=cast=(UInt32 *)
OS_TrackMouseLocationWithOptions_5=cast=(MouseTrackingResult *)

OS_UnionRect=
OS_UnionRect_0=flags=no_out
OS_UnionRect_1=flags=no_out
OS_UnionRect_2=flags=no_in

OS_UnionRgn=
OS_UnionRgn_0=cast=(RgnHandle)
OS_UnionRgn_1=cast=(RgnHandle)
OS_UnionRgn_2=cast=(RgnHandle)

OS_UnlockPortBits=
OS_UnlockPortBits_0=cast=(GrafPtr)

OS_UpdateControls=
OS_UpdateControls_0=cast=(WindowRef)
OS_UpdateControls_1=cast=(RgnHandle)

OS_UpdateDataBrowserItems=
OS_UpdateDataBrowserItems_0=cast=(ControlRef)
OS_UpdateDataBrowserItems_1=cast=(DataBrowserItemID)
OS_UpdateDataBrowserItems_2=cast=(UInt32)
OS_UpdateDataBrowserItems_3=cast=(const DataBrowserItemID *)
OS_UpdateDataBrowserItems_4=cast=(DataBrowserPropertyID)
OS_UpdateDataBrowserItems_5=cast=(DataBrowserPropertyID)

OS_UpgradeScriptInfoToTextEncoding=
OS_UpgradeScriptInfoToTextEncoding_0=
OS_UpgradeScriptInfoToTextEncoding_1=
OS_UpgradeScriptInfoToTextEncoding_2=
OS_UpgradeScriptInfoToTextEncoding_3=
OS_UpgradeScriptInfoToTextEncoding_4=

OS_WaitMouseMoved=
OS_WaitMouseMoved_0=flags=struct

OS_X2Fix=
OS_X2Fix_0=

OS_ZoomWindowIdeal=
OS_ZoomWindowIdeal_0=cast=(WindowRef)
OS_ZoomWindowIdeal_1=cast=(WindowPartCode)
OS_ZoomWindowIdeal_2=cast=(Point *)

OS_kHIViewWindowContentID=flags=const address

OS_kPMDocumentFormatPDF=flags=const

OS_kPMGraphicsContextCoreGraphics=flags=const

OS_memcpy__III=
OS_memcpy__III_0=cast=(void *)
OS_memcpy__III_1=cast=(const void *)
OS_memcpy__III_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_ATSUTab_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_BitMap_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Cursor_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_EventRecord_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_HMHelpContentRec_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_PixMap_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_RGBColor_2I_2=cast=(size_t)

OS_memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I=
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I_0=cast=(void *)
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I_1=cast=(const void *),flags=no_out
OS_memcpy__ILorg_eclipse_swt_internal_carbon_Rect_2I_2=cast=(size_t)

OS_memcpy__I_3BI=
OS_memcpy__I_3BI_0=cast=(void *)
OS_memcpy__I_3BI_1=cast=(const void *),flags=critical no_out
OS_memcpy__I_3BI_2=cast=(size_t)

OS_memcpy__I_3CI=
OS_memcpy__I_3CI_0=cast=(void *)
OS_memcpy__I_3CI_1=cast=(const void *),flags=critical no_out
OS_memcpy__I_3CI_2=cast=(size_t)

OS_memcpy__I_3II=
OS_memcpy__I_3II_0=cast=(void *)
OS_memcpy__I_3II_1=cast=(const void *),flags=critical no_out
OS_memcpy__I_3II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_ATSTrapezoid_2II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_FontSelectionQDStyle_2II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_GDevice_2II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_HMHelpContentRec_2II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_PixMap_2II_2=cast=(size_t)

OS_memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II=
OS_memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II_0=cast=(void *),flags=no_in
OS_memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II_1=cast=(const void *)
OS_memcpy__Lorg_eclipse_swt_internal_carbon_Rect_2II_2=cast=(size_t)

OS_memcpy___3BII=
OS_memcpy___3BII_0=cast=(void *),flags=critical no_in
OS_memcpy___3BII_1=cast=(const void *)
OS_memcpy___3BII_2=cast=(size_t)

OS_memcpy___3B_3CI=
OS_memcpy___3B_3CI_0=cast=(void *),flags=critical no_in
OS_memcpy___3B_3CI_1=cast=(const void *),flags=critical no_out
OS_memcpy___3B_3CI_2=cast=(size_t)

OS_memcpy___3CII=
OS_memcpy___3CII_0=cast=(void *),flags=critical no_in
OS_memcpy___3CII_1=cast=(const void *)
OS_memcpy___3CII_2=cast=(size_t)

OS_memcpy___3C_3BI=
OS_memcpy___3C_3BI_0=cast=(void *),flags=critical no_in
OS_memcpy___3C_3BI_1=cast=(const void *),flags=critical no_out
OS_memcpy___3C_3BI_2=cast=(size_t)

OS_memcpy___3FII=
OS_memcpy___3FII_0=cast=(void *),flags=critical no_in
OS_memcpy___3FII_1=cast=(const void *)
OS_memcpy___3FII_2=cast=(size_t)

OS_memcpy___3III=
OS_memcpy___3III_0=cast=(void *),flags=critical no_in
OS_memcpy___3III_1=cast=(const void *)
OS_memcpy___3III_2=cast=(size_t)

OS_memset=
OS_memset_0=cast=(void *)
OS_memset_1=
OS_memset_2=


org_eclipse_swt_internal_carbon_PMRect=
PMRect_top=cast=(double)
PMRect_left=cast=(double)
PMRect_bottom=cast=(double)
PMRect_right=cast=(double)

org_eclipse_swt_internal_carbon_PMResolution=
PMResolution_hRes=
PMResolution_vRes=

org_eclipse_swt_internal_carbon_PixMap=
PixMap_pmVersion=
PixMap_packType=
PixMap_packSize=
PixMap_hRes=
PixMap_vRes=
PixMap_pixelType=
PixMap_pixelSize=
PixMap_cmpCount=
PixMap_cmpSize=
PixMap_pixelFormat=
PixMap_pmTable=cast=(CTabHandle)
PixMap_pmExt=cast=(void *)

org_eclipse_swt_internal_carbon_Point=
Point_v=
Point_h=

org_eclipse_swt_internal_carbon_RGBColor=
RGBColor_red=
RGBColor_green=
RGBColor_blue=

org_eclipse_swt_internal_carbon_Rect=
Rect_top=
Rect_left=
Rect_bottom=
Rect_right=

org_eclipse_swt_internal_carbon_TXNBackground=
TXNBackground_bgType=
TXNBackground_bg_red=accessor=bg.color.red
TXNBackground_bg_green=accessor=bg.color.green
TXNBackground_bg_blue=accessor=bg.color.blue

org_eclipse_swt_internal_carbon_TXNLongRect=
TXNLongRect_top=
TXNLongRect_left=
TXNLongRect_bottom=
TXNLongRect_right=

org_eclipse_swt_internal_carbon_ThemeButtonDrawInfo=
ThemeButtonDrawInfo_state=cast=(ThemeDrawState)
ThemeButtonDrawInfo_value=cast=(ThemeButtonValue)
ThemeButtonDrawInfo_adornment=cast=(ThemeButtonAdornment)

Back to the top