1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
|
{
File: HTMLRendering/HTMLRendering.h
Contains: HTML Rendering Library Interfaces.
Version: HTMLRenderingLib-75~68
Copyright: © 1999-2008 by Apple Computer, Inc., all rights reserved
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://www.freepascal.org/bugs.html
}
{ Pascal Translation Updated: Jonas Maebe, <jonas@freepascal.org>, October 2009 }
{
Modified for use with Free Pascal
Version 308
Please report any bugs to <gpc@microbizz.nl>
}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
{$mode macpas}
{$packenum 1}
{$macro on}
{$inline on}
{$calling mwpascal}
unit HTMLRendering;
interface
{$setc UNIVERSAL_INTERFACES_VERSION := $0400}
{$setc GAP_INTERFACES_VERSION := $0308}
{$ifc not defined USE_CFSTR_CONSTANT_MACROS}
{$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
{$endc}
{$ifc defined CPUPOWERPC and defined CPUI386}
{$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
{$endc}
{$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
{$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
{$endc}
{$ifc not defined __ppc__ and defined CPUPOWERPC32}
{$setc __ppc__ := 1}
{$elsec}
{$setc __ppc__ := 0}
{$endc}
{$ifc not defined __ppc64__ and defined CPUPOWERPC64}
{$setc __ppc64__ := 1}
{$elsec}
{$setc __ppc64__ := 0}
{$endc}
{$ifc not defined __i386__ and defined CPUI386}
{$setc __i386__ := 1}
{$elsec}
{$setc __i386__ := 0}
{$endc}
{$ifc not defined __x86_64__ and defined CPUX86_64}
{$setc __x86_64__ := 1}
{$elsec}
{$setc __x86_64__ := 0}
{$endc}
{$ifc not defined __arm__ and defined CPUARM}
{$setc __arm__ := 1}
{$elsec}
{$setc __arm__ := 0}
{$endc}
{$ifc defined cpu64}
{$setc __LP64__ := 1}
{$elsec}
{$setc __LP64__ := 0}
{$endc}
{$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
{$error Conflicting definitions for __ppc__ and __i386__}
{$endc}
{$ifc defined __ppc__ and __ppc__}
{$setc TARGET_CPU_PPC := TRUE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __ppc64__ and __ppc64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := TRUE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __i386__ and __i386__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := TRUE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := FALSE}
{$ifc defined(iphonesim)}
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := TRUE}
{$elsec}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$endc}
{$elifc defined __x86_64__ and __x86_64__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := TRUE}
{$setc TARGET_CPU_ARM := FALSE}
{$setc TARGET_OS_MAC := TRUE}
{$setc TARGET_OS_IPHONE := FALSE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elifc defined __arm__ and __arm__}
{$setc TARGET_CPU_PPC := FALSE}
{$setc TARGET_CPU_PPC64 := FALSE}
{$setc TARGET_CPU_X86 := FALSE}
{$setc TARGET_CPU_X86_64 := FALSE}
{$setc TARGET_CPU_ARM := TRUE}
{ will require compiler define when/if other Apple devices with ARM cpus ship }
{$setc TARGET_OS_MAC := FALSE}
{$setc TARGET_OS_IPHONE := TRUE}
{$setc TARGET_IPHONE_SIMULATOR := FALSE}
{$elsec}
{$error __ppc__ nor __ppc64__ nor __i386__ nor __x86_64__ nor __arm__ is defined.}
{$endc}
{$ifc defined __LP64__ and __LP64__ }
{$setc TARGET_CPU_64 := TRUE}
{$elsec}
{$setc TARGET_CPU_64 := FALSE}
{$endc}
{$ifc defined FPC_BIG_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := TRUE}
{$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
{$elifc defined FPC_LITTLE_ENDIAN}
{$setc TARGET_RT_BIG_ENDIAN := FALSE}
{$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
{$elsec}
{$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
{$endc}
{$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
{$setc CALL_NOT_IN_CARBON := FALSE}
{$setc OLDROUTINENAMES := FALSE}
{$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
{$setc OPAQUE_UPP_TYPES := TRUE}
{$setc OTCARBONAPPLICATION := TRUE}
{$setc OTKERNEL := FALSE}
{$setc PM_USE_SESSION_APIS := TRUE}
{$setc TARGET_API_MAC_CARBON := TRUE}
{$setc TARGET_API_MAC_OS8 := FALSE}
{$setc TARGET_API_MAC_OSX := TRUE}
{$setc TARGET_CARBON := TRUE}
{$setc TARGET_CPU_68K := FALSE}
{$setc TARGET_CPU_MIPS := FALSE}
{$setc TARGET_CPU_SPARC := FALSE}
{$setc TARGET_OS_UNIX := FALSE}
{$setc TARGET_OS_WIN32 := FALSE}
{$setc TARGET_RT_MAC_68881 := FALSE}
{$setc TARGET_RT_MAC_CFM := FALSE}
{$setc TARGET_RT_MAC_MACHO := TRUE}
{$setc TYPED_FUNCTION_POINTERS := TRUE}
{$setc TYPE_BOOL := FALSE}
{$setc TYPE_EXTENDED := FALSE}
{$setc TYPE_LONGLONG := TRUE}
uses MacTypes,CFBase,QuickdrawTypes,Events,Files,CodeFragments,Controls,CFData,CFString,CFURL,HIObject;
{$endc} {not MACOSALLINCLUDE}
{$ifc TARGET_OS_MAC}
{
HTMLRenderingLib has been deprecated. Please use WebKit instead for your OS X Carbon web widget needs.
}
type
HRReference = ^OpaqueHRReference; { an opaque type }
OpaqueHRReference = record end;
{
* HRGetHTMLRenderingLibVersion() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetHTMLRenderingLibVersion( var returnVers: NumVersion ): OSStatus; external name '_HRGetHTMLRenderingLibVersion';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
const
kHRRendererHTML32Type = FourCharCode('ht32'); { HTML 3.2 }
{
* HRNewReference() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRNewReference( var hrRef: HRReference; rendererType: OSType; grafPtr_: GrafPtr ): OSStatus; external name '_HRNewReference';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRNewReferenceInWindow() *** DEPRECATED ***
*
* Discussion:
* Use this API from a Carbon App. All the contrrols created by the
* HTML renderer will be embedded in the root control of the window
* specified by the window ref.
*
* Parameters:
*
* hrRef:
* Pointer to the new reference created and returned by the
* renderer.
*
* rendererType:
* Type of the renderer e.g. kHRRendererHTML32Type. Only this type
* is supported for now.
*
* inWindowRef:
* Reference to the window for which rendering area will be
* specified.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRNewReferenceInWindow( var hrRef: HRReference; rendererType: OSType; inWindowRef: WindowRef ): OSStatus; external name '_HRNewReferenceInWindow';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRDisposeReference() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRDisposeReference( hrRef: HRReference ): OSStatus; external name '_HRDisposeReference';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRFreeMemory() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRFreeMemory( inBytesNeeded: Size ): SInt32; external name '_HRFreeMemory';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ System level notifications }
{
* HRScreenConfigurationChanged() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRScreenConfigurationChanged; external name '_HRScreenConfigurationChanged';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRIsHREvent() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRIsHREvent( const (*var*) eventRecord_: EventRecord ): Boolean; external name '_HRIsHREvent';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ Drawing }
{
* HRSetGrafPtr() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRSetGrafPtr( hrRef: HRReference; grafPtr_: GrafPtr ): OSStatus; external name '_HRSetGrafPtr';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRSetWindowRef() *** DEPRECATED ***
*
* Discussion:
* Use this API from a Carbon App. All the contrrols created by the
* HTML renderer will be moved in the root control of the window
* specified by the window ref. All the drawing will now happen in
* the specified window.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* windowRef:
* new Reference to the window to be attached to the above hrRef.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRSetWindowRef( hrRef: HRReference; windowRef_: WindowRef ): OSStatus; external name '_HRSetWindowRef';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRSetEmbeddingControl() *** DEPRECATED ***
*
* Discussion:
* Use this API to tell the HTML Renderer to embed all the controls
* it has created so far and the new controls it creates after this
* call to be embedded in the given control. Useful if you wish to
* have an HTML displayed with in your dialog. e.g. Software Update
* needs this.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* controlRef:
* all the future controls created by renderer are embeded in this
* controlRef.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRSetEmbeddingControl( hrRef: HRReference; controlRef_: ControlRef ): OSStatus; external name '_HRSetEmbeddingControl';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRActivate() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRActivate( hrRef: HRReference ): OSStatus; external name '_HRActivate';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRDeactivate() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRDeactivate( hrRef: HRReference ): OSStatus; external name '_HRDeactivate';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRDraw() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRDraw( hrRef: HRReference; updateRgnH: RgnHandle ): OSStatus; external name '_HRDraw';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRDrawInPort() *** DEPRECATED ***
*
* Discussion:
* Use this API from a Carbon App. All the drawing will now happen
* in the specified port. This is the API you want to use to draw in
* an offscreen port, for example when printing. You could also use
* this API to draw in an on screen port.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* updateRgnH:
* Region to be updated.
*
* grafPtr:
* A graf pointer to render HTML into.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRDrawInPort( hrRef: HRReference; updateRgnH: RgnHandle; grafPtr: CGrafPtr ): OSStatus; external name '_HRDrawInPort';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRSetRenderingRect() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRSetRenderingRect( hrRef: HRReference; const (*var*) renderingRect: Rect ): OSStatus; external name '_HRSetRenderingRect';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetRenderedImageSize() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetRenderedImageSize( hrRef: HRReference; var renderingSize: Point ): OSStatus; external name '_HRGetRenderedImageSize';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetRenderedImageSize32() *** DEPRECATED ***
*
* Discussion:
* Use this API when the rendered image could have coordinates
* larger than what SInt16 can hold.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* height:
* Height of the image is returned in this parameter.
*
* width:
* Width of the image is returned in this parameter.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetRenderedImageSize32( hrRef: HRReference; var height: UInt32; var width: UInt32 ): OSStatus; external name '_HRGetRenderedImageSize32';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRScrollToLocation() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRScrollToLocation( hrRef: HRReference; var location: Point ): OSStatus; external name '_HRScrollToLocation';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRScrollToImageLocation32() *** DEPRECATED ***
*
* Discussion:
* Use this API when specifying location to scroll to. Location is
* specified in image space.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* h:
* Horizontal location.
*
* v:
* Vertical location.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRScrollToImageLocation32( hrRef: HRReference; h: SInt32; v: SInt32 ): OSStatus; external name '_HRScrollToImageLocation32';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRForceQuickdraw() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRForceQuickdraw( hrRef: HRReference; forceQuickdraw: Boolean ): OSStatus; external name '_HRForceQuickdraw';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
type
HRScrollbarState = SInt16;
const
eHRScrollbarOn = 0;
eHRScrollbarOff = 1;
eHRScrollbarAuto = 2;
{
* HRSetScrollbarState() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRSetScrollbarState( hrRef: HRReference; hScrollbarState: HRScrollbarState; vScrollbarState: HRScrollbarState ): OSStatus; external name '_HRSetScrollbarState';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRSetDrawBorder() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRSetDrawBorder( hrRef: HRReference; drawBorder: Boolean ): OSStatus; external name '_HRSetDrawBorder';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRSetGrowboxCutout() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRSetGrowboxCutout( hrRef: HRReference; allowCutout: Boolean ): OSStatus; external name '_HRSetGrowboxCutout';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ Navigation }
{
* HRGoToFile() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGoToFile( hrRef: HRReference; const (*var*) fsspec_: FSSpec; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToFile';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGoToURL( hrRef: HRReference; url: ConstCStringPtr; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToAnchor() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGoToAnchor( hrRef: HRReference; anchorName: ConstCStringPtr ): OSStatus; external name '_HRGoToAnchor';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToPtr() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGoToPtr( hrRef: HRReference; buffer: CStringPtr; bufferSize: UInt32; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToPtr';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToFSRef() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGoToFile,
* HRGoToURL, HRGoToAnchor and HRGoToPtr. These APIs are same in
* behavior with their old counter parts. The only difference is
* that they take FSRef, CFURLRef, CFString, and CFData as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* fref:
* Reference to HTML file that is be opened and rendered.
*
* addToHistory:
* true if this file URL should be added to history.
*
* forceRefresh:
* true if the rendering area should be refreshed.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGoToFSRef( hrRef: HRReference; const (*var*) fref: FSRef; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToFSRef';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToCFURL() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGoToFile,
* HRGoToURL, HRGoToAnchor and HRGoToPtr. These APIs are same in
* behavior with their old counter parts. The only difference is
* that they take FSRef, CFURLRef, CFString, and CFData as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* url:
* Reference to url that is be rendered.
*
* addToHistory:
* true if this URL should be added to history.
*
* forceRefresh:
* true if the rendering area should be refreshed.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGoToCFURL( hrRef: HRReference; url: CFURLRef; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToCFURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToAnchorCFString() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGoToFile,
* HRGoToURL, HRGoToAnchor and HRGoToPtr. These APIs are same in
* behavior with their old counter parts. The only difference is
* that they take FSRef, CFURLRef, CFString, and CFData as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* anchorName:
* Name of the anchor to be displayed.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGoToAnchorCFString( hrRef: HRReference; anchorName: CFStringRef ): OSStatus; external name '_HRGoToAnchorCFString';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGoToData() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGoToFile,
* HRGoToURL, HRGoToAnchor and HRGoToPtr. These APIs are same in
* behavior with their old counter parts. The only difference is
* that they take FSRef, CFURLRef, CFString, and CFData as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* data:
* Reference to data in the memory that is be rendered.
*
* addToHistory:
* true if this file URL should be added to history.
*
* forceRefresh:
* true if the rendering area should be refreshed.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGoToData( hrRef: HRReference; data: CFDataRef; addToHistory: Boolean; forceRefresh: Boolean ): OSStatus; external name '_HRGoToData';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ Accessors }
{ either file url or url of <base> tag }
{
* HRGetRootURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetRootURL( hrRef: HRReference; rootURLH: Handle ): OSStatus; external name '_HRGetRootURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ url of <base> tag }
{
* HRGetBaseURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetBaseURL( hrRef: HRReference; baseURLH: Handle ): OSStatus; external name '_HRGetBaseURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ file url }
{
* HRGetHTMLURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetHTMLURL( hrRef: HRReference; HTMLURLH: Handle ): OSStatus; external name '_HRGetHTMLURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetTitle() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetTitle( hrRef: HRReference; title: StringPtr ): OSStatus; external name '_HRGetTitle';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetHTMLFile() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRGetHTMLFile( hrRef: HRReference; var fsspec_: FSSpec ): OSStatus; external name '_HRGetHTMLFile';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetRootURLAsCFString() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGetRootURL,
* HRGetBaseURL, HRGetHTMLURL, HRGetTitle and HRGetHTMLFile. These
* APIs are same in behavior with their old counter parts. The only
* difference is that they take CFString, CFURLRef, and FSRef as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* rootString:
* Get CFString equivalent for the root url.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetRootURLAsCFString( hrRef: HRReference; var rootString: CFStringRef ): OSStatus; external name '_HRGetRootURLAsCFString';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetBaseURLAsCFString() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGetRootURL,
* HRGetBaseURL, HRGetHTMLURL, HRGetTitle and HRGetHTMLFile. These
* APIs are same in behavior with their old counter parts. The only
* difference is that they take CFString, CFURLRef, and FSRef as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* baseString:
* Get CFString equivalent for the base url.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetBaseURLAsCFString( hrRef: HRReference; var baseString: CFStringRef ): OSStatus; external name '_HRGetBaseURLAsCFString';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetHTMLURLAsCFURL() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGetRootURL,
* HRGetBaseURL, HRGetHTMLURL, HRGetTitle and HRGetHTMLFile. These
* APIs are same in behavior with their old counter parts. The only
* difference is that they take CFString, CFURLRef, and FSRef as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* theURL:
* Get currently displayed HTML as a CFURL.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetHTMLURLAsCFURL( hrRef: HRReference; var theURL: CFURLRef ): OSStatus; external name '_HRGetHTMLURLAsCFURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetTitleAsCFString() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGetRootURL,
* HRGetBaseURL, HRGetHTMLURL, HRGetTitle and HRGetHTMLFile. These
* APIs are same in behavior with their old counter parts. The only
* difference is that they take CFString, CFURLRef, and FSRef as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* title:
* Get title of the currently displayed HTML as a CFString.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetTitleAsCFString( hrRef: HRReference; var title: CFStringRef ): OSStatus; external name '_HRGetTitleAsCFString';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRGetHTMLFileAsFSRef() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using HRGetRootURL,
* HRGetBaseURL, HRGetHTMLURL, HRGetTitle and HRGetHTMLFile. These
* APIs are same in behavior with their old counter parts. The only
* difference is that they take CFString, CFURLRef, and FSRef as
* parameters.
*
* Parameters:
*
* hrRef:
* Reference to the renderer object.
*
* fref:
* Get currently displayed HTML as a FSRef.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRGetHTMLFileAsFSRef( hrRef: HRReference; var fref: FSRef ): OSStatus; external name '_HRGetHTMLFileAsFSRef';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ Utilities }
{
* HRUtilCreateFullURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRUtilCreateFullURL( rootURL: ConstCStringPtr; linkURL: ConstCStringPtr; fullURLH: Handle ): OSStatus; external name '_HRUtilCreateFullURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUtilGetFSSpecFromURL() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRUtilGetFSSpecFromURL( rootURL: ConstCStringPtr; linkURL: ConstCStringPtr; var destSpec: FSSpec ): OSStatus; external name '_HRUtilGetFSSpecFromURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{ urlHandle should be valid on input }
{
* HRUtilGetURLFromFSSpec() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
function HRUtilGetURLFromFSSpec( const (*var*) fsspec_: FSSpec; urlHandle: Handle ): OSStatus; external name '_HRUtilGetURLFromFSSpec';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUtilCreateFullCFURL() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using
* HRUtilCreateFullURL, HRUtilGetFSSpecFromURL,
* HRUtilGetURLFromFSSpec. These APIs are same in behavior with
* their old counter parts. The only difference is that they take
* CFURLRef, and FSRef as parameters.
*
* Parameters:
*
* rootString:
* a CFString for the root.
*
* linkString:
* a CFString for a partial link.
*
* url:
* Fully qualified URL is returned after attaching a link string
* to the root.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRUtilCreateFullCFURL( rootString: CFStringRef; linkString: CFStringRef; var url: CFURLRef ): OSStatus; external name '_HRUtilCreateFullCFURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUtilGetFSRefFromURL() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using
* HRUtilCreateFullURL, HRUtilGetFSSpecFromURL,
* HRUtilGetURLFromFSSpec. These APIs are same in behavior with
* their old counter parts. The only difference is that they take
* CFURLRef, and FSRef as parameters.
*
* Parameters:
*
* rootString:
* a CFString for the root.
*
* linkString:
* a CFString for a partial link.
*
* destRef:
* File reference is returned for the complete path created after
* attaching link string to the root. If File does not exist,
* fnfErr is returned as a function result.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRUtilGetFSRefFromURL( rootString: CFStringRef; linkString: CFStringRef; var destRef: FSRef ): OSStatus; external name '_HRUtilGetFSRefFromURL';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUtilGetURLFromFSRef() *** DEPRECATED ***
*
* Discussion:
* Use these API from a Carbon App instead of using
* HRUtilCreateFullURL, HRUtilGetFSSpecFromURL,
* HRUtilGetURLFromFSSpec. These APIs are same in behavior with
* their old counter parts. The only difference is that they take
* CFURLRef, and FSRef as parameters.
*
* Parameters:
*
* fileRef:
* Refernce to a file whose URL is desired.
*
* url:
* a fully qualified URL is returned in this parameter. The
* returned URL gives the path of the file specified in the above
* parameter.
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function HRUtilGetURLFromFSRef( const (*var*) fileRef: FSRef; var url: CFURLRef ): OSStatus; external name '_HRUtilGetURLFromFSRef';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
Visited links
If you register a function here, it will be called to determine
whether or not the given URL has been visited. It should return
true if the URL has been visited.
In addition to the URLs that the application may add to the list
of visited links, it should also add URLs that the user clicks
on. These URLs can be caught by the "add URL to history" callback
below.
}
type
HRWasURLVisitedProcPtr = function( url: ConstCStringPtr; refCon: UnivPtr ): Boolean;
HRWasURLVisitedUPP = HRWasURLVisitedProcPtr;
{
* HRRegisterWasURLVisitedUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRRegisterWasURLVisitedUPP( inWasURLVisitedUPP: HRWasURLVisitedUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterWasURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterWasURLVisitedUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRUnregisterWasURLVisitedUPP( hrRef: HRReference ); external name '_HRUnregisterWasURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
Use these API from a Carbon App instead of using HRRegisterWasURLVisitedUPP, HRUnregisterWasURLVisitedUPP.
These APIs are same in behavior with their old counter parts. The only difference is that they take
CFURLRef as parameters.
}
type
HRWasCFURLVisitedProcPtr = function( url: CFURLRef; refCon: UnivPtr ): Boolean;
HRWasCFURLVisitedUPP = HRWasCFURLVisitedProcPtr;
{
* HRRegisterWasCFURLVisitedUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRRegisterWasCFURLVisitedUPP( inWasCFURLVisitedUPP: HRWasCFURLVisitedUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterWasCFURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterWasCFURLVisitedUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRUnregisterWasCFURLVisitedUPP( hrRef: HRReference ); external name '_HRUnregisterWasCFURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
New URL
If you register a function here, it will be called every time
the renderer is going to display a new URL. A few examples of how
you might use this include...
(a) maintaining a history of URLs
(b) maintainging a list of visited links
(c) setting a window title based on the new URL
}
type
HRNewURLProcPtr = function( url: ConstCStringPtr; targetFrame: ConstCStringPtr; addToHistory: Boolean; refCon: UnivPtr ): OSStatus;
HRNewURLUPP = HRNewURLProcPtr;
{
* HRRegisterNewURLUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRRegisterNewURLUPP( inNewURLUPP: HRNewURLUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterNewURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterNewURLUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRUnregisterNewURLUPP( hrRef: HRReference ); external name '_HRUnregisterNewURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
Use these API from a Carbon App instead of using HRRegisterNewURLUPP, HRUnregisterNewURLUPP.
These APIs are same in behavior with their old counter parts. The only difference is that they take
CFURLRef as parameters.
}
type
HRNewCFURLProcPtr = function( url: CFURLRef; targetString: CFStringRef; addToHistory: Boolean; refCon: UnivPtr ): OSStatus;
HRNewCFURLUPP = HRNewCFURLProcPtr;
{
* HRRegisterNewCFURLUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRRegisterNewCFURLUPP( inURLUPP: HRNewCFURLUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterNewCFURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterNewCFURLUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRUnregisterNewCFURLUPP( hrRef: HRReference ); external name '_HRUnregisterNewCFURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
URL to FSSpec function
If you register a function here, it will be called every time
the renderer is going to locate a file. The function will be
passed an enum indicating the type of file being asked for.
}
type
URLSourceType = UInt16;
const
kHRLookingForHTMLSource = 1;
kHRLookingForImage = 2;
kHRLookingForEmbedded = 3;
kHRLookingForImageMap = 4;
kHRLookingForFrame = 5;
type
HRURLToFSSpecProcPtr = function( rootURL: ConstCStringPtr; linkURL: ConstCStringPtr; var fsspec_: FSSpec; urlSourceType_: URLSourceType; refCon: UnivPtr ): OSStatus;
HRURLToFSSpecUPP = HRURLToFSSpecProcPtr;
{
* HRRegisterURLToFSSpecUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRRegisterURLToFSSpecUPP( inURLToFSSpecUPP: HRURLToFSSpecUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterURLToFSSpecUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterURLToFSSpecUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: in HTMLRenderingLib 1.0 and later
}
procedure HRUnregisterURLToFSSpecUPP( hrRef: HRReference ); external name '_HRUnregisterURLToFSSpecUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
Use these API from a Carbon App instead of using HRRegisterURLToFSSpecUPP, HRUnregisterURLToFSSpecUPP.
These APIs are same in behavior with their old counter parts. The only difference is that they take
FSRef as parameters.
}
type
HRURLToFSRefProcPtr = function( rootString: CFStringRef; linkString: CFStringRef; var fref: FSRef; urlSourceType_: URLSourceType; refCon: UnivPtr ): OSStatus;
HRURLToFSRefUPP = HRURLToFSRefProcPtr;
{
* HRRegisterURLToFSRefUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRRegisterURLToFSRefUPP( inURLToFSRefUPP: HRURLToFSRefUPP; hrRef: HRReference; inRefCon: UnivPtr ); external name '_HRRegisterURLToFSRefUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* HRUnregisterURLToFSRefUPP() *** DEPRECATED ***
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework but deprecated in 10.4
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure HRUnregisterURLToFSRefUPP( hrRef: HRReference ); external name '_HRUnregisterURLToFSRefUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRWasURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewHRWasURLVisitedUPP( userRoutine: HRWasURLVisitedProcPtr ): HRWasURLVisitedUPP; external name '_NewHRWasURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRWasCFURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function NewHRWasCFURLVisitedUPP( userRoutine: HRWasCFURLVisitedProcPtr ): HRWasCFURLVisitedUPP; external name '_NewHRWasCFURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRNewURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewHRNewURLUPP( userRoutine: HRNewURLProcPtr ): HRNewURLUPP; external name '_NewHRNewURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRNewCFURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function NewHRNewCFURLUPP( userRoutine: HRNewCFURLProcPtr ): HRNewCFURLUPP; external name '_NewHRNewCFURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRURLToFSSpecUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function NewHRURLToFSSpecUPP( userRoutine: HRURLToFSSpecProcPtr ): HRURLToFSSpecUPP; external name '_NewHRURLToFSSpecUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* NewHRURLToFSRefUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function NewHRURLToFSRefUPP( userRoutine: HRURLToFSRefProcPtr ): HRURLToFSRefUPP; external name '_NewHRURLToFSRefUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRWasURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeHRWasURLVisitedUPP( userUPP: HRWasURLVisitedUPP ); external name '_DisposeHRWasURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRWasCFURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure DisposeHRWasCFURLVisitedUPP( userUPP: HRWasCFURLVisitedUPP ); external name '_DisposeHRWasCFURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRNewURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeHRNewURLUPP( userUPP: HRNewURLUPP ); external name '_DisposeHRNewURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRNewCFURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure DisposeHRNewCFURLUPP( userUPP: HRNewCFURLUPP ); external name '_DisposeHRNewCFURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRURLToFSSpecUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
procedure DisposeHRURLToFSSpecUPP( userUPP: HRURLToFSSpecUPP ); external name '_DisposeHRURLToFSSpecUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* DisposeHRURLToFSRefUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
procedure DisposeHRURLToFSRefUPP( userUPP: HRURLToFSRefUPP ); external name '_DisposeHRURLToFSRefUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRWasURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function InvokeHRWasURLVisitedUPP( url: ConstCStringPtr; refCon: UnivPtr; userUPP: HRWasURLVisitedUPP ): Boolean; external name '_InvokeHRWasURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRWasCFURLVisitedUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function InvokeHRWasCFURLVisitedUPP( url: CFURLRef; refCon: UnivPtr; userUPP: HRWasCFURLVisitedUPP ): Boolean; external name '_InvokeHRWasCFURLVisitedUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRNewURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function InvokeHRNewURLUPP( url: ConstCStringPtr; targetFrame: ConstCStringPtr; addToHistory: Boolean; refCon: UnivPtr; userUPP: HRNewURLUPP ): OSStatus; external name '_InvokeHRNewURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRNewCFURLUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function InvokeHRNewCFURLUPP( url: CFURLRef; targetString: CFStringRef; addToHistory: Boolean; refCon: UnivPtr; userUPP: HRNewCFURLUPP ): OSStatus; external name '_InvokeHRNewCFURLUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRURLToFSSpecUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.1 and later
* Non-Carbon CFM: available as macro/inline
}
function InvokeHRURLToFSSpecUPP( rootURL: ConstCStringPtr; linkURL: ConstCStringPtr; var fsspec_: FSSpec; urlSourceType_: URLSourceType; refCon: UnivPtr; userUPP: HRURLToFSSpecUPP ): OSStatus; external name '_InvokeHRURLToFSSpecUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{
* InvokeHRURLToFSRefUPP()
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework
* CarbonLib: in CarbonLib 1.3 and later
* Non-Carbon CFM: not available
}
function InvokeHRURLToFSRefUPP( rootString: CFStringRef; linkString: CFStringRef; var fref: FSRef; urlSourceType_: URLSourceType; refCon: UnivPtr; userUPP: HRURLToFSRefUPP ): OSStatus; external name '_InvokeHRURLToFSRefUPP';
(* AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4 *)
{$endc} {TARGET_OS_MAC}
{$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
end.
{$endc} {not MACOSALLINCLUDE}
|