File: types.xml

package info (click to toggle)
fpc 3.2.0%2Bdfsg-12
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 338,552 kB
  • sloc: pascal: 3,794,737; xml: 191,997; ansic: 9,637; asm: 8,482; java: 5,346; sh: 4,664; yacc: 3,751; makefile: 2,688; lex: 2,538; javascript: 2,375; sql: 929; php: 473; cpp: 145; perl: 134; sed: 132; csh: 34; tcl: 7
file content (1797 lines) | stat: -rw-r--r-- 49,510 bytes parent folder | download | duplicates (6)
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
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
<?xml version="1.0" encoding="ISO-8859-1"?>
<fpdoc-descriptions>
<package name="rtl">

<!--
  ====================================================================
    types
  ====================================================================
-->

<module name="types">
<short>Various types</short>
<descr>
Starting with D6, types from Windows specific units that were needed in
Kylix were extracted to this unit. So it mostly contains type of Windows
origin that are needed in the VCL framework.
</descr>

<!-- constant Visibility: default -->
<element name="RT_RCDATA">
<short>Resource type RCDATA</short>
<descr>
</descr>
<seealso>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="DWORD">
<short>Alias for cardinal type</short>
<descr>
</descr>
<seealso>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="PLongint">
<short>Pointer to longint type</short>
<descr>
<var>PLongint</var> is defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="PSmallInt">
<short>Pointer to smallint type</short>
<descr>
<var>PSmallInt</var> is defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
<seealso>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="PDouble">
<short>Pointer do double type</short>
<descr>
<var>PDouble</var> is defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="PByte">
<short>Pointer to byte type</short>
<descr>
<var>PByte</var> is defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="Largeint">
<short>Alias for the Int64 type</short>
<descr>
<var>Largeint</var> is an alias for the Int64 type defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="LARGE_INT">
<short>Alias for the Int64 type</short>
<descr>
<var>LARGE_INT</var> is an alias for the Int64 type defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- pointer type Visibility: default -->
<element name="PLargeInt">
<short>Pointer to <var>LargeInt</var></short>
<descr>
<var>PLargeInt</var> is an alias for the PInt64 type defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="LargeUint">
<short>Alias for the QWord type</short>
<descr>
<var>LargeUInt</var> is an alias for the <var>QWord</var> type defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="LARGE_UINT">
<short>Alias for the QWord type</short>
<descr>
<var>LARGE_UINT</var> is an alias for the <var>QWord</var> type defined in the system unit. This is an alias for
Delphi/Kylix compatibility.
</descr>
</element>

<!-- pointer type Visibility: default -->
<element name="PLargeuInt">
<short>Pointer to QWord type</short>
<descr>
<var>PLargeUInt</var> is an alias for the PQWord type defined in the system
unit. This is an alias for Delphi/Kylix compatibility.
</descr>
</element>

<!-- array type Visibility: default -->
<element name="TIntegerDynArray">
<short>Dynamic array of (32-bit, signed) integers</short>
<descr>
<var>TIntegerDynArray</var> is a standard definition of a dynamical array of
(32-bit, signed) integers.
</descr>
<seealso>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TByteDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TCardinalDynArray">
<short>Dynamic array of (32-bit, unsigned) cardinals</short>
<descr>
<var>TCardinalDynArray</var> is a standard definition of a dynamical array of
(32-bit, unsigned) cardinals.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TShortIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TWordDynArray">
<short>Dynamic array of (16-bit, unsigned) words</short>
<descr>
<var>TWordDynArray</var> is a standard definition of a dynamical array
of (16-bit, unsigned) words.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TShortIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TSmallIntDynArray">
<short>Dynamic array of (16-bit, signed) smallints</short>
<descr>
<var>TSmallintDynArray</var> is a standard definition of a dynamical array
of (16-bit, unsigned) integers.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TShortIntDynArray"/>
<link id="TWordDynArray"/>   
<link id="TByteDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TByteDynArray">
<short>Dynamic array of (8-bit, unsigned) bytes</short>
<descr>
<var>TByteDynArray</var> is a standard definition of a dynamical array
of (8-bit, unsigned) bytes.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>    
<link id="TShortIntDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TShortIntDynArray">
<short>Dynamic array of (8-bit, signed) shortints</short>
<descr>
<var>TShortintDynArray</var> is a standard definition of a dynamical array   
of (8-bit, signed) shortints. 
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TInt64DynArray">
<short>Dynamic array of (64-bit, signed) int64s</short>
<descr>
<var>TInt64DynArray</var> is a standard definition of a dynamical array
of (64-bit, signed) int64s.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TShortIntDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TQWordDynArray">
<short>Dynamic array of (64-bit, unsigned) QWords</short>
<descr>
<var>TQWordDynArray</var> is a standard definition of a dynamical array
of (64-bit, unsigned) QWords.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TShortIntDynArray"/>
<link id="TInt64DynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TLongWordDynArray">
<short>Dynamic array of (32-bit, unsigned) LongWords</short>
<descr>
<var>TLongWordDynArray</var> is a standard definition of a dynamical array
of (32-bit, unsigned) LongWords.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TCardinalDynArray"/>
<link id="TWordDynArray"/>
<link id="TSmallIntDynArray"/>
<link id="TByteDynArray"/>
<link id="TShortIntDynArray"/>
<link id="TInt64DynArray"/>
<link id="TQWordDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TSingleDynArray">
<short>Array of (single-sized) floats</short>
<descr>
<var>TSingleDynArray</var> is a standard definition of a dynamical array
of singles. (smallest floating point type)
</descr>
<seealso>
<link id="TDoubleDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TDoubleDynArray">
<short>Dynamic array of (Double-sized) floats</short>
<descr>
<var>TSoubleDynArray</var> is a standard definition of a dynamical array
of doubles. (regular floating point type)
</descr>
<seealso>
<link id="TSingleDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TBooleanDynArray">
<short>Dynamic array of booleans</short>
<descr>
<var>TBooleanDynArray</var> is a standard definition of a dynamical array
of booleans.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TByteDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TStringDynArray">
<short>Dynamic array of AnsiStrings</short>
<descr>
<var>TStringDynArray</var> is a standard definition of a dynamical array
of Ansistrings.
</descr>
<seealso>
<link id="TIntegerDynArray"/>
<link id="TWideStringDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TWideStringDynArray">
<short>Dynamic array of WideStrings</short>
<descr>
<var>TWideStringDynArray</var> is a standard definition of a dynamical array
of WideStrings.
</descr>
<seealso>
<link id="TStringDynArray"/>
</seealso>
</element>

<!-- array type Visibility: default -->
<element name="TPointerDynArray">
<short>Dynamic array of untyped pointers</short>
<descr>
</descr>
<var>TPointerDynArray</var> is a standard definition of a dynamical array
of untyped pointers.
<seealso>
<link id="TStringDynArray"/>
</seealso>
</element>

<!-- record type Visibility: default -->
<element name="TPoint">
<short>Point in a plane</short>
<descr>
<p>
<var>TPoint</var> is a generic definition of a point in a 2-dimensional
discrete plane, where <var>X</var> indicates the horizontal position, and
<var>Y</var> the vertical position (positions usually measured in pixels), 
and <var>0,0</var> is the origin of the plane.
</p>
<p>
Usually, the origin is the upper-left corner of the screen, with Y
increasing as one moves further down the screen - this is opposite to the
mathematical view where Y increases as one moves upwards.
</p>
<p>
The coordinates are integers, (32-bit, signed) so the coordinate system 
runs from <var>-MaxInt</var> to <var>MaxInt</var>.
</p>
</descr>
<seealso>
<link id="TRect"/>
<link id="TSize"/>
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="TPoint.X">
<short>Horizontal position</short>
</element>

<!-- variable Visibility: default -->
<element name="TPoint.Y">
<short>Vertical position</short>
</element>

<!-- pointer type Visibility: default -->
<element name="PPoint">
<short>Pointer to <var>TPoint</var> type.</short>
<descr>
<var>PPoint</var> is a typed pointer to the <link id="TPoint"/> type.
</descr>
<seealso>
<link id="TPoint"/>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="tagPOINT">
<short>Alias for <var>TPoint</var></short>
<descr>
<var>tagPOINT</var> is a simple alias for <link id="TPoint"/>
</descr>
<seealso>
<link id="TPoint"/>
</seealso>
</element>

<!-- record type Visibility: default -->
<element name="TRect">
<short>Rectangle in a plane</short>
<descr>
<var>TRect</var> defines a rectangle in a discrete plane. It is described by the
horizontal (<var>left</var>, <var>right</var>) or vertical
(<var>top</var>, <var>Bottom</var>) positions (in pixels) 
of the edges, or, alternatively, by the coordinates of the top left (<var>TopLeft</var>) and bottom right
(<var>BottomRight</var>) corners.
</descr>
<seealso>
<link id="TPoint"/>
<link id="TSize"/>
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="TRect.Left">
<short>Horizontal position of left edge</short>
</element>

<!-- variable Visibility: default -->
<element name="TRect.Top">
<short>Vertical position of top edge</short>
</element>

<!-- variable Visibility: default -->
<element name="TRect.Right">
<short>Horizontal position of right edge</short>
</element>

<!-- variable Visibility: default -->
<element name="TRect.Bottom">
<short>Vertical position of bottom edge</short>
</element>

<!-- variable Visibility: default -->
<element name="TRect.TopLeft">
<short>Position of top-left corner</short>
</element>

<!-- variable Visibility: default -->
<element name="TRect.BottomRight">
<short>Position of bottom-right corner</short>
</element>

<!-- pointer type Visibility: default -->
<element name="PRect">
<short>Pointer to <var>TRect</var> structure</short>
<descr>
<var>PRect</var> is a typed pointer to the <link id="TRect"/> type.
</descr>
<seealso>
<link id="TRect"/>
</seealso>
</element>

<!-- record type Visibility: default -->
<element name="TSize">
<short>Area size</short>
<descr>
<var>TSize</var> is a type to describe the size of a rectangular area, where
<var>cx</var> is the width, <var>cy</var> is the height (in pixels) of the rectangle.
</descr>
<seealso>
<link id="TRect"/>
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="TSize.cx">
<short>Width in pixels</short>
</element>

<!-- variable Visibility: default -->
<element name="TSize.cy">
<short>Height in pixels</short>
</element>

<!-- pointer type Visibility: default -->
<element name="PSize">
<short>Pointer to <var>TSize</var> type</short>
<descr>
<var>PSize</var> is a typed pointer to the <link id="TSize"/> type.
</descr>
<seealso>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="tagSIZE">
<short>Alias for <var>TSize</var></short>
<descr>
<var>tagSize</var> is an alias for the <link id="TSize"/> type.
</descr>
<seealso>
<link id="TSize"/>
</seealso>
</element>

<!-- record type Visibility: default -->
<element name="TSmallPoint">
<short>Small point</short>
<descr>
<var>TSmallPoint</var> defines a point in a 2-dimensional plane, just like
<link id="TPoint"/>, but the coordinates have a smaller range: The
coordinates are smallints (16-bit, signed) and they run from
<var>-MaxSmallInt</var> to <var>maxSmallint</var>.
</descr>
<seealso>
<link id="TPoint"/>
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="TSmallPoint.x">
<short>Horizontal position in the plane.</short>
</element>

<!-- variable Visibility: default -->
<element name="TSmallPoint.y">
<short>Vertical position in the plane.</short>
</element>

<!-- pointer type Visibility: default -->
<element name="PSmallPoint">
<short>Pointer to <var>TSmallPoint</var> type</short>
<descr>
<var>PSmallPoint</var> is a typed pointer to the <link
id="TSmallPoint"/> record.
</descr>
<seealso>
<link id="TSmallPoint"/>
</seealso>
</element>

<!-- enumeration type Visibility: default -->
<element name="TDuplicates">
<short>Enumeration type, indicating what to do with duplicates in a list.</short>
<descr>
<p>
<var>TDuplicates</var> can be used to indicate how a list structure acts on
the addition of a duplicate item to the list.
</p>
<dl>
<dt>dupIgnore</dt><dd><printshort id="TDuplicates.dupIgnore"/></dd>
<dt>dupAccept</dt><dd><printshort id="TDuplicates.dupAccept"/></dd>
<dt>dupError</dt><dd><printshort id="TDuplicates.dupError"/></dd>
</dl>
</descr>
</element>

<!-- enumeration value Visibility: default -->
<element name="TDuplicates.dupIgnore">
<short>Ignore the new item, do not add it to the list.</short>
</element>

<!-- enumeration value Visibility: default -->
<element name="TDuplicates.dupAccept">
<short>Accept duplicates, adding them to the list.</short>
</element>

<!-- enumeration value Visibility: default -->
<element name="TDuplicates.dupError">
<short>Raise an error when an attempt is made to add a duplicate.</short>
</element>

<!-- alias type Visibility: default -->
<element name="TOleChar">
<short>Alias for the widechar type</short>
<descr>
<var>TOleChar</var> is an alias for the <var>WideChar</var> type, defined
in the system unit.
</descr>
<seealso>
<link id="POleStr"/>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="POleStr">
<short>Pointer to <var>WideChar</var></short>
<descr>
<var>POleStr</var> is a pointer to a (double) null-terminated array of
<var>TOleChar</var> characters.
</descr>
<seealso>
<link id="TOleChar"/>
</seealso>
</element>

<!-- pointer type Visibility: default -->
<element name="PPOleStr">
<short>Pointer to <var>POleStr</var> type</short>
<descr>
<var>PPOleStr</var> is a typed pointer to a <var>POleStr</var> variable.
</descr>
<seealso>
<link id="POleStr"/>
</seealso>
</element>

<!-- procedure type Visibility: default -->
<element name="TListCallback">
<short>Method callback for list operations</short>
<descr>
<var>TListCallback</var> is the prototype for a <var>Foreach</var> operation
on a list. It will be called with as <var>Data</var> the pointer in the
list, and <var>Arg</var> will contain the extra user data added to the
<var>Foreach</var> call. It can be used in methods of objects; for a version
that can be used as a global procedure, see <link id="TListStaticCallback"/>
</descr>
<seealso>
<link id="TListStaticCallback"/>
</seealso>
</element>

<!-- procedure type Visibility: default -->
<element name="TListStaticCallback">
<short>Callback for list operations</short>
<descr>
<var>TListStaticCallback</var> is the prototype for a <var>Foreach</var> operation
on a list. It will be called with as <var>Data</var> the pointer in the
list, and <var>Arg</var> will contain the extra user data added to the 
<var>Foreach</var> call. It can be used in plain procedures; for a version
that can be used as a method, see <link id="TListCallback"/>
</descr>
<seealso>
<link id="TListCallback"/>
</seealso>
</element>

<!-- constant Visibility: default -->
<element name="GUID_NULL">
<short>Null GUID</short>
<descr>
<var>GUID_NULL</var> is the definition of the NULL (empty) GUID.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STGTY_STORAGE">
<short>Storage type - Storage</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STGTY_STREAM">
<short>Storage type - stream</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STGTY_LOCKBYTES">
<short>Storage type - byte array</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STGTY_PROPERTY">
<short>Storage type - Property storage</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STREAM_SEEK_SET">
<short>Storage Stream seek operation offset type : set absolute position</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STREAM_SEEK_CUR">
<short>Storage Stream seek operation offset type : relative position</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STREAM_SEEK_END">
<short>Storage Stream seek operation offset type : Position relative to end of stream</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="LOCK_WRITE">
<short>Storage Lock stream data: lock for writing operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="LOCK_EXCLUSIVE">
<short>Storage Lock stream data: lock exclusively for writing operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="LOCK_ONLYONCE">
<short>Storage Lock stream data: lock is granted only once</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STATFLAG_DEFAULT">
<short>Storage Statistics should contain pwcsName structure</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STATFLAG_NONAME">
<short>Storage Statistics must not contain pwcsName structure</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STATFLAG_NOOPEN">
<short>Storage : Not implemented</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="E_FAIL">
<short>COM/RPC Error code : operation failed</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="E_INVALIDARG">
<short>COM/RPC Error code: Invalid arguments were specified.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDFUNCTION">
<short>Storage COM/RPC Error code: An invalid operation was called.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_FILENOTFOUND">
<short>Storage COM/RPC Error code: the file could not be found</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_PATHNOTFOUND">
<short>Storage COM/RPC Error code: the path could not be found</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_TOOMANYOPENFILES">
<short>Storage COM/RPC Error code: too many open files.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_ACCESSDENIED">
<short>Storage COM/RPC Error code: access to specified resource is denied</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDHANDLE">
<short>Storage COM/RPC Error code: invalid object for operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INSUFFICIENTMEMORY">
<short>Storage COM/RPC Error code: not enough operation for the operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDPOINTER">
<short>Storage COM/RPC Error code: invalid pointer specified.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_NOMOREFILES">
<short>Storage COM/RPC Error code: no more objects to return.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_DISKISWRITEPROTECTED">
<short>Storage COM/RPC Error code: Disk is read-only</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_SEEKERROR">
<short>Storage COM/RPC Error code: Error during seek operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_WRITEFAULT">
<short>Storage COM/RPC Error code: Error during write operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_READFAULT">
<short>Storage COM/RPC Error code: Error during read operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_SHAREVIOLATION">
<short>Storage COM/RPC Error code: A sharing violation occurred</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_LOCKVIOLATION">
<short>Storage COM/RPC Error code: A locking violation occurred</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_FILEALREADYEXISTS">
<short>Storage COM/RPC Error code: the specified object already exists.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDPARAMETER">
<short>Storage COM/RPC Error code: an invalid parameter was specified.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_MEDIUMFULL">
<short>Storage COM/RPC Error code: the medium was full.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_PROPSETMISMATCHED">
<short>Storage COM/RPC Error code: Attempt to write a complex property to a simple property storage</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_ABNORMALAPIEXIT">
<short>Storage COM/RPC Error code: Abnormal exit of an API call.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDHEADER">
<short>Storage COM/RPC Error code: Not a valid compound file</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDNAME">
<short>Storage COM/RPC Error code: Not a valid name</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_UNKNOWN">
<short>Storage COM/RPC Error code: unknown error.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_UNIMPLEMENTEDFUNCTION">
<short>Storage COM/RPC Error code: unimplemented function</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INVALIDFLAG">
<short>Storage COM/RPC Error code: invalid flag</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INUSE">
<short>Storage COM/RPC Error code: object is in use.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_NOTCURRENT">
<short>Storage COM/RPC Error code: contents changed by another user</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_REVERTED">
<short>Storage COM/RPC Error code: object no longer exists</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_CANTSAVE">
<short>Storage COM/RPC Error code: cannot save</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_OLDFORMAT">
<short>Storage COM/RPC Error code: old compound file format</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_OLDDLL">
<short>Storage COM/RPC Error code: old format of DLL</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_SHAREREQUIRED">
<short>Storage COM/RPC Error code: share.exe required for this operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_EXTANTMARSHALLINGS">
<short>Storage COM/RPC Error code: extant marshallings exist on object</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_DOCFILECORRUPT">
<short>Storage COM/RPC Error code: Document file is corrupted</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_BADBASEADDRESS">
<short>Storage COM/RPC Error code: wrong address for OLE32.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_INCOMPLETE">
<short>Storage COM/RPC Error code: download interrupted, resulting in incomplete file.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_E_TERMINATED">
<short>Storage COM/RPC Error code: download terminated.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_S_CONVERTED">
<short>Storage COM/RPC Error code: object was converted to compound file.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_S_BLOCK">
<short>Storage COM/RPC Error code: storage operation would block till more data comes available.</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_S_RETRYNOW">
<short>Storage COM/RPC Error code: Retry operation</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- constant Visibility: default -->
<element name="STG_S_MONITORING">
<short>Storage COM/RPC Error code: ?</short>
<descr>
Defined for Delphi compatibility, this should not be used.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="PCLSID">
<short>Pointer to <var>TCLSID</var> type</short>
<descr>
<var>PCLSID</var> is a pointer to a <var>TCLSID</var> type.
</descr>
<seealso>
<link id="TCLSID"/>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="TCLSID">
<short>Class ID identifier (GUID)</short>
<descr>
<var>TCLSID</var> is an alias for the <link id="#rtl.system.TGUID"/> type.
</descr>
<seealso>
<link id="#rtl.system.TGUID"/>
</seealso>
</element>

<!-- pointer type Visibility: default -->
<element name="PDWord">
<short>Pointer to <var>DWord</var> type</short>
<descr>
<var>PDWord</var> is equivalent to the <var>PCardinal</var> type.
</descr>
<seealso>
<link id="DWord"/>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="PDisplay">
<short>Untyped pointer type.</short>
<descr>
<var>PDisplay</var> is defined for Delphi/Kylix compatibility and should not be used.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="PEvent">
<short>Untyped pointer type.</short>
<descr>
<var>PEvent</var> is defined for Delphi/Kylix compatibility and should not be
used.
</descr>
</element>

<!-- record type Visibility: default -->
<element name="TXrmOptionDescRec">
<short>Opaque record type</short>
<descr>
<var>TXrmOptionDescRec</var> is defined for Delphi/Kylix compatibility and should not be       
used.    
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="XrmOptionDescRec">
<short>Alias for <var>TXrmOptionDescRec</var></short>
<descr>
<var>XrmOptionDescRec</var> is defined for Delphi/Kylix compatibility and
should not be
used.    
</descr>
</element>

<!-- pointer type Visibility: default -->
<element name="PXrmOptionDescRec">
<short>Pointer to <var>TXrmOptionDescRec</var></short>
<descr>
<var>PXrmOptionDescRec</var> is defined for Delphi/Kylix compatibility and
should not be used.    
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="Widget">
<short>Untyped pointer type</short>
<descr>
<var>Widget</var> is defined for Delphi/Kylix compatibility and
should not be used.    
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="WidgetClass">
<short>Untyped pointer type</short>
<descr>
<var>WidgetClass</var> is defined for Delphi/Kylix compatibility and
should not be used.  
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="ArgList">
<short>Untyped pointer type</short>
<descr>
<var>ArgList</var> is defined for Delphi/Kylix compatibility and
should not be used.
</descr>
</element>

<!-- alias type Visibility: default -->
<element name="Region">
<short>Untyped pointer type</short>
<descr>
<var>Region</var> is defined for Delphi/Kylix compatibility and
should not be used.
</descr>
</element>

<!-- record type Visibility: default -->
<element name="_FILETIME">
<short>Filetime record type</short>
<descr>
<var>_FILETIME</var> describes a file time stamp. It is defined or
Delphi/Kylix compatibility and should not be used except when implementing
or accessing the <var>IStream</var> interface. 
The <var>TDateTime</var> type should be used instead.
</descr>
<seealso>
<link id="IStream"/>
<link id="IStream.Stat"/>
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="_FILETIME.dwLowDateTime">
<short>Lower dword of the file date/time</short>
</element>

<!-- variable Visibility: default -->
<element name="_FILETIME.dwHighDateTime">
<short>High dword of the file date/time</short>
</element>

<!-- alias type Visibility: default -->
<element name="TFileTime">
<short>Alias for the <var>_FILETIME</var> type</short>
</element>

<!-- alias type Visibility: default -->
<element name="FILETIME">
<short>Alias for the <var>_FILETIME</var> type</short>
</element>

<!-- pointer type Visibility: default -->
<element name="PFileTime">
<short>Pointer to <var>TFileTime</var> type</short>
</element>

<!-- record type Visibility: default -->
<element name="tagSTATSTG">
<short>Storage statistics type for <var>IStream</var> interface.</short>
<descr>
<var>tagSTATSTG</var> is used in the <link id="IStream.Stat"/> call. It
describes a storage medium (typically a file).
</descr>
<seealso>
<link id="IStream.Stat"/> 
</seealso>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.pwcsName">
<short>Name for the storage object. Typically the filename.</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.dwType">
<short>Storage type</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.cbSize">
<short>Storage size</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.mtime">
<short>Modification time</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.ctime">
<short>Creation time</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.atime">
<short>Last access time</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.grfMode">
<short>?</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.grfLocksSupported">
<short>Locking operations supported by Storage type</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.clsid">
<short>Class ID for the storage type</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.grfStateBits">
<short>State bits</short>
</element>

<!-- variable Visibility: default -->
<element name="tagSTATSTG.reserved">
<short>Reserved bits</short>
</element>

<!-- alias type Visibility: default -->
<element name="TStatStg">
<short>Record describing storage medium.</short>
<descr>
<var>TStatStg</var> is a record type describing a storage medium. It is uses
in the <link id="IStream.Stat"/> function.
</descr>
<seealso>
<link id="IStream.Stat"/>
</seealso>
</element>

<!-- alias type Visibility: default -->
<element name="STATSTG">
<short>Alias for the <var>TStatStg</var> type.</short>
<descr>
</descr>
<seealso>
<link id="TStatStg"/>
</seealso>
</element>

<!-- pointer type Visibility: default -->
<element name="PStatStg">
<short>Pointer to <var>TStatStg</var> record.</short>
<seealso>
<link id="TStatStg"/>
</seealso>
</element>

<!-- interface Visibility: default -->
<element name="IClassFactory">
<short>Class defined for ActiveX compatibility.</short>
<descr>
<var>IClassFactory</var> is defined for Delphi/Kylix compatibility and
should not be used.
</descr>
</element>

<!-- function Visibility: default -->
<element name="IClassFactory.CreateInstance">
<short>Create a new instance of an interface.</short>
<descr>
<var>IClassFactory.CreateInstance</var> is defined for Delphi/Kylix compatibility and
should not be used.
</descr>
</element>

<!-- function Visibility: default -->
<element name="IClassFactory.LockServer">
<short>Lock ActiveX server object.</short>
<descr>
<var>IClassFactory.LocksServer</var> is defined for Delphi/Kylix
compatibility and should not be used.
</descr>
</element>

<!-- interface Visibility: default -->
<element name="ISequentialStream">
<short>Sequential stream object interface</short>
<descr>
<var>ISequentialStream</var> is the interface for streams which only support
sequential reading of chunks of data. It is defined for Delphi/Kylix
compatibility and should not be used.
</descr>
<seealso>
<link id="IStream"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="ISequentialStream.Read">
<short>Read data from the stream</short>
<descr>
<var>Read</var> reads <var>cbCount</var> bytes from the stream into the
memory pointed to by <var>pv</var> and returns the number of bytes
read in <var>pcbread</var>. The result is zero for success or an error code.
</descr>
<seealso>
<link id="ISequentialStream.Write"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="ISequentialStream.Write">
<short>Write data to the stream</short>
<descr>
<var>Write</var> writes <var>cbCount</var> bytes from the 
memory pointed to by <var>pv</var> to the stream and returns the number of bytes 
written in <var>pcbwritten</var>. The result is zero for success or an error code.
</descr>
<seealso>
<link id="ISequentialStream.Read"/>
</seealso>
</element>

<!-- interface Visibility: default -->
<element name="IStream">
<short>COM stream abstraction</short>
<descr>
An abstract interface for an external (non pascal) stream, as defined in
Microsoft COM interfaces
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="IStream.Seek">
<short>Set the stream position</short>
<descr>
<var>Seek</var> sets the stream position at <var>dlibMove</var> bytes from
<var>dwOrigin</var> (one of the <var>SEEK_*</var> constants) and returns 
the new absolute position in <var>libNewPosition</var>. 
The function returns zero on success, or an error code.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.SetSize">
<short>Set the stream size</short>
<descr>
<var>SetSize</var> sets the size of the stream to <var>libNewSize</var>
bytes, if the stream allows it. On success, zero is returned.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.CopyTo">
<short>Copy data from one stream to another</short>
<descr>
<var>CopyTo</var> copies <var>cb</var> bytes  from the stream to target
stream <var>stm</var>. <var>cbRead</var> returns how many bytes were read
from the stream, <var>cbwrite</var> returns how many bytes were actually
written to the destination stream. The function returns zero on success.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.Commit">
<short>Commit data to the stream</short>
<descr>
<var>Commit</var> commits the data in the stream to the underlying medium.
Flags is a set of options to control the commit operation (see MSDN for the
possible flags).
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
<seealso>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="IStream.Revert">
<short>Revert changes</short>
<descr>
<var>Revert</var> reverts all changes that were done to a transacted
stream, i.e. all changes since the last commit. The function returns zero on
success.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.LockRegion">
<short>Lock a region of bytes in the stream</short>
<descr>
<var>LockRegion</var> locks a region of the storage, starting at
<var>libOffset</var>, for <var>cbCount</var> bytes. The applied lock is of
type <var>dwLockType</var>. The function returns zero if the lock was
successfully applied.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.UnlockRegion">
<short>Unlocks a previously locked region of bytes in the stream</short>
<descr>
<var>UnlockRegion</var> removes the lock on a region of the storage, starting at
<var>libOffset</var>, for <var>cbCount</var> bytes. The lock must be of  
type <var>dwLockType</var>. The function returns zero if the lock was
successfully removed.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.Stat">
<short>return information about the stream.</short>
<descr>
<var>Stat</var> returns information about the stream in <var>statstg</var>,
taking into account the flags in <var>grfStatFlag</var> (one of the
<var>STATFLAG_</var> constants). The function returns zero if the call was
successful.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="IStream.Clone">
<short>Clone the stream instance</short>
<descr>
<var>Clone</var> returns an independent but initially equal copy of the
stream in <var>stm</var>. The function returns zero if the call was
successful.
</descr>
<errors>
On error, a nonzero exit code is returned.
</errors>
</element>

<!-- function Visibility: default -->
<element name="EqualRect">
<short>Check if two rectangles are equal.</short>
<descr>
<var>EqualRect</var> returns <var>True</var> if the rectangles <var>R1</var>
and <var>R2</var> are equal (i.e. have the position and size). If the
rectangles differ, the function returns <var>False</var>
</descr>
<seealso>
<link id="Rect"/>
<link id="Bounds"/>
<link id="PtInRect"/>
<link id="IntersectRect"/>
<link id="UnionRect"/>
<link id="IsRectEmpty"/>
<link id="OffsetRect"/>
<link id="InflateRect"/>
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="Rect">
<short>Create a rectangle record</short>
<descr>
<var>Rect</var> returns a rectangle structure with the
4 members <var>Left</var>, <var>Top</var>, <var>Right</var> and 
<var>Bottom</var> as passed in the arguments.
</descr>
<seealso>
<link id="Bounds"/>
<link id="PtInRect"/>
<link id="IntersectRect"/>
<link id="UnionRect"/>
<link id="IsRectEmpty"/>
<link id="OffsetRect"/>
<link id="InflateRect"/>
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="Bounds">
<short>Create a rectangle, given a position and size</short>
<descr>
<var>Bounds</var> returns a <var>TRect</var> structure with the indicated
position (<var>Left=ALeft</var> and <var>Top=ATop</var>) and size 
(<var>Right=ALeft+AWidth</var> and <var>Bottom=ATop+AHeight</var>)
</descr>
<seealso>
<link id="Rect"/>
<link id="PtInRect"/>
<link id="IntersectRect"/>
<link id="UnionRect"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="Point">
<short>Create a point</short>
<descr>
<var>Point</var> returns a <var>TPoint</var> structure with the given
position (<var>X, Y</var>).
</descr>
<seealso>
<link id="Rect"/>
<link id="PtInRect"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="PtInRect">
<short>Check whether a point is inside a rectangle.</short>
<descr>
<p>
<var>PtInRect</var> returns <var>True</var> if <var>p</var> is located
inside <var>Rect</var>, and <var>False</var> if it is located outside the
rectangle.
</p>
<remark>
Note that the bottom, right edges are not considered
part of the rectangle, therefor a point located on one of these edges will
not be considered part of the rectangle, meaning that for a record
(10,10,100,100) the point (90,100) will not be considered part of the
record, but <var>90,10</var> will be.
</remark>
</descr>
<seealso>
<link id="IntersectRect"/>
<link id="UnionRect"/>
<link id="IsRectEmpty"/>
<link id="OffsetRect"/>
<link id="InflateRect"/>
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="IntersectRect">
<short>Return the intersection of 2 rectangles</short>
<descr>
<var>IntersectRect</var> returns the intersection of the 2 rectangles
<var>R1</var> and <var>R2</var> in <var>Rect</var>. It returns
<var>True</var> if the 2 rectangles have an intersection, otherwise
<var>False</var> is returned, and <var>Rect</var> is filled with zero.
</descr>
<seealso>
<link id="PtinRect"/>
<link id="UnionRect"/>  
<link id="IsRectEmpty"/>
<link id="OffsetRect"/> 
<link id="InflateRect"/>
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="UnionRect">
<short>Return the union of 2 rectangles.</short>
<descr>
<var>UnionRect</var> retuns the rectangle that encompasses both
<var>R1</var> and <var>R2</var> in <var>Rect</var>. It returns
<var>True</var> if the resulting rectangle is not empty, <var>False</var> if
the result is an empty rectangle (in which case the result is filled with
zeroes)
</descr>
<seealso>
<link id="PtinRect"/>      
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>
<link id="OffsetRect"/>
<link id="InflateRect"/>
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="IsRectEmpty">
<short>Check whether a rectangle is empty</short>
<descr>
<var>IsRectEmpty</var> returns true if the rectangle is empty, i.e. has a
zero or negative width or height. 
</descr>
<seealso>
<link id="PtinRect"/>
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>  
<link id="OffsetRect"/>   
<link id="InflateRect"/>  
<link id="Size"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="OffsetRect">
<short>Offset the rectangle</short>
<descr>
<var>OffsetRect</var> offsets the rectangle <var>Rect</var> by a horizontal
distance <var>DX</var> and a vertical distance <var>DY</var>. The operation
returns <var>True</var> if the operation was successful, <var>false</var>
if it was not (only possible if the address of <var>Rect</var> is
<var>Nil</var>).
</descr>
<seealso>
<link id="PtinRect"/>
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>  
<link id="OffsetRect"/>   
<link id="InflateRect"/>  
<link id="Size"/>
<link id="IsRectEmpty"/>
</seealso>
</element>

<!-- function Visibility: default -->
<element name="CenterPoint">
<short>Return the center point of a rectangle</short>
<descr>
<var>CenterPoint</var> returns the center point of the rectangle
<var>Rect</var>. 
</descr>
<seealso>
<link id="PtinRect"/>
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>  
<link id="OffsetRect"/>   
<link id="InflateRect"/>  
<link id="Size"/>
<link id="IsRectEmpty"/>
</seealso>
</element>


<!-- function Visibility: default -->
<element name="InflateRect">
<short>Increase the rectangle in size, keeping it centered</short>
<descr>
<var>InflateRect</var> inflates the rectangle horizontally with
<var>dx</var> pixels on each side, and vertically with <var>dy</var> pixels,
thus keeping its center point on the same location. It returns
<var>true</var> if the operation was successfully, <var>False</var> if it was
not (only possible if the address of <var>Rect</var> is
<var>Nil</var>).
</descr>
<errors>
</errors>
<seealso>
<link id="PtinRect"/>
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>
<link id="OffsetRect"/>   
<link id="CenterPoint"/>  
<link id="Size"/>
<link id="IsRectEmpty"/>

</seealso>
</element>

<!-- function Visibility: default -->
<element name="Size">
<short>Return the size of the rectangle</short>
<descr>
<var>Size</var> returns a <var>TSize</var> record with the indicated
<var>AWidth, AHeight</var>. In the case <var>ARect</var> is passed, the width
and height are calculated (taking into account that the right, bottom are
not considered part of the rectangle).
</descr>
<seealso>
<link id="PtinRect"/>
<link id="IntersectRect"/>
<link id="IsRectEmpty"/>  
<link id="OffsetRect"/>   
<link id="InflateRect"/>
<link id="CenterPoint"/>
<link id="IsRectEmpty"/>
</seealso>
</element>

</module> <!-- types -->

</package>
</fpdoc-descriptions>