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
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<tableDefinitions xmlns="http://wixtoolset.org/schemas/v4/wi/tables">
<tableDefinition name="ActionText">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Name of action to be described."/>
<columnDefinition name="Description" type="localized" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Localized description displayed in progress dialog and log when action is executing."/>
<columnDefinition name="Template" type="localized" length="0" nullable="yes" escapeIdtCharacters="yes" modularize="property"
category="template" description="Optional localized format template used to format action data records for display during action execution."/>
</tableDefinition>
<tableDefinition name="AdminExecuteSequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="Condition">
<columnDefinition name="Feature_" type="string" length="38" primaryKey="yes"
keyTable="Feature" keyColumn="1" category="identifier" description="Reference to a Feature entry in Feature table."/>
<columnDefinition name="Level" type="number" length="2" primaryKey="yes"
minValue="0" maxValue="32767" description="New selection Level to set in Feature table if Condition evaluates to TRUE."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Expression evaluated to determine if Level in the Feature table is to change."/>
</tableDefinition>
<tableDefinition name="AdminUISequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="AdvtExecuteSequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="AdvtUISequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="AppId" createSymbols="yes">
<columnDefinition name="AppId" type="string" length="38" primaryKey="yes"
category="guid"/>
<columnDefinition name="RemoteServerName" type="string" length="255" nullable="yes" modularize="property"
category="formatted"/>
<columnDefinition name="LocalService" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="ServiceParameters" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="DllSurrogate" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="ActivateAtStorage" type="number" length="2" nullable="yes"
minValue="0" maxValue="1"/>
<columnDefinition name="RunAsInteractiveUser" type="number" length="2" nullable="yes"
minValue="0" maxValue="1"/>
</tableDefinition>
<tableDefinition name="AppSearch">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The property associated with a Signature"/>
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Signature;RegLocator;IniLocator;DrLocator;CompLocator" keyColumn="1" category="identifier" description="The Signature_ represents a unique file signature and is also the foreign key in the Signature, RegLocator, IniLocator, CompLocator and the DrLocator tables."/>
</tableDefinition>
<tableDefinition name="Property" createSymbols="yes">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Name of property, uppercase if settable by launcher or loader."/>
<columnDefinition name="Value" type="localized" length="0" escapeIdtCharacters="yes"
category="text" description="String value for property. Never null or empty."/>
</tableDefinition>
<tableDefinition name="BBControl" createSymbols="yes">
<columnDefinition name="Billboard_" type="string" length="50" primaryKey="yes" modularize="column"
keyTable="Billboard" keyColumn="1" category="identifier" description="External key to the Billboard table, name of the billboard."/>
<columnDefinition name="BBControl" type="string" length="50" primaryKey="yes"
category="identifier" description="Name of the control. This name must be unique within a billboard, but can repeat on different billboard."/>
<columnDefinition name="Type" type="string" length="50"
category="identifier" description="The type of the control."/>
<columnDefinition name="X" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Horizontal coordinate of the upper left corner of the bounding rectangle of the control."/>
<columnDefinition name="Y" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Vertical coordinate of the upper left corner of the bounding rectangle of the control."/>
<columnDefinition name="Width" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Width of the bounding rectangle of the control."/>
<columnDefinition name="Height" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Height of the bounding rectangle of the control."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this control."/>
<columnDefinition name="Text" type="localized" length="50" nullable="yes" escapeIdtCharacters="yes"
category="text" description="A string used to set the initial text contained within a control (if appropriate)."/>
</tableDefinition>
<tableDefinition name="Billboard" createSymbols="yes">
<columnDefinition name="Billboard" type="string" length="50" primaryKey="yes" modularize="column"
category="identifier" description="Name of the billboard."/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="An external key to the Feature Table. The billboard is shown only if this feature is being installed."/>
<columnDefinition name="Action" type="string" length="50" nullable="yes"
category="identifier" description="The name of an action. The billboard is displayed during the progress messages received from this action."/>
<columnDefinition name="Ordering" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="A positive integer. If there is more than one billboard corresponding to an action they will be shown in the order defined by this column."/>
</tableDefinition>
<tableDefinition name="Feature" createSymbols="yes">
<columnDefinition name="Feature" type="string" length="38" primaryKey="yes"
category="identifier" description="Primary key used to identify a particular feature record."/>
<columnDefinition name="Feature_Parent" type="string" length="38" nullable="yes"
keyTable="Feature" keyColumn="1" category="identifier" description="Optional key of a parent record in the same table. If the parent is not selected, then the record will not be installed. Null indicates a root item."/>
<columnDefinition name="Title" type="localized" length="64" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Short text identifying a visible feature item."/>
<columnDefinition name="Description" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Longer descriptive text describing a visible feature item."/>
<columnDefinition name="Display" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="Numeric sort order, used to force a specific display ordering."/>
<columnDefinition name="Level" type="number" length="2"
minValue="0" maxValue="32767" description="The install level at which record will be initially selected. An install level of 0 will disable an item and prevent its display."/>
<columnDefinition name="Directory_" type="string" length="72" nullable="yes" modularize="column"
keyTable="Directory" keyColumn="1" category="upperCase" description="The name of the Directory that can be configured by the UI. A non-null value will enable the browse button."/>
<columnDefinition name="Attributes" type="number" length="2"
set="0;1;2;4;5;6;8;9;10;16;17;18;20;21;22;24;25;26;32;33;34;36;37;38;48;49;50;52;53;54" description="Feature attributes"/>
</tableDefinition>
<tableDefinition name="Binary" createSymbols="yes">
<columnDefinition name="Name" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Unique key identifying the binary data."/>
<columnDefinition name="Data" type="object" length="0"
category="binary" description="The unformatted binary data."/>
</tableDefinition>
<tableDefinition name="BindImage">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="The index into the File table. This must be an executable file."/>
<columnDefinition name="Path" type="string" length="255" nullable="yes" modularize="property"
category="paths" description="A list of ; delimited paths that represent the paths to be searched for the import DLLS. The list is usually a list of properties each enclosed within square brackets [] ."/>
</tableDefinition>
<tableDefinition name="File" createSymbols="yes">
<columnDefinition name="File" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token, must match identifier in cabinet. For uncompressed files, this field is ignored."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key referencing Component that controls the file."/>
<columnDefinition name="FileName" type="localized" length="255"
category="filename" description="File name used for installation, may be localized. This may contain a "short name|long name" pair."/>
<columnDefinition name="FileSize" type="number" length="4"
minValue="0" maxValue="2147483647" description="Size of file in bytes (long integer)."/>
<columnDefinition name="Version" type="string" length="72" nullable="yes" modularize="companionFile"
keyTable="File" keyColumn="1" category="version" description="Version string for versioned files; Blank for unversioned files."/>
<columnDefinition name="Language" type="string" length="20" nullable="yes"
category="language" description="List of decimal language Ids, comma-separated if more than one."/>
<columnDefinition name="Attributes" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="Integer containing bit flags representing file attributes (with the decimal value of each bit position in parentheses)"/>
<columnDefinition name="Sequence" type="number" length="4"
minValue="1" maxValue="2147483647" description="Sequence with respect to the media images; order must track cabinet order."/>
</tableDefinition>
<tableDefinition name="CCPSearch">
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes"
keyTable="Signature;RegLocator;IniLocator;DrLocator;CompLocator" keyColumn="1" category="identifier" description="The Signature_ represents a unique file signature and is also the foreign key in the Signature, RegLocator, IniLocator, CompLocator and the DrLocator tables."/>
</tableDefinition>
<tableDefinition name="CheckBox" createSymbols="yes">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A named property to be tied to the item."/>
<columnDefinition name="Value" type="string" length="64" nullable="yes" modularize="property"
category="formatted" description="The value string associated with the item."/>
</tableDefinition>
<tableDefinition name="Class" createSymbols="yes">
<columnDefinition name="CLSID" type="string" length="38" primaryKey="yes"
category="guid" description="The CLSID of an OLE factory."/>
<columnDefinition name="Context" type="string" length="32" primaryKey="yes"
category="identifier" description="The numeric server context for this server. CLSCTX_xxxx"/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table, specifying the component for which to return a path when called through LocateComponent."/>
<columnDefinition name="ProgId_Default" type="string" length="255" nullable="yes"
keyTable="ProgId" keyColumn="1" category="text" description="Optional ProgId associated with this CLSID."/>
<columnDefinition name="Description" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Localized description for the Class."/>
<columnDefinition name="AppId_" type="string" length="38" nullable="yes"
keyTable="AppId" keyColumn="1" category="guid" description="Optional AppID containing DCOM information for associated application (string GUID)."/>
<columnDefinition name="FileTypeMask" type="string" length="255" nullable="yes"
category="text" description="Optional string containing information for the HKCRthis CLSID) key. If multiple patterns exist, they must be delimited by a semicolon, and numeric subkeys will be generated: 0,1,2..."/>
<columnDefinition name="Icon_" type="string" length="72" nullable="yes" modularize="icon"
keyTable="Icon" keyColumn="1" category="identifier" description="Optional foreign key into the Icon Table, specifying the icon file associated with this CLSID. Will be written under the DefaultIcon key."/>
<columnDefinition name="IconIndex" type="number" length="2" nullable="yes"
minValue="-32767" maxValue="32767" description="Optional icon index."/>
<columnDefinition name="DefInprocHandler" type="string" length="32" nullable="yes"
category="filename" set="1;2;3" description="Optional default inproc handler. Only optionally provided if Context=CLSCTX_LOCAL_SERVER. Typically "ole32.dll" or "mapi32.dll""/>
<columnDefinition name="Argument" type="string" length="255" nullable="yes"
category="formatted" description="optional argument for LocalServers."/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="Required foreign key into the Feature Table, specifying the feature to validate or install in order for the CLSID factory to be operational."/>
<columnDefinition name="Attributes" type="number" length="2" nullable="yes"
maxValue="32767" description="Class registration attributes."/>
</tableDefinition>
<tableDefinition name="Component" createSymbols="yes">
<columnDefinition name="Component" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key used to identify a particular component record."/>
<columnDefinition name="ComponentId" type="string" length="38" nullable="yes"
category="guid" description="A string GUID unique to this component, version, and language."/>
<columnDefinition name="Directory_" type="string" length="72" modularize="column"
keyTable="Directory" keyColumn="1" category="identifier" description="Required key of a Directory table record. This is actually a property name whose value contains the actual path, set either by the AppSearch action or with the default setting obtained from the Directory table."/>
<columnDefinition name="Attributes" type="number" length="2"
description="Remote execution option, one of irsEnum"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition" description="A conditional statement that will disable this component if the specified condition evaluates to the 'True' state. If a component is disabled, it will not be installed, regardless of the 'Action' state associated with the component."/>
<columnDefinition name="KeyPath" type="string" length="72" nullable="yes" modularize="column"
keyTable="File;Registry;ODBCDataSource" keyColumn="1" category="identifier" description="Either the primary key into the File table, Registry table, or ODBCDataSource table. This extract path is stored when the component is installed, and is used to detect the presence of the component and to return the path to it."/>
</tableDefinition>
<tableDefinition name="Icon" createSymbols="yes">
<columnDefinition name="Name" type="string" length="72" primaryKey="yes" modularize="icon"
category="identifier" description="Primary key. Name of the icon file."/>
<columnDefinition name="Data" type="object" length="0"
category="binary" description="Binary stream. The binary icon data in PE (.DLL or .EXE) or icon (.ICO) format."/>
</tableDefinition>
<tableDefinition name="ProgId">
<columnDefinition name="ProgId" type="string" length="255" primaryKey="yes"
category="text" description="The Program Identifier. Primary key."/>
<columnDefinition name="ProgId_Parent" type="string" length="255" nullable="yes"
keyTable="ProgId" keyColumn="1" category="text" description="The Parent Program Identifier. If specified, the ProgId column becomes a version independent prog id."/>
<columnDefinition name="Class_" type="string" length="38" nullable="yes"
keyTable="Class" keyColumn="1" category="guid" description="The CLSID of an OLE factory corresponding to the ProgId."/>
<columnDefinition name="Description" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Localized description for the Program identifier."/>
<columnDefinition name="Icon_" type="string" length="72" nullable="yes" modularize="icon"
keyTable="Icon" keyColumn="1" category="identifier" description="Optional foreign key into the Icon Table, specifying the icon file associated with this ProgId. Will be written under the DefaultIcon key."/>
<columnDefinition name="IconIndex" type="number" length="2" nullable="yes"
minValue="-32767" maxValue="32767" description="Optional icon index."/>
</tableDefinition>
<tableDefinition name="ComboBox">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A named property to be tied to this item. All the items tied to the same property become part of the same combobox."/>
<columnDefinition name="Order" type="number" length="2" primaryKey="yes"
minValue="1" maxValue="32767" description="A positive integer used to determine the ordering of the items within one list. The integers do not have to be consecutive."/>
<columnDefinition name="Value" type="string" length="64" modularize="property" localizable="yes"
category="formatted" description="The value string associated with this item. Selecting the line will set the associated property to this value."/>
<columnDefinition name="Text" type="localized" length="64" nullable="yes" modularize="property" escapeIdtCharacters="yes"
category="formatted" description="The visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value."/>
</tableDefinition>
<tableDefinition name="CompLocator">
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The table key. The Signature_ represents a unique file signature and is also the foreign key in the Signature table."/>
<columnDefinition name="ComponentId" type="string" length="38"
category="guid" description="A string GUID unique to this component, version, and language."/>
<columnDefinition name="Type" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="A boolean value that determines if the registry value is a filename or a directory location."/>
</tableDefinition>
<tableDefinition name="Complus">
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key referencing Component that controls the ComPlus component."/>
<columnDefinition name="ExpType" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="ComPlus component attributes."/>
</tableDefinition>
<tableDefinition name="Directory" createSymbols="yes">
<columnDefinition name="Directory" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Unique identifier for directory entry, primary key. If a property by this name is defined, it contains the full path to the directory."/>
<columnDefinition name="Directory_Parent" type="string" length="72" nullable="yes" modularize="column"
keyTable="Directory" keyColumn="1" category="identifier" description="Reference to the entry in this table specifying the default parent directory. A record parented to itself or with a Null parent represents a root of the install tree."/>
<columnDefinition name="DefaultDir" type="localized" length="255"
category="defaultDir" description="The default sub-path under parent's path."/>
</tableDefinition>
<tableDefinition name="Control">
<columnDefinition name="Dialog_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Dialog" keyColumn="1" category="identifier" description="External key to the Dialog table, name of the dialog."/>
<columnDefinition name="Control" type="string" length="50" primaryKey="yes"
category="identifier" description="Name of the control. This name must be unique within a dialog, but can repeat on different dialogs. "/>
<columnDefinition name="Type" type="string" length="20"
category="identifier" description="The type of the control."/>
<columnDefinition name="X" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Horizontal coordinate of the upper left corner of the bounding rectangle of the control."/>
<columnDefinition name="Y" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Vertical coordinate of the upper left corner of the bounding rectangle of the control."/>
<columnDefinition name="Width" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Width of the bounding rectangle of the control."/>
<columnDefinition name="Height" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="Height of the bounding rectangle of the control."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this control."/>
<columnDefinition name="Property" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="The name of a defined property to be linked to this control. "/>
<columnDefinition name="Text" type="localized" length="0" nullable="yes" modularize="controlText" escapeIdtCharacters="yes"
category="formatted" description="A string used to set the initial text contained within a control (if appropriate)."/>
<columnDefinition name="Control_Next" type="string" length="50" nullable="yes"
keyTable="Control" keyColumn="2" category="identifier" description="The name of an other control on the same dialog. This link defines the tab order of the controls. The links have to form one or more cycles!"/>
<columnDefinition name="Help" type="localized" length="50" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The help strings used with the button. The text is optional. "/>
</tableDefinition>
<tableDefinition name="Dialog" createSymbols="yes">
<columnDefinition name="Dialog" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Name of the dialog."/>
<columnDefinition name="HCentering" type="number" length="2"
minValue="0" maxValue="100" description="Horizontal position of the dialog on a 0-100 scale. 0 means left end, 100 means right end of the screen, 50 center."/>
<columnDefinition name="VCentering" type="number" length="2"
minValue="0" maxValue="100" description="Vertical position of the dialog on a 0-100 scale. 0 means top end, 100 means bottom end of the screen, 50 center."/>
<columnDefinition name="Width" type="number" length="2"
minValue="0" maxValue="32767" description="Width of the bounding rectangle of the dialog."/>
<columnDefinition name="Height" type="number" length="2"
minValue="0" maxValue="32767" description="Height of the bounding rectangle of the dialog."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this dialog."/>
<columnDefinition name="Title" type="localized" length="128" nullable="yes" modularize="property" escapeIdtCharacters="yes"
category="formatted" description="A text string specifying the title to be displayed in the title bar of the dialog's window."/>
<columnDefinition name="Control_First" type="string" length="50"
keyTable="Control" keyColumn="2" category="identifier" description="Defines the control that has the focus when the dialog is created."/>
<columnDefinition name="Control_Default" type="string" length="50" nullable="yes"
keyTable="Control" keyColumn="2" category="identifier" description="Defines the default control. Hitting return is equivalent to pushing this button."/>
<columnDefinition name="Control_Cancel" type="string" length="50" nullable="yes"
keyTable="Control" keyColumn="2" category="identifier" description="Defines the cancel control. Hitting escape or clicking on the close icon on the dialog is equivalent to pushing this button."/>
</tableDefinition>
<tableDefinition name="ControlCondition">
<columnDefinition name="Dialog_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Dialog" keyColumn="1" category="identifier" description="A foreign key to the Dialog table, name of the dialog."/>
<columnDefinition name="Control_" type="string" length="50" primaryKey="yes"
keyTable="Control" keyColumn="2" category="identifier" description="A foreign key to the Control table, name of the control."/>
<columnDefinition name="Action" type="string" length="50" primaryKey="yes"
set="Default;Disable;Enable;Hide;Show" description="The desired action to be taken on the specified control."/>
<columnDefinition name="Condition" type="string" length="255" primaryKey="yes" modularize="condition" localizable="yes"
category="condition" description="A standard conditional statement that specifies under which conditions the action should be triggered."/>
</tableDefinition>
<tableDefinition name="ControlEvent" createSymbols="yes">
<columnDefinition name="Dialog_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Dialog" keyColumn="1" category="identifier" description="A foreign key to the Dialog table, name of the dialog."/>
<columnDefinition name="Control_" type="string" length="50" primaryKey="yes"
keyTable="Control" keyColumn="2" category="identifier" description="A foreign key to the Control table, name of the control"/>
<columnDefinition name="Event" type="string" length="50" primaryKey="yes" modularize="property"
category="formatted" description="An identifier that specifies the type of the event that should take place when the user interacts with control specified by the first two entries."/>
<columnDefinition name="Argument" type="string" length="255" primaryKey="yes" modularize="controlEventArgument" localizable="yes"
category="formatted" description="A value to be used as a modifier when triggering a particular event."/>
<columnDefinition name="Condition" type="string" length="255" primaryKey="yes" nullable="yes" modularize="condition" localizable="yes"
category="condition" description="A standard conditional statement that specifies under which conditions an event should be triggered."/>
<columnDefinition name="Ordering" type="number" length="2" nullable="yes"
minValue="0" maxValue="2147483647" description="An integer used to order several events tied to the same control. Can be left blank."/>
</tableDefinition>
<tableDefinition name="CreateFolder">
<columnDefinition name="Directory_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Directory" keyColumn="1" category="identifier" description="Primary key, could be foreign key into the Directory table."/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table."/>
</tableDefinition>
<tableDefinition name="CustomAction" createSymbols="yes">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, name of action, normally appears in sequence table unless private use."/>
<columnDefinition name="Type" type="number" length="2"
minValue="1" maxValue="32767" description="The numeric custom action type, consisting of source location, code type, entry, option flags."/>
<columnDefinition name="Source" type="string" length="72" nullable="yes" modularize="column"
category="customSource" description="The table reference of the source of the code."/>
<columnDefinition name="Target" type="string" length="255" nullable="yes" modularize="property" escapeIdtCharacters="yes" localizable="yes"
category="formatted" description="Excecution parameter, depends on the type of custom action"/>
<columnDefinition name="ExtendedType" type="number" length="4" nullable="yes" minValue="0" maxValue="2147483647"
description="A numeric custom action type that extends code type or option flags of the Type column."/>
</tableDefinition>
<tableDefinition name="DrLocator" createSymbols="yes">
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The Signature_ represents a unique file signature and is also the foreign key in the Signature table."/>
<columnDefinition name="Parent" type="string" length="72" primaryKey="yes" nullable="yes" modularize="column"
category="identifier" description="The parent file signature. It is also a foreign key in the Signature table. If null and the Path column does not expand to a full path, then all the fixed drives of the user system are searched using the Path."/>
<columnDefinition name="Path" type="string" length="255" primaryKey="yes" nullable="yes" modularize="property"
category="anyPath" description="The path on the user system. This is a either a subpath below the value of the Parent or a full path. The path may contain properties enclosed within [ ] that will be expanded."/>
<columnDefinition name="Depth" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The depth below the path to which the Signature_ is recursively searched. If absent, the depth is assumed to be 0."/>
</tableDefinition>
<tableDefinition name="DuplicateFile">
<columnDefinition name="FileKey" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key used to identify a particular file entry"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key referencing Component that controls the duplicate file."/>
<columnDefinition name="File_" type="string" length="72" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Foreign key referencing the source file to be duplicated."/>
<columnDefinition name="DestName" type="localized" length="255" nullable="yes"
category="filename" description="Filename to be given to the duplicate file."/>
<columnDefinition name="DestFolder" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Name of a property whose value is assumed to resolve to the full pathname to a destination folder."/>
</tableDefinition>
<tableDefinition name="Environment">
<columnDefinition name="Environment" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Unique identifier for the environmental variable setting"/>
<columnDefinition name="Name" type="localized" length="255"
category="text" description="The name of the environmental value."/>
<columnDefinition name="Value" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="The value to set in the environmental settings."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table referencing component that controls the installing of the environmental value."/>
</tableDefinition>
<tableDefinition name="Error" createSymbols="yes">
<columnDefinition name="Error" type="number" length="2" primaryKey="yes"
minValue="0" maxValue="32767" description="Integer error number, obtained from header file IError(...) macros."/>
<columnDefinition name="Message" type="localized" length="0" nullable="yes" escapeIdtCharacters="yes" useCData="yes" modularize="property"
category="template" description="Error formatting template, obtained from user ed. or localizers."/>
</tableDefinition>
<tableDefinition name="EventMapping">
<columnDefinition name="Dialog_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Dialog" keyColumn="1" category="identifier" description="A foreign key to the Dialog table, name of the Dialog."/>
<columnDefinition name="Control_" type="string" length="50" primaryKey="yes"
keyTable="Control" keyColumn="2" category="identifier" description="A foreign key to the Control table, name of the control."/>
<columnDefinition name="Event" type="string" length="50" primaryKey="yes"
category="identifier" description="An identifier that specifies the type of the event that the control subscribes to."/>
<columnDefinition name="Attribute" type="string" length="50"
category="identifier" description="The name of the control attribute, that is set when this event is received."/>
</tableDefinition>
<tableDefinition name="Extension">
<columnDefinition name="Extension" type="string" length="255" primaryKey="yes"
category="text" description="The extension associated with the table row."/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table, specifying the component for which to return a path when called through LocateComponent."/>
<columnDefinition name="ProgId_" type="string" length="255" nullable="yes"
keyTable="ProgId" keyColumn="1" category="text" description="Optional ProgId associated with this extension."/>
<columnDefinition name="MIME_" type="string" length="64" nullable="yes"
keyTable="MIME" keyColumn="1" category="text" description="Optional Context identifier, typically "type/format" associated with the extension"/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="Required foreign key into the Feature Table, specifying the feature to validate or install in order for the CLSID factory to be operational."/>
</tableDefinition>
<tableDefinition name="MIME">
<columnDefinition name="ContentType" type="string" length="64" primaryKey="yes"
category="text" description="Primary key. Context identifier, typically "type/format"."/>
<columnDefinition name="Extension_" type="string" length="255"
keyTable="Extension" keyColumn="1" category="text" description="Optional associated extension (without dot)"/>
<columnDefinition name="CLSID" type="string" length="38" nullable="yes"
category="guid" description="Optional associated CLSID."/>
</tableDefinition>
<tableDefinition name="FeatureComponents">
<columnDefinition name="Feature_" type="string" length="38" primaryKey="yes"
keyTable="Feature" keyColumn="1" category="identifier" description="Foreign key into Feature table."/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into Component table."/>
</tableDefinition>
<tableDefinition name="FileSFPCatalog">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="File associated with the catalog"/>
<columnDefinition name="SFPCatalog_" type="string" length="255" primaryKey="yes"
keyTable="SFPCatalog" keyColumn="1" category="filename" description="Catalog associated with the file"/>
</tableDefinition>
<tableDefinition name="SFPCatalog">
<columnDefinition name="SFPCatalog" type="string" length="255" primaryKey="yes"
category="filename" description="File name for the catalog."/>
<columnDefinition name="Catalog" type="object" length="0"
category="binary" description="SFP Catalog"/>
<columnDefinition name="Dependency" type="string" length="0" nullable="yes" modularize="property"
category="formatted" description="Parent catalog - only used by SFP"/>
</tableDefinition>
<tableDefinition name="Font">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Primary key, foreign key into File table referencing font file."/>
<columnDefinition name="FontTitle" type="string" length="128" nullable="yes"
category="text" description="Font name."/>
</tableDefinition>
<tableDefinition name="IniFile">
<columnDefinition name="IniFile" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="FileName" type="localized" length="255"
category="filename" description="The .INI file name in which to write the information"/>
<columnDefinition name="DirProperty" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Foreign key into the Directory table denoting the directory where the .INI file is."/>
<columnDefinition name="Section" type="localized" length="96" modularize="property"
category="formatted" description="The .INI file Section."/>
<columnDefinition name="Key" type="localized" length="128" modularize="property"
category="formatted" description="The .INI file key below Section."/>
<columnDefinition name="Value" type="localized" length="255" modularize="property" escapeIdtCharacters="yes"
category="formatted" description="The value to be written."/>
<columnDefinition name="Action" type="number" length="2"
set="0;1;3" description="The type of modification to be made, one of iifEnum"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table referencing component that controls the installing of the .INI value."/>
</tableDefinition>
<tableDefinition name="IniLocator">
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The table key. The Signature_ represents a unique file signature and is also the foreign key in the Signature table."/>
<columnDefinition name="FileName" type="string" length="255"
category="filename" description="The .INI file name."/>
<columnDefinition name="Section" type="string" length="96"
category="text" description="Section name within in file (within square brackets in INI file)."/>
<columnDefinition name="Key" type="string" length="128"
category="text" description="Key value (followed by an equals sign in INI file)."/>
<columnDefinition name="Field" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The field in the .INI line. If Field is null or 0 the entire line is read."/>
<columnDefinition name="Type" type="number" length="2" nullable="yes"
minValue="0" maxValue="2" description="An integer value that determines if the .INI value read is a filename or a directory location or to be used as is w/o interpretation."/>
</tableDefinition>
<tableDefinition name="InstallExecuteSequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="InstallUISequence">
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of action to invoke, either in the engine or the handler DLL."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Number that determines the sort order in which the actions are to be executed. Leave blank to suppress action."/>
</tableDefinition>
<tableDefinition name="IsolatedComponent">
<columnDefinition name="Component_Shared" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Key to Component table item to be isolated"/>
<columnDefinition name="Component_Application" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Key to Component table item for application"/>
</tableDefinition>
<tableDefinition name="LaunchCondition">
<columnDefinition name="Condition" type="string" length="255" primaryKey="yes" localizable="yes"
category="condition" description="Expression which must evaluate to TRUE in order for install to commence."/>
<columnDefinition name="Description" type="localized" length="255" escapeIdtCharacters="yes"
category="formatted" description="Localizable text to display when condition fails and install must abort."/>
</tableDefinition>
<tableDefinition name="ListBox">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A named property to be tied to this item. All the items tied to the same property become part of the same listbox."/>
<columnDefinition name="Order" type="number" length="2" primaryKey="yes"
minValue="1" maxValue="32767" description="A positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive."/>
<columnDefinition name="Value" type="string" length="64" modularize="property"
category="formatted" description="The value string associated with this item. Selecting the line will set the associated property to this value."/>
<columnDefinition name="Text" type="localized" length="64" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value."/>
</tableDefinition>
<tableDefinition name="ListView">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A named property to be tied to this item. All the items tied to the same property become part of the same listview."/>
<columnDefinition name="Order" type="number" length="2" primaryKey="yes"
minValue="1" maxValue="32767" description="A positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive."/>
<columnDefinition name="Value" type="string" length="64" modularize="property"
category="formatted" description="The value string associated with this item. Selecting the line will set the associated property to this value."/>
<columnDefinition name="Text" type="localized" length="64" nullable="yes" escapeIdtCharacters="yes" modularize="property"
category="formatted" description="The visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value."/>
<columnDefinition name="Binary_" type="string" length="72" nullable="yes" modularize="column"
keyTable="Binary" keyColumn="1" category="identifier" description="The name of the icon to be displayed with the icon. The binary information is looked up from the Binary Table."/>
</tableDefinition>
<tableDefinition name="LockPermissions">
<columnDefinition name="LockObject" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Foreign key into Registry or File table"/>
<columnDefinition name="Table" type="string" length="32" primaryKey="yes"
category="identifier" set="Directory;File;Registry" description="Reference to another table name"/>
<columnDefinition name="Domain" type="string" length="255" primaryKey="yes" nullable="yes" modularize="property"
category="formatted" description="Domain name for user whose permissions are being set. (usually a property)"/>
<columnDefinition name="User" type="string" length="255" primaryKey="yes" modularize="property"
category="formatted" description="User for permissions to be set. (usually a property)"/>
<columnDefinition name="Permission" type="number" length="4" nullable="yes"
minValue="-2147483647" maxValue="2147483647" description="Permission Access mask. Full Control = 268435456 (GENERIC_ALL = 0x10000000)"/>
</tableDefinition>
<tableDefinition name="MsiLockPermissionsEx">
<columnDefinition name="MsiLockPermissionsEx" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token"/>
<columnDefinition name="LockObject" type="string" length="72" modularize="column"
category="identifier" description="Foreign key into Registry, File, CreateFolder, or ServiceInstall table"/>
<columnDefinition name="Table" type="string" length="32"
category="identifier" set="CreateFolder;File;Registry;ServiceInstall" description="Reference to another table name"/>
<columnDefinition name="SDDLText" type="string" length="0" modularize="property"
category="formattedSddl" description="String to indicate permissions to be applied to the LockObject"/>
<columnDefinition name="Condition" type="string" length="255" modularize="property" nullable="yes"
category="formatted" description="Expression which must evaluate to TRUE in order for this set of permissions to be applied"/>
</tableDefinition>
<tableDefinition name="Media" createSymbols="yes">
<columnDefinition name="DiskId" type="number" length="2" primaryKey="yes"
minValue="1" maxValue="32767" description="Primary key, integer to determine sort order for table."/>
<columnDefinition name="LastSequence" type="number" length="4"
minValue="0" maxValue="2147483647" description="File sequence number for the last file for this media."/>
<columnDefinition name="DiskPrompt" type="localized" length="64" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Disk name: the visible text actually printed on the disk. This will be used to prompt the user when this disk needs to be inserted."/>
<columnDefinition name="Cabinet" type="string" length="255" nullable="yes"
category="cabinet" description="If some or all of the files stored on the media are compressed in a cabinet, the name of that cabinet."/>
<columnDefinition name="VolumeLabel" type="string" length="32" nullable="yes"
category="text" description="The label attributed to the volume."/>
<columnDefinition name="Source" type="string" length="72" nullable="yes"
category="property" description="The property defining the location of the cabinet file."/>
</tableDefinition>
<tableDefinition name="MoveFile">
<columnDefinition name="FileKey" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key that uniquely identifies a particular MoveFile record"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="If this component is not "selected" for installation or removal, no action will be taken on the associated MoveFile entry"/>
<columnDefinition name="SourceName" type="localized" length="255" nullable="yes"
category="text" description="Name of the source file(s) to be moved or copied. Can contain the '*' or '?' wildcards."/>
<columnDefinition name="DestName" type="localized" length="255" nullable="yes"
category="filename" description="Name to be given to the original file after it is moved or copied. If blank, the destination file will be given the same name as the source file"/>
<columnDefinition name="SourceFolder" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Name of a property whose value is assumed to resolve to the full path to the source directory"/>
<columnDefinition name="DestFolder" type="string" length="72" modularize="column"
category="identifier" description="Name of a property whose value is assumed to resolve to the full path to the destination directory"/>
<columnDefinition name="Options" type="number" length="2"
minValue="0" maxValue="1" description="Integer value specifying the MoveFile operating mode, one of imfoEnum"/>
</tableDefinition>
<tableDefinition name="MsiAssembly">
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into Component table."/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="Foreign key into Feature table."/>
<columnDefinition name="File_Manifest" type="string" length="72" nullable="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Foreign key into the File table denoting the manifest file for the assembly."/>
<columnDefinition name="File_Application" type="string" length="72" nullable="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Foreign key into File table, denoting the application context for private assemblies. Null for global assemblies."/>
<columnDefinition name="Attributes" type="number" length="2" nullable="yes"
description="Assembly attributes"/>
</tableDefinition>
<tableDefinition name="MsiAssemblyName">
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into Component table."/>
<columnDefinition name="Name" type="string" length="255" primaryKey="yes"
category="text" description="The name part of the name-value pairs for the assembly name."/>
<columnDefinition name="Value" type="string" length="255"
category="text" description="The value part of the name-value pairs for the assembly name."/>
</tableDefinition>
<tableDefinition name="MsiDigitalCertificate">
<columnDefinition name="DigitalCertificate" type="string" length="72" primaryKey="yes"
category="identifier" description="A unique identifier for the row"/>
<columnDefinition name="CertData" type="object" length="0"
category="binary" description="A certificate context blob for a signer certificate"/>
</tableDefinition>
<tableDefinition name="MsiDigitalSignature">
<columnDefinition name="Table" type="string" length="32" primaryKey="yes"
set="Media" description="Reference to another table name (only Media table is supported)"/>
<columnDefinition name="SignObject" type="string" length="72" primaryKey="yes"
category="text" description="Foreign key to Media table"/>
<columnDefinition name="DigitalCertificate_" type="string" length="72"
keyTable="MsiDigitalCertificate" keyColumn="1" category="identifier" description="Foreign key to MsiDigitalCertificate table identifying the signer certificate"/>
<columnDefinition name="Hash" type="object" length="0" nullable="yes"
category="binary" description="The encoded hash blob from the digital signature"/>
</tableDefinition>
<tableDefinition name="MsiEmbeddedChainer" createSymbols="yes">
<columnDefinition name="MsiEmbeddedChainer" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The primary key for the table."/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"
category="condition" description="A conditional statement for running the user-defined function."/>
<columnDefinition name="CommandLine" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="The value in this field is a part of the command line string passed to the executable file identified in the Source column."/>
<columnDefinition name="Source" type="string" length="72" modularize="column"
category="customSource" description="The location of the executable file for the user-defined function."/>
<columnDefinition name="Type" type="number" length="2"
set="2;18;50" description="The functions listed in the MsiEmbeddedChainer table are described using the following custom action numeric types."/>
</tableDefinition>
<tableDefinition name="MsiEmbeddedUI">
<columnDefinition name="MsiEmbeddedUI" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The primary key for the table."/>
<columnDefinition name="FileName" type="localized" length="255"
category="text" description="The name of the file that receives the binary information in the Data column."/>
<columnDefinition name="Attributes" type="number" length="2"
set="0;1;2;3" description="Information about the data in the Data column."/>
<columnDefinition name="MessageFilter" type="number" length="4" nullable="yes"
description="Specifies the types of messages that are sent to the user interface DLL."/>
<columnDefinition name="Data" type="object" length="0"
category="binary" description="This column contains binary information."/>
</tableDefinition>
<tableDefinition name="MsiFileHash">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Primary key, foreign key into File table referencing file with this hash"/>
<columnDefinition name="Options" type="number" length="2"
minValue="0" maxValue="32767" description="Various options and attributes for this hash."/>
<columnDefinition name="HashPart1" type="number" length="4"
description="Size of file in bytes (long integer)."/>
<columnDefinition name="HashPart2" type="number" length="4"
description="Size of file in bytes (long integer)."/>
<columnDefinition name="HashPart3" type="number" length="4"
description="Size of file in bytes (long integer)."/>
<columnDefinition name="HashPart4" type="number" length="4"
description="Size of file in bytes (long integer)."/>
</tableDefinition>
<tableDefinition name="MsiPackageCertificate">
<columnDefinition name="PackageCertificate" type="string" length="72" primaryKey="yes"
category="identifier" description="Primary key. A unique identifier for the row."/>
<columnDefinition name="DigitalCertificate_" type="string" length="72" primaryKey="yes"
keyTable="MsiDigitalCertificate" keyColumn="1" category="identifier" description="Foreign key to MsiDigitalCertificate table identifying the signer certificate."/>
</tableDefinition>
<tableDefinition name="MsiPatchCertificate">
<columnDefinition name="PatchCertificate" type="string" length="72" primaryKey="yes"
category="identifier" description="Primary key. A unique identifier for the row."/>
<columnDefinition name="DigitalCertificate_" type="string" length="72" primaryKey="yes"
keyTable="MsiDigitalCertificate" keyColumn="1" category="identifier" description="Foreign key to MsiDigitalCertificate table identifying the signer certificate."/>
</tableDefinition>
<tableDefinition name="MsiPatchHeaders">
<columnDefinition name="StreamRef" type="string" length="38" primaryKey="yes"
category="identifier" description="Primary key. A unique identifier for the row."/>
<columnDefinition name="Header" type="object" length="0"
category="binary" description="Binary stream. The patch header, used for patch validation."/>
</tableDefinition>
<tableDefinition name="PatchMetadata">
<columnDefinition name="Company" type="string" length="72" primaryKey="yes" nullable="yes"
category="identifier" description="Primary key. The name of the company."/>
<columnDefinition name="Property" type="string" length="72" primaryKey="yes"
category="identifier" description="Primary key. The name of the property."/>
<columnDefinition name="Value" type="localized" length="0" escapeIdtCharacters="yes"
category="text" description="Non-null, non-empty value of the metadata property."/>
</tableDefinition>
<tableDefinition name="MsiPatchMetadata">
<columnDefinition name="Company" type="string" length="72" primaryKey="yes" nullable="yes"
/>
<columnDefinition name="Property" type="string" length="72" primaryKey="yes"
/>
<columnDefinition name="Value" type="localized" length="0"
/>
</tableDefinition>
<tableDefinition name="MsiPatchOldAssemblyFile">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Foreign key into File table. Patch-only table."/>
<columnDefinition name="Assembly_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="MsiPatchOldAssemblyName" keyColumn="1" category="identifier" description="Foreign key into MsiPatchOldAssemblyName table."/>
</tableDefinition>
<tableDefinition name="MsiPatchOldAssemblyName">
<columnDefinition name="Assembly" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A unique identifier for the row."/>
<columnDefinition name="Name" type="string" length="255" primaryKey="yes"
category="text" description="The name part of the name-value pairs for the assembly name. This represents the old name for the assembly."/>
<columnDefinition name="Value" type="string" length="255"
category="text" description="The value part of the name-value pairs for the assembly name. This represents the old name for the assembly."/>
</tableDefinition>
<tableDefinition name="PatchSequence">
<columnDefinition name="PatchFamily" type="string" length="72" primaryKey="yes"
category="identifier" description="Primary key. The name of the family for the patch."/>
<columnDefinition name="Target" type="string" length="72" primaryKey="yes" nullable="yes"
category="text" description="Primary key. Determines product code filtering for family."/>
<columnDefinition name="Sequence" type="string" length="72" nullable="yes"
category="text" description="Sequence information in version (x.x.x.x) format."/>
<columnDefinition name="Supersede" type="number" length="4" nullable="yes"
description="Indicates that this patch supersedes earlier patches."/>
</tableDefinition>
<tableDefinition name="MsiPatchSequence" createSymbols="yes">
<columnDefinition name="PatchFamily" type="string" length="72" primaryKey="yes"
/>
<columnDefinition name="ProductCode" type="string" length="38" primaryKey="yes" nullable="yes"
/>
<columnDefinition name="Sequence" type="string" length="72"
/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
/>
</tableDefinition>
<tableDefinition name="ODBCAttribute">
<columnDefinition name="Driver_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="ODBCDriver" keyColumn="1" category="identifier" description="Reference to ODBC driver in ODBCDriver table"/>
<columnDefinition name="Attribute" type="string" length="40" primaryKey="yes"
category="text" description="Name of ODBC driver attribute"/>
<columnDefinition name="Value" type="localized" length="255" nullable="yes"
category="formatted" description="Value for ODBC driver attribute"/>
</tableDefinition>
<tableDefinition name="ODBCDriver">
<columnDefinition name="Driver" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized.internal token for driver"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Reference to associated component"/>
<columnDefinition name="Description" type="string" length="255"
category="text" description="Text used as registered name for driver, non-localized"/>
<columnDefinition name="File_" type="string" length="72" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Reference to key driver file"/>
<columnDefinition name="File_Setup" type="string" length="72" nullable="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Optional reference to key driver setup DLL"/>
</tableDefinition>
<tableDefinition name="ODBCDataSource">
<columnDefinition name="DataSource" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized.internal token for data source"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Reference to associated component"/>
<columnDefinition name="Description" type="string" length="255"
category="text" description="Text used as registered name for data source"/>
<columnDefinition name="DriverDescription" type="string" length="255"
category="text" description="Reference to driver description, may be existing driver"/>
<columnDefinition name="Registration" type="number" length="2"
minValue="0" maxValue="1" description="Registration option: 0=machine, 1=user, others t.b.d."/>
</tableDefinition>
<tableDefinition name="ODBCSourceAttribute">
<columnDefinition name="DataSource_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="ODBCDataSource" keyColumn="1" category="identifier" description="Reference to ODBC data source in ODBCDataSource table"/>
<columnDefinition name="Attribute" type="string" length="32" primaryKey="yes"
category="text" description="Name of ODBC data source attribute"/>
<columnDefinition name="Value" type="localized" length="255" nullable="yes"
category="formatted" description="Value for ODBC data source attribute"/>
</tableDefinition>
<tableDefinition name="ODBCTranslator">
<columnDefinition name="Translator" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized.internal token for translator"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Reference to associated component"/>
<columnDefinition name="Description" type="string" length="255"
category="text" description="Text used as registered name for translator"/>
<columnDefinition name="File_" type="string" length="72" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Reference to key translator file"/>
<columnDefinition name="File_Setup" type="string" length="72" nullable="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Optional reference to key translator setup DLL"/>
</tableDefinition>
<tableDefinition name="Patch">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token, foreign key to File table, must match identifier in cabinet."/>
<columnDefinition name="Sequence" type="number" length="4" primaryKey="yes"
minValue="0" maxValue="2147483647" description="Primary key, sequence with respect to the media images; order must track cabinet order."/>
<columnDefinition name="PatchSize" type="number" length="4"
minValue="0" maxValue="2147483647" description="Size of patch in bytes (long integer)."/>
<columnDefinition name="Attributes" type="number" length="2"
minValue="0" maxValue="32767" description="Integer containing bit flags representing patch attributes"/>
<columnDefinition name="Header" type="object" length="0" nullable="yes"
category="binary" description="Binary stream. The patch header, used for patch validation."/>
<columnDefinition name="StreamRef_" type="string" length="38" nullable="yes"
category="identifier" description="Identifier. Foreign key to the StreamRef column of the MsiPatchHeaders table."/>
</tableDefinition>
<tableDefinition name="PatchPackage">
<columnDefinition name="PatchId" type="string" length="38" primaryKey="yes"
category="guid" description="A unique string GUID representing this patch."/>
<columnDefinition name="Media_" type="number" length="2"
minValue="0" maxValue="32767" description="Foreign key to DiskId column of Media table. Indicates the disk containing the patch package."/>
</tableDefinition>
<tableDefinition name="PublishComponent">
<columnDefinition name="ComponentId" type="string" length="38" primaryKey="yes"
category="guid" description="A string GUID that represents the component id that will be requested by the alien product."/>
<columnDefinition name="Qualifier" type="string" length="255" primaryKey="yes"
category="text" description="This is defined only when the ComponentId column is an Qualified Component Id. This is the Qualifier for ProvideComponentIndirect."/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table."/>
<columnDefinition name="AppData" type="localized" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="This is localisable Application specific data that can be associated with a Qualified Component."/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="Foreign key into the Feature table."/>
</tableDefinition>
<tableDefinition name="RadioButton">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="A named property to be tied to this radio button. All the buttons tied to the same property become part of the same group."/>
<columnDefinition name="Order" type="number" length="2" primaryKey="yes"
minValue="1" maxValue="32767" description="A positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive."/>
<columnDefinition name="Value" type="string" length="64" modularize="property" escapeIdtCharacters="yes"
category="formatted" description="The value string associated with this button. Selecting the button will set the associated property to this value."/>
<columnDefinition name="X" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="The horizontal coordinate of the upper left corner of the bounding rectangle of the radio button."/>
<columnDefinition name="Y" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="The vertical coordinate of the upper left corner of the bounding rectangle of the radio button."/>
<columnDefinition name="Width" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="The width of the button."/>
<columnDefinition name="Height" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="The height of the button."/>
<columnDefinition name="Text" type="localized" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The visible title to be assigned to the radio button."/>
<columnDefinition name="Help" type="localized" length="50" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The help strings used with the button. The text is optional."/>
</tableDefinition>
<tableDefinition name="Registry">
<columnDefinition name="Registry" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Root" type="number" length="2"
minValue="-1" maxValue="3" description="The predefined root key for the registry value, one of rrkEnum."/>
<columnDefinition name="Key" type="localized" length="255" modularize="property"
category="regPath" description="The key for the registry value."/>
<columnDefinition name="Name" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="The registry value name."/>
<columnDefinition name="Value" type="localized" length="0" nullable="yes" modularize="property" escapeIdtCharacters="yes"
category="formatted" description="The registry value."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table referencing component that controls the installing of the registry value."/>
</tableDefinition>
<tableDefinition name="RegLocator" createSymbols="yes">
<columnDefinition name="Signature_" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The table key. The Signature_ represents a unique file signature and is also the foreign key in the Signature table. If the type is 0, the registry values refers a directory, and _Signature is not a foreign key."/>
<columnDefinition name="Root" type="number" length="2"
minValue="0" maxValue="3" description="The predefined root key for the registry value, one of rrkEnum."/>
<columnDefinition name="Key" type="string" length="255" modularize="property" localizable="yes"
category="regPath" description="The key for the registry value."/>
<columnDefinition name="Name" type="string" length="255" nullable="yes" modularize="property" localizable="yes"
category="formatted" description="The registry value name."/>
<columnDefinition name="Type" type="number" length="2" nullable="yes"
minValue="0" maxValue="18" description="An integer value that determines if the registry value is a filename or a directory location or to be used as is w/o interpretation."/>
</tableDefinition>
<tableDefinition name="RemoveFile">
<columnDefinition name="FileKey" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key used to identify a particular file entry"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key referencing Component that controls the file to be removed."/>
<columnDefinition name="FileName" type="localized" length="255" nullable="yes"
category="wildCardFilename" description="Name of the file to be removed."/>
<columnDefinition name="DirProperty" type="string" length="72" modularize="column"
category="identifier" description="Name of a property whose value is assumed to resolve to the full pathname to the folder of the file to be removed."/>
<columnDefinition name="InstallMode" type="number" length="2"
set="1;2;3" description="Installation option, one of iimEnum."/>
</tableDefinition>
<tableDefinition name="RemoveIniFile">
<columnDefinition name="RemoveIniFile" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="FileName" type="localized" length="255"
category="filename" description="The .INI file name in which to delete the information"/>
<columnDefinition name="DirProperty" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Foreign key into the Directory table denoting the directory where the .INI file is."/>
<columnDefinition name="Section" type="localized" length="96" modularize="property"
category="formatted" description="The .INI file Section."/>
<columnDefinition name="Key" type="localized" length="128" modularize="property"
category="formatted" description="The .INI file key below Section."/>
<columnDefinition name="Value" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="The value to be deleted. The value is required when Action is iifIniRemoveTag"/>
<columnDefinition name="Action" type="number" length="2"
set="2;4" description="The type of modification to be made, one of iifEnum."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table referencing component that controls the deletion of the .INI value."/>
</tableDefinition>
<tableDefinition name="RemoveRegistry">
<columnDefinition name="RemoveRegistry" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Root" type="number" length="2"
minValue="-1" maxValue="3" description="The predefined root key for the registry value, one of rrkEnum"/>
<columnDefinition name="Key" type="localized" length="255" modularize="property"
category="regPath" description="The key for the registry value."/>
<columnDefinition name="Name" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="The registry value name."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table referencing component that controls the deletion of the registry value."/>
</tableDefinition>
<tableDefinition name="ReserveCost">
<columnDefinition name="ReserveKey" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key that uniquely identifies a particular ReserveCost record"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Reserve a specified amount of space if this component is to be installed."/>
<columnDefinition name="ReserveFolder" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Name of a property whose value is assumed to resolve to the full path to the destination directory"/>
<columnDefinition name="ReserveLocal" type="number" length="4"
minValue="0" maxValue="2147483647" description="Disk space to reserve if linked component is installed locally."/>
<columnDefinition name="ReserveSource" type="number" length="4"
minValue="0" maxValue="2147483647" description="Disk space to reserve if linked component is installed to run from the source location."/>
</tableDefinition>
<tableDefinition name="SelfReg">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="identifier" description="Foreign key into the File table denoting the module that needs to be registered."/>
<columnDefinition name="Cost" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The cost of registering the module."/>
</tableDefinition>
<tableDefinition name="ServiceControl">
<columnDefinition name="ServiceControl" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Name" type="localized" length="255" modularize="property"
category="formatted" description="Name of a service. /, \, comma and space are invalid"/>
<columnDefinition name="Event" type="number" length="2"
minValue="0" maxValue="187" description="Bit field: Install: 0x1 = Start, 0x2 = Stop, 0x8 = Delete, Uninstall: 0x10 = Start, 0x20 = Stop, 0x80 = Delete"/>
<columnDefinition name="Arguments" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="Arguments for the service. Separate by [~]."/>
<columnDefinition name="Wait" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Boolean for whether to wait for the service to fully start"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table that controls the startup of the service"/>
</tableDefinition>
<tableDefinition name="ServiceInstall">
<columnDefinition name="ServiceInstall" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Name" type="string" length="255" modularize="property"
category="formatted" description="Internal Name of the Service"/>
<columnDefinition name="DisplayName" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes" modularize="property"
category="formatted" description="External Name of the Service"/>
<columnDefinition name="ServiceType" type="number" length="4"
minValue="-2147483647" maxValue="2147483647" description="Type of the service"/>
<columnDefinition name="StartType" type="number" length="4"
minValue="0" maxValue="4" description="Type of the service"/>
<columnDefinition name="ErrorControl" type="number" length="4"
minValue="-2147483647" maxValue="2147483647" description="Severity of error if service fails to start"/>
<columnDefinition name="LoadOrderGroup" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="LoadOrderGroup"/>
<columnDefinition name="Dependencies" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="Other services this depends on to start. Separate by [~], and end with [~][~]"/>
<columnDefinition name="StartName" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="User or object name to run service as"/>
<columnDefinition name="Password" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="password to run service with. (with StartName)"/>
<columnDefinition name="Arguments" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="Arguments to include in every start of the service, passed to WinMain"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table that controls the startup of the service"/>
<columnDefinition name="Description" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes" modularize="property"
category="text" description="Description of service."/>
</tableDefinition>
<tableDefinition name="MsiServiceConfig">
<columnDefinition name="MsiServiceConfig" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Name" type="localized" length="255" modularize="property"
category="formatted" description="Name of a service. /, \, comma and space are invalid"/>
<columnDefinition name="Event" type="number" length="2"
minValue="0" maxValue="7" description="Bit field: 0x1 = Install, 0x2 = Uninstall, 0x4 = Reinstall"/>
<columnDefinition name="ConfigType" type="number" length="4"
minValue="-2147483647" maxValue="2147483647" description="Service Configuration Option"/>
<columnDefinition name="Argument" type="string" length="0" nullable="yes"
category="text" description="Argument(s) for service configuration. Value depends on the content of the ConfigType field"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table that controls the configuration of the service"/>
</tableDefinition>
<tableDefinition name="MsiServiceConfigFailureActions">
<columnDefinition name="MsiServiceConfigFailureActions" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token"/>
<columnDefinition name="Name" type="localized" length="255" modularize="property"
category="formatted" description="Name of a service. /, \, comma and space are invalid"/>
<columnDefinition name="Event" type="number" length="2"
minValue="0" maxValue="7" description="Bit field: 0x1 = Install, 0x2 = Uninstall, 0x4 = Reinstall"/>
<columnDefinition name="ResetPeriod" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="Time in seconds after which to reset the failure count to zero. Leave blank if it should never be reset"/>
<columnDefinition name="RebootMessage" type="localized" length="255" nullable="yes"
category="formatted" description="Message to be broadcast to server users before rebooting"/>
<columnDefinition name="Command" type="localized" length="255" nullable="yes"
category="formatted" description="Command line of the process to CreateProcess function to execute"/>
<columnDefinition name="Actions" type="string" length="0" nullable="yes"
category="text" description="A list of integer actions separated by [~] delimiters: 0 = SC_ACTION_NONE, 1 = SC_ACTION_RESTART, 2 = SC_ACTION_REBOOT, 3 = SC_ACTION_RUN_COMMAND. Terminate with [~][~]"/>
<columnDefinition name="DelayActions" type="string" length="0" nullable="yes"
category="text" description="A list of delays (time in milli-seconds), separated by [~] delmiters, to wait before taking the corresponding Action. Terminate with [~][~]"/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table that controls the configuration of failure actions for the service"/>
</tableDefinition>
<tableDefinition name="Shortcut">
<columnDefinition name="Shortcut" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token."/>
<columnDefinition name="Directory_" type="string" length="72" modularize="column"
keyTable="Directory" keyColumn="1" category="identifier" description="Foreign key into the Directory table denoting the directory where the shortcut file is created."/>
<columnDefinition name="Name" type="localized" length="128"
category="filename" description="The name of the shortcut to be created."/>
<columnDefinition name="Component_" type="string" length="72" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion."/>
<columnDefinition name="Target" type="string" length="72" modularize="property"
category="shortcut" description="The shortcut target. This is usually a property that is expanded to a file or a folder that the shortcut points to."/>
<columnDefinition name="Arguments" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="The command-line arguments for the shortcut."/>
<columnDefinition name="Description" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The description for the shortcut."/>
<columnDefinition name="Hotkey" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte. "/>
<columnDefinition name="Icon_" type="string" length="72" nullable="yes" modularize="icon"
keyTable="Icon" keyColumn="1" category="identifier" description="Foreign key into the File table denoting the external icon file for the shortcut."/>
<columnDefinition name="IconIndex" type="number" length="2" nullable="yes"
minValue="-32767" maxValue="32767" description="The icon index for the shortcut."/>
<columnDefinition name="ShowCmd" type="number" length="2" nullable="yes"
set="1;3;7" description="The show command for the application window.The following values may be used."/>
<columnDefinition name="WkDir" type="string" length="72" nullable="yes" modularize="column"
category="identifier" description="Name of property defining location of working directory."/>
<columnDefinition name="DisplayResourceDLL" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="The Formatted string providing the full path to the language neutral file containing the MUI Manifest."/>
<columnDefinition name="DisplayResourceId" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The display name index for the shortcut. This must be a non-negative number."/>
<columnDefinition name="DescriptionResourceDLL" type="string" length="255" nullable="yes" modularize="property"
category="formatted" description="The Formatted string providing the full path to the language neutral file containing the MUI Manifest."/>
<columnDefinition name="DescriptionResourceId" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="The description name index for the shortcut. This must be a non-negative number."/>
</tableDefinition>
<tableDefinition name="MsiShortcutProperty">
<columnDefinition name="MsiShortcutProperty" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Primary key, non-localized token"/>
<columnDefinition name="Shortcut_" type="string" length="72" modularize="column"
keyTable="Shortcut" keyColumn="1" category="identifier" description="Foreign key into the Shortcut table"/>
<columnDefinition name="PropertyKey" type="string" length="0" modularize="property"
category="formatted" description="Canonical string representation of the Property Key being set"/>
<columnDefinition name="PropVariantValue" type="string" length="0" modularize="property"
category="formatted" description="String representation of the value in the property"/>
</tableDefinition>
<tableDefinition name="Signature" createSymbols="yes">
<columnDefinition name="Signature" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="The table key. The Signature represents a unique file signature."/>
<columnDefinition name="FileName" type="string" length="255"
category="text" description="The name of the file. This may contain a "short name|long name" pair."/>
<columnDefinition name="MinVersion" type="string" length="20" nullable="yes"
category="text" description="The minimum version of the file."/>
<columnDefinition name="MaxVersion" type="string" length="20" nullable="yes"
category="text" description="The maximum version of the file."/>
<columnDefinition name="MinSize" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="The minimum size of the file."/>
<columnDefinition name="MaxSize" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="The maximum size of the file. "/>
<columnDefinition name="MinDate" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="The minimum creation date of the file."/>
<columnDefinition name="MaxDate" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="The maximum creation date of the file."/>
<columnDefinition name="Languages" type="string" length="255" nullable="yes"
category="language" description="The languages supported by the file."/>
</tableDefinition>
<tableDefinition name="TextStyle">
<columnDefinition name="TextStyle" type="string" length="72" primaryKey="yes"
category="identifier" description="Name of the style. The primary key of this table. This name is embedded in the texts to indicate a style change."/>
<columnDefinition name="FaceName" type="string" length="32" localizable="yes"
category="text" description="A string indicating the name of the font used. Required. The string must be at most 31 characters long."/>
<columnDefinition name="Size" type="number" length="2" localizable="yes"
minValue="0" maxValue="32767" description="The size of the font used. This size is given in our units (1/12 of the system font height). Assuming that the system font is set to 12 point size, this is equivalent to the point size."/>
<columnDefinition name="Color" type="number" length="4" nullable="yes"
minValue="0" maxValue="16777215" description="A long integer indicating the color of the string in the RGB format (Red, Green, Blue each 0-255, RGB = R + 256*G + 256^2*B)."/>
<columnDefinition name="StyleBits" type="number" length="2" nullable="yes"
minValue="0" maxValue="15" description="A combination of style bits."/>
</tableDefinition>
<tableDefinition name="TypeLib">
<columnDefinition name="LibID" type="string" length="38" primaryKey="yes"
category="guid" description="The GUID that represents the library."/>
<columnDefinition name="Language" type="number" length="2" primaryKey="yes"
minValue="0" maxValue="32767" description="The language of the library."/>
<columnDefinition name="Component_" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Required foreign key into the Component Table, specifying the component for which to return a path when called through LocateComponent."/>
<columnDefinition name="Version" type="number" length="4" nullable="yes"
minValue="0" maxValue="16777215" description="The version of the library. The minor version is in the lower 8 bits of the integer. The major version is in the next 16 bits. "/>
<columnDefinition name="Description" type="localized" length="128" nullable="yes" escapeIdtCharacters="yes"
category="text"/>
<columnDefinition name="Directory_" type="string" length="72" nullable="yes" modularize="column"
keyTable="Directory" keyColumn="1" category="identifier" description="Optional. The foreign key into the Directory table denoting the path to the help file for the type library."/>
<columnDefinition name="Feature_" type="string" length="38"
keyTable="Feature" keyColumn="1" category="identifier" description="Required foreign key into the Feature Table, specifying the feature to validate or install in order for the type library to be operational."/>
<columnDefinition name="Cost" type="number" length="4" nullable="yes"
minValue="0" maxValue="2147483647" description="The cost associated with the registration of the typelib. This column is currently optional."/>
</tableDefinition>
<tableDefinition name="UIText">
<columnDefinition name="Key" type="string" length="72" primaryKey="yes"
category="identifier" description="A unique key that identifies the particular string."/>
<columnDefinition name="Text" type="localized" length="255" nullable="yes" escapeIdtCharacters="yes"
category="text" description="The localized version of the string."/>
</tableDefinition>
<tableDefinition name="Upgrade">
<columnDefinition name="UpgradeCode" type="string" length="38" primaryKey="yes"
category="guid" description="The UpgradeCode GUID belonging to the products in this set."/>
<columnDefinition name="VersionMin" type="string" length="20" primaryKey="yes" nullable="yes"
category="text" description="The minimum ProductVersion of the products in this set. The set may or may not include products with this particular version."/>
<columnDefinition name="VersionMax" type="string" length="20" primaryKey="yes" nullable="yes"
category="text" description="The maximum ProductVersion of the products in this set. The set may or may not include products with this particular version."/>
<columnDefinition name="Language" type="string" length="255" primaryKey="yes" nullable="yes" localizable="yes"
category="language" description="A comma-separated list of languages for either products in this set or products not in this set."/>
<columnDefinition name="Attributes" type="number" length="4" primaryKey="yes"
minValue="0" maxValue="2147483647" description="The attributes of this product set."/>
<columnDefinition name="Remove" type="string" length="255" nullable="yes"
category="formatted" description="The list of features to remove when uninstalling a product from this set. The default is "ALL"."/>
<columnDefinition name="ActionProperty" type="string" length="72"
category="upperCase" description="The property to set when a product in this set is found."/>
</tableDefinition>
<tableDefinition name="Verb">
<columnDefinition name="Extension_" type="string" length="255" primaryKey="yes"
keyTable="Extension" keyColumn="1" category="text" description="The extension associated with the table row."/>
<columnDefinition name="Verb" type="string" length="32" primaryKey="yes"
category="text" description="The verb for the command."/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="0" maxValue="32767" description="Order within the verbs for a particular extension. Also used simply to specify the default verb."/>
<columnDefinition name="Command" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="The command text."/>
<columnDefinition name="Argument" type="localized" length="255" nullable="yes" modularize="property"
category="formatted" description="Optional value for the command arguments."/>
</tableDefinition>
<!-- Merge Module -->
<tableDefinition name="ModuleAdminExecuteSequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleAdminExecuteSequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleAdminUISequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleAdminUISequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleAdvtExecuteSequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleAdvtExecuteSequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleAdvtUISequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleAdvtUISequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleComponents">
<columnDefinition name="Component" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="Component" keyColumn="1" category="identifier" description="Component contained in the module."/>
<columnDefinition name="ModuleID" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="ModuleSignature" keyColumn="1" category="identifier" description="Module containing the component."/>
<columnDefinition name="Language" type="number" length="2" primaryKey="yes" localizable="yes"
keyTable="ModuleSignature" keyColumn="2" description="Default language ID for module (may be changed by transform)."/>
</tableDefinition>
<tableDefinition name="ModuleSignature">
<columnDefinition name="ModuleID" type="string" length="72" primaryKey="yes" modularize="column"
category="identifier" description="Module identifier (String.GUID)."/>
<columnDefinition name="Language" type="number" length="2" primaryKey="yes" localizable="yes"
description="Default decimal language of module."/>
<columnDefinition name="Version" type="string" length="32"
category="version" description="Version of the module."/>
</tableDefinition>
<tableDefinition name="ModuleConfiguration">
<columnDefinition name="Name" type="string" length="72" primaryKey="yes"
category="identifier" description="Unique identifier for this row."/>
<columnDefinition name="Format" type="number" length="2"
minValue="0" maxValue="3" description="Format of this item."/>
<columnDefinition name="Type" type="string" length="72" nullable="yes"
category="identifier" description="Additional type information for this item."/>
<columnDefinition name="ContextData" type="localized" length="0" nullable="yes"
category="text" description="Additional context information about this item."/>
<columnDefinition name="DefaultValue" type="localized" length="0" nullable="yes"
category="text" description="Default value for this item."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="yes"
minValue="0" maxValue="3" description="Additional type-specific attributes."/>
<columnDefinition name="DisplayName" type="localized" length="72" nullable="yes"
category="text" description="A short human-readable name for this item."/>
<columnDefinition name="Description" type="localized" length="0" nullable="yes"
category="text" description="A human-readable description."/>
<columnDefinition name="HelpLocation" type="string" length="0" nullable="yes"
category="text" description="Filename or namespace of the context-sensitive help for this item."/>
<columnDefinition name="HelpKeyword" type="string" length="0" nullable="yes"
category="text" description="Keyword index into the HelpLocation for this item."/>
</tableDefinition>
<tableDefinition name="ModuleDependency">
<columnDefinition name="ModuleID" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="ModuleSignature" keyColumn="1" category="identifier" description="Module requiring the dependency."/>
<columnDefinition name="ModuleLanguage" type="number" length="2" primaryKey="yes" localizable="yes"
keyTable="ModuleSignature" keyColumn="2" description="Language of module requiring the dependency."/>
<columnDefinition name="RequiredID" type="string" length="72" primaryKey="yes"
description="String.GUID of required module."/>
<columnDefinition name="RequiredLanguage" type="number" length="2" primaryKey="yes" localizable="yes"
description="LanguageID of the required module."/>
<columnDefinition name="RequiredVersion" type="string" length="32" nullable="yes"
category="version" description="Version of the required version."/>
</tableDefinition>
<tableDefinition name="ModuleExclusion">
<columnDefinition name="ModuleID" type="string" length="72" primaryKey="yes" modularize="column"
keyTable="ModuleSignature" keyColumn="1" category="identifier" description="String.GUID of module with exclusion requirement."/>
<columnDefinition name="ModuleLanguage" type="number" length="2" primaryKey="yes" localizable="yes"
keyTable="ModuleSignature" keyColumn="2" description="LanguageID of module with exclusion requirement."/>
<columnDefinition name="ExcludedID" type="string" length="72" primaryKey="yes"
description="String.GUID of excluded module."/>
<columnDefinition name="ExcludedLanguage" type="number" length="2" primaryKey="yes" localizable="yes"
description="Language of excluded module."/>
<columnDefinition name="ExcludedMinVersion" type="string" length="32" nullable="yes"
category="version" description="Minimum version of excluded module."/>
<columnDefinition name="ExcludedMaxVersion" type="string" length="32" nullable="yes"
category="version" description="Maximum version of excluded module."/>
</tableDefinition>
<tableDefinition name="ModuleIgnoreTable">
<columnDefinition name="Table" type="string" length="72" primaryKey="yes"
category="identifier" description="Table name to ignore during merge operation."/>
</tableDefinition>
<tableDefinition name="ModuleInstallExecuteSequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleInstallExecuteSequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleInstallUISequence">
<columnDefinition name="Action" type="string" length="64" primaryKey="yes" modularize="column"
category="identifier" description="Action to insert"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"
minValue="-4" maxValue="32767" description="Standard Sequence number"/>
<columnDefinition name="BaseAction" type="string" length="64" nullable="yes" modularize="column"
keyTable="ModuleInstallUISequence" keyColumn="1" category="identifier" description="Base action to determine insert location."/>
<columnDefinition name="After" type="number" length="2" nullable="yes"
minValue="0" maxValue="1" description="Before (0) or After (1)"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" modularize="condition" localizable="yes"
category="condition"/>
</tableDefinition>
<tableDefinition name="ModuleSubstitution">
<columnDefinition name="Table" type="string" length="72" primaryKey="yes"
category="identifier" description="Table containing the data to be modified."/>
<columnDefinition name="Row" type="string" length="0" primaryKey="yes" modularize="semicolonDelimited"
category="text" description="Row containing the data to be modified."/>
<columnDefinition name="Column" type="string" length="72" primaryKey="yes"
category="identifier" description="Column containing the data to be modified."/>
<columnDefinition name="Value" type="localized" length="0" nullable="yes"
category="text" description="Template for modification data."/>
</tableDefinition>
<tableDefinition name="Properties">
<columnDefinition name="Name" type="string" length="72" primaryKey="yes"
category="text" description="Primary key, non-localized token"/>
<columnDefinition name="Value" type="string" length="0"
category="text" description="Value of the property"/>
</tableDefinition>
<tableDefinition name="ImageFamilies">
<columnDefinition name="Family" type="string" length="8" primaryKey="yes"
category="text" description="Primary key"/>
<columnDefinition name="MediaSrcPropName" type="string" length="72" nullable="yes"
category="text"/>
<columnDefinition name="MediaDiskId" type="number" length="0" nullable="yes"
category="integer"/>
<columnDefinition name="FileSequenceStart" type="number" length="4" nullable="yes"
minValue="1" maxValue="214743647" category="integer"/>
<columnDefinition name="DiskPrompt" type="string" length="128" nullable="yes" escapeIdtCharacters="yes" localizable="yes"
category="text"/>
<columnDefinition name="VolumeLabel" type="string" length="32" nullable="yes"
category="text"/>
</tableDefinition>
<tableDefinition name="UpgradedImages">
<columnDefinition name="Upgraded" type="string" length="13" primaryKey="yes"
category="text" description="Primary key"/>
<columnDefinition name="MsiPath" type="string" length="255"
category="text"/>
<columnDefinition name="PatchMsiPath" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="SymbolPaths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="Family" type="string" length="8"
keyTable="ImageFamilies" keyColumn="1" category="text" description="Foreign key, Family to which this image belongs"/>
</tableDefinition>
<tableDefinition name="UpgradedFilesToIgnore">
<columnDefinition name="Upgraded" type="string" length="13" primaryKey="yes"
keyTable="UpgradedImages" keyColumn="1" category="text" description="Foreign key, Upgraded image"/>
<columnDefinition name="FTK" type="string" length="255" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="text" description="Foreign key, File to ignore"/>
</tableDefinition>
<tableDefinition name="UpgradedFiles_OptionalData">
<columnDefinition name="Upgraded" type="string" length="13" primaryKey="yes"
keyTable="UpgradedImages" keyColumn="1" category="text" description="Foreign key, Upgraded image"/>
<columnDefinition name="FTK" type="string" length="255" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="text" description="Foreign key, File to ignore"/>
<columnDefinition name="SymbolPaths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="AllowIgnoreOnPatchError" type="number" length="0" nullable="yes"
category="integer"/>
<columnDefinition name="IncludeWholeFile" type="number" length="0" nullable="yes"
category="integer"/>
</tableDefinition>
<tableDefinition name="TargetImages" createSymbols="yes">
<columnDefinition name="Target" type="string" length="13" primaryKey="yes"
category="text"/>
<columnDefinition name="MsiPath" type="string" length="255"
category="text"/>
<columnDefinition name="SymbolPaths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="Upgraded" type="string" length="13"
keyTable="UpgradedImages" keyColumn="1" category="text" description="Foreign key, Upgraded image"/>
<columnDefinition name="Order" type="number" length="0"
category="integer"/>
<columnDefinition name="ProductValidateFlags" type="string" length="16" nullable="yes"
category="text"/>
<columnDefinition name="IgnoreMissingSrcFiles" type="number" length="0"
category="integer"/>
</tableDefinition>
<tableDefinition name="TargetFiles_OptionalData">
<columnDefinition name="Target" type="string" length="13" primaryKey="yes"
keyTable="TargetImages" keyColumn="1" category="text" description="Foreign key, Target image"/>
<columnDefinition name="FTK" type="string" length="255" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="text" description="Foreign key, File to ignore"/>
<columnDefinition name="SymbolPaths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="IgnoreOffsets" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="IgnoreLengths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="RetainOffsets" type="string" length="255" nullable="yes"
category="text"/>
</tableDefinition>
<tableDefinition name="FamilyFileRanges">
<columnDefinition name="Family" type="string" length="8" primaryKey="yes"
keyTable="ImageFamilies" keyColumn="1" category="text" description="Foreign key, Family"/>
<columnDefinition name="FTK" type="string" length="255" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="text" description="Foreign key, File to ignore"/>
<columnDefinition name="RetainOffsets" type="string" length="128"
category="text"/>
<columnDefinition name="RetainLengths" type="string" length="128"
category="text"/>
</tableDefinition>
<tableDefinition name="ExternalFiles">
<columnDefinition name="Family" type="string" length="8" primaryKey="yes"
keyTable="ImageFamilies" keyColumn="1" category="text" description="Foreign key, Family"/>
<columnDefinition name="FTK" type="string" length="255" primaryKey="yes" modularize="column"
keyTable="File" keyColumn="1" category="text" description="Foreign key, File to ignore"/>
<columnDefinition name="FilePath" type="string" length="255" primaryKey="yes"
category="text"/>
<columnDefinition name="SymbolPaths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="IgnoreOffsets" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="IgnoreLengths" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="RetainOffsets" type="string" length="255" nullable="yes"
category="text"/>
<columnDefinition name="Order" type="number" length="0"
category="integer"/>
</tableDefinition>
<tableDefinition name="WixAction" createSymbols="yes" unreal="yes">
<columnDefinition name="SequenceTable" type="string" length="62" primaryKey="yes"/>
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"/>
<columnDefinition name="Condition" type="string" length="255" nullable="yes" localizable="yes"/>
<columnDefinition name="Sequence" type="number" length="2" nullable="yes"/>
<columnDefinition name="Before" type="string" length="72" nullable="yes"/>
<columnDefinition name="After" type="string" length="72" nullable="yes"/>
<columnDefinition name="Overridable" type="number" length="2" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixBBControl" createSymbols="yes" unreal="yes">
<columnDefinition name="Billboard_" type="string" length="50" primaryKey="yes" modularize="column"/>
<columnDefinition name="BBControl_" type="string" length="50" primaryKey="yes"/>
<columnDefinition name="SourceFile" type="object" length="0"/>
</tableDefinition>
<tableDefinition name="WixComplexReference" unreal="yes">
<columnDefinition name="Parent" type="string" length="0" localizable="yes"/>
<columnDefinition name="ParentAttributes" type="number" length="4"/>
<columnDefinition name="ParentLanguage" type="string" length="0" nullable="yes"/>
<columnDefinition name="Child" type="string" length="0" localizable="yes"/>
<columnDefinition name="ChildAttributes" type="number" length="4"/>
<columnDefinition name="Attributes" type="number" length="4"/>
</tableDefinition>
<tableDefinition name="WixComponentGroup" createSymbols="yes" unreal="yes">
<columnDefinition name="WixComponentGroup" type="string" length="0" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixControl" unreal="yes">
<columnDefinition name="Dialog_" type="string" length="72" primaryKey="yes" modularize="column"/>
<columnDefinition name="Control_" type="string" length="50" primaryKey="yes"/>
<columnDefinition name="SourceFile" type="object" length="0"/>
</tableDefinition>
<tableDefinition name="WixCustomRow" unreal="yes">
<columnDefinition name="Table" type="string" length="62"/>
<columnDefinition name="FieldData" type="string" length="0"/>
</tableDefinition>
<tableDefinition name="WixCustomTable" createSymbols="yes" unreal="yes">
<columnDefinition name="Table" type="string" length="62" primaryKey="yes"/>
<columnDefinition name="ColumnCount" type="number" length="2"/>
<columnDefinition name="ColumnNames" type="string" length="0"/>
<columnDefinition name="ColumnTypes" type="string" length="0"/>
<columnDefinition name="PrimaryKeys" type="string" length="0"/>
<columnDefinition name="MinValues" type="string" length="0"/>
<columnDefinition name="MaxValues" type="string" length="0"/>
<columnDefinition name="KeyTables" type="string" length="0"/>
<columnDefinition name="KeyColumns" type="string" length="0"/>
<columnDefinition name="Categories" type="string" length="0"/>
<columnDefinition name="Sets" type="string" length="0"/>
<columnDefinition name="Descriptions" type="string" length="0"/>
<columnDefinition name="Modularizations" type="string" length="0"/>
<columnDefinition name="BootstrapperApplicationData" type="number" length="2"/>
</tableDefinition>
<tableDefinition name="WixDirectory" unreal="yes">
<columnDefinition name="Directory_" type="string" length="0" primaryKey="yes" modularize="column"/>
<columnDefinition name="ComponentGuidGenerationSeed" type="string" length="38" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixEnsureTable" unreal="yes">
<columnDefinition name="Table" type="string" length="31"/>
</tableDefinition>
<tableDefinition name="WixFeatureGroup" createSymbols="yes" unreal="yes">
<columnDefinition name="WixFeatureGroup" type="string" length="0" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixPatchFamilyGroup" createSymbols="yes" unreal="yes">
<columnDefinition name="WixPatchFamilyGroup" type="string" length="0" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixGroup" unreal="yes">
<columnDefinition name="ParentId" type="string" length="0" primaryKey="yes" nullable="no" category="identifier"
description="Primary key used to identify a particular record in a parent table."/>
<columnDefinition name="ParentType" type="string" length="0" primaryKey="yes" nullable="no"
description="Primary key used to identify a particular parent type in a parent table."/>
<columnDefinition name="ChildId" type="string" length="0" primaryKey="yes" nullable="no" category="identifier"
description="Primary key used to identify a particular record in a child table."/>
<columnDefinition name="ChildType" type="string" length="0" primaryKey="yes" nullable="no"
description="Primary key used to identify a particular child type in a child table."/>
</tableDefinition>
<tableDefinition name="WixFeatureModules" unreal="yes">
<columnDefinition name="Feature_" type="string" length="38" primaryKey="yes"/>
<columnDefinition name="WixMerge_" type="string" length="72" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixFile" unreal="yes">
<columnDefinition name="File_" type="string" length="0" category="identifier" primaryKey="yes"
modularize="column" keyTable="File" keyColumn="1" />
<columnDefinition name="AssemblyType" type="number" length="2" minValue="0" maxValue="1" />
<columnDefinition name="File_AssemblyManifest" type="string" length="72" category="identifier" nullable="yes"
modularize="column" keyTable="File" keyColumn="1" />
<columnDefinition name="File_AssemblyApplication" type="string" length="72" category="identifier" nullable="yes"
modularize="column" keyTable="File" keyColumn="1" />
<columnDefinition name="Directory_" type="string" length="72" modularize="column" keyTable="Directory" keyColumn="1" />
<columnDefinition name="DiskId" type="number" length="4" nullable="yes"/>
<columnDefinition name="Source" type="object" length="0"/>
<columnDefinition name="ProcessorArchitecture" type="string" length="0" nullable="yes"/>
<columnDefinition name="PatchGroup" type="number" length="4" />
<columnDefinition name="Attributes" type="number" length="4"/>
<columnDefinition name="PatchAttributes" type="number" length="4" nullable="yes"/>
<columnDefinition name="DeltaPatchHeaderSource" type="string" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixBindUpdatedFiles" unreal="yes">
<columnDefinition name="File_" type="string" length="0" primaryKey="yes" modularize="column" keyTable="File" keyColumn="1" category="identifier" />
</tableDefinition>
<tableDefinition name="WixBuildInfo" unreal="yes">
<columnDefinition name="WixVersion" type="string" length="20"
category="text" description="Version number of WiX."/>
<columnDefinition name="WixOutputFile" type="string" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Path to output file, if supplied."/>
<columnDefinition name="WixProjectFile" type="string" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Path to .wixproj file, if supplied."/>
<columnDefinition name="WixPdbFile" type="string" length="0" nullable="yes" escapeIdtCharacters="yes"
category="text" description="Path to .wixpdb file, if supplied."/>
</tableDefinition>
<tableDefinition name="WixFragment" createSymbols="yes" unreal="yes">
<columnDefinition name="WixFragment" type="string" length="0" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixInstanceComponent" unreal="yes">
<columnDefinition name="Component_" type="string" length="0" primaryKey="yes" modularize="column"/>
</tableDefinition>
<tableDefinition name="WixInstanceTransforms" unreal="yes" createSymbols="yes">
<columnDefinition name="Id" type="string" length="0" primaryKey="yes"/>
<columnDefinition name="PropertyId" type="string" length="0"/>
<columnDefinition name="ProductCode" type="string" length="0" category="guid"/>
<columnDefinition name="ProductName" type="localized" localizable="yes" length="0" nullable="yes"/>
<columnDefinition name="UpgradeCode" type="string" length="38" category="guid" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixMedia" unreal="yes">
<columnDefinition name="DiskId_" type="number" length="2" primaryKey="yes"/>
<columnDefinition name="CompressionLevel" type="number" length="2" nullable="yes" minValue="0" maxValue="4" />
<columnDefinition name="Layout" type="string" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixMediaTemplate" unreal="yes">
<columnDefinition name="CabinetTemplate" type="string" length="0" nullable="yes"/>
<columnDefinition name="CompressionLevel" type="number" length="2" nullable="yes" minValue="0" maxValue="4" />
<columnDefinition name="DiskPrompt" type="string" length="0" nullable="yes"/>
<columnDefinition name="VolumeLabel" type="string" length="0" nullable="yes"/>
<columnDefinition name="MaximumUncompressedMediaSize" type="number" length="4" />
<columnDefinition name="MaximumCabinetSizeForLargeFileSplitting" type="number" length="4" />
</tableDefinition>
<tableDefinition name="WixMerge" createSymbols="yes" unreal="yes">
<columnDefinition name="WixMerge" type="string" length="72" primaryKey="yes"/>
<columnDefinition name="Language" type="number" length="2" localizable="yes"/>
<columnDefinition name="Directory_" type="string" nullable="yes" length="72"/>
<columnDefinition name="SourceFile" type="object" length="0"/>
<columnDefinition name="DiskId" type="number" length="2"/>
<columnDefinition name="FileCompression" type="number" length="2" nullable="yes"/>
<columnDefinition name="ConfigurationData" type="string" length="255" nullable="yes"/>
<columnDefinition name="Feature_" type="string" length="72"/>
</tableDefinition>
<tableDefinition name="WixOrdering" createSymbols="yes" unreal="yes">
<columnDefinition name="ItemType" type="string" length="0" primaryKey="yes" nullable="no"
description="Primary key used to identify the item in another table."/>
<columnDefinition name="ItemId_" type="string" length="72" category="identifier" primaryKey="yes"
description="Reference to an entry in another table."/>
<columnDefinition name="DependsOnType" type="string" length="0" primaryKey="yes" nullable="no"
description="Primary key used to identify the item in another table."/>
<columnDefinition name="DependsOnId_" type="string" length="72" category="identifier" primaryKey="yes"
description="Reference to an entry in another table."/>
</tableDefinition>
<tableDefinition name="WixDeltaPatchFile" unreal="yes">
<columnDefinition name="File_" type="string" length="72" primaryKey="yes" modularize="column" keyTable="File" keyColumn="1" />
<columnDefinition name="RetainLengths" type="preserved" length="0" nullable="yes" category="text"/>
<columnDefinition name="IgnoreOffsets" type="preserved" length="0" nullable="yes" category="text"/>
<columnDefinition name="IgnoreLengths" type="preserved" length="0" nullable="yes" category="text"/>
<columnDefinition name="RetainOffsets" type="preserved" length="0" nullable="yes" category="text"/>
<columnDefinition name="SymbolPaths" type="preserved" length="0" nullable="yes" category="text"/>
</tableDefinition>
<tableDefinition name="WixDeltaPatchSymbolPaths" unreal="yes">
<columnDefinition name="Id" type="string" length="72" primaryKey="yes" />
<columnDefinition name="Type" type="number" length="2" primaryKey="yes" minValue="0" maxValue="4" />
<columnDefinition name="SymbolPaths" type="preserved" length="0" category="text"/>
</tableDefinition>
<tableDefinition name="WixProperty" unreal="yes">
<columnDefinition name="Property_" type="string" length="72" modularize="column"/>
<columnDefinition name="Attributes" type="number" length="4"/>
</tableDefinition>
<tableDefinition name="WixSimpleReference" unreal="yes">
<columnDefinition name="Table" type="string" length="32"/>
<columnDefinition name="PrimaryKeys" type="string" length="0"/>
</tableDefinition>
<tableDefinition name="WixSuppressAction" unreal="yes">
<columnDefinition name="SequenceTable" type="string" length="72" primaryKey="yes"/>
<columnDefinition name="Action" type="string" length="72" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixSuppressModularization" unreal="yes">
<columnDefinition name="WixSuppressModularization" type="string" length="72"/>
</tableDefinition>
<tableDefinition name="WixPatchBaseline" unreal="yes">
<columnDefinition name="WixPatchBaseline" type="string" length="72" primaryKey="yes"
category="identifier" description="Primary key used to identify sets of transforms in a patch."/>
<columnDefinition name="DiskId" type="number" length="2"/>
<columnDefinition name="ValidationFlags" type="number" length="4" category="integer" description="Patch transform validation flags for the associated patch baseline."/>
</tableDefinition>
<tableDefinition name="WixPatchRef" unreal="yes">
<columnDefinition name="Table" type="string" length="32"/>
<columnDefinition name="PrimaryKeys" type="string" length="0"/>
</tableDefinition>
<tableDefinition name="WixPatchId" unreal="yes">
<columnDefinition name="ProductCode" type="string" length="38" nullable="no"/>
<columnDefinition name="ClientPatchId" type="string" length="72" nullable="no"/>
<columnDefinition name="OptimizePatchSizeForLargeFiles" type="number" length="2" nullable="yes"
minValue="0" maxValue="1"/>
<columnDefinition name="ApiPatchingSymbolFlags" type="number" length="4" nullable="yes"
minValue="0" maxValue="7"/>
</tableDefinition>
<tableDefinition name="WixPatchTarget" unreal="yes">
<columnDefinition name="ProductCode" type="string" length="38" nullable="no" />
</tableDefinition>
<tableDefinition name="WixPatchMetadata" unreal="yes">
<columnDefinition name="Property" type="string" length="72" primaryKey="yes"/>
<columnDefinition name="Value" type="localized" length="0"/>
</tableDefinition>
<tableDefinition name="WixUI" createSymbols="yes" unreal="yes">
<columnDefinition name="WixUI" type="string" length="0" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixVariable" unreal="yes">
<columnDefinition name="WixVariable" type="string" length="0"/>
<columnDefinition name="Value" type="localized" length="0" nullable="yes"/>
<columnDefinition name="Attributes" type="number" length="4"/>
</tableDefinition>
<tableDefinition name="WixBundleContainer" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundleContainer" type="string" length="0" category="identifier" primaryKey="yes"/>
<columnDefinition name="Name" type="string" length="0"/>
<columnDefinition name="Type" type="number" length="2" minValue="0" maxValue="1" />
<columnDefinition name="DownloadUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="Size" type="number" length="4" minValue="0" nullable="yes" />
<columnDefinition name="Hash" type="string" length="0" nullable="yes" />
<columnDefinition name="AttachedContainerIndex" type="number" length="2" nullable="yes" />
<columnDefinition name="WorkingPath" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBundlePayloadGroup" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePayloadGroup" type="string" length="0" category="identifier" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixBundlePayload" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePayload" type="string" length="0" category="identifier" primaryKey="yes"/>
<columnDefinition name="Name" type="string" length="0" nullable="yes"/>
<columnDefinition name="SourceFile" type="object" length="0" nullable="yes"/>
<columnDefinition name="DownloadUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="Compressed" type="number" length="2" minValue="0" maxValue="2" />
<columnDefinition name="UnresolvedSourceFile" type="string" length="0" nullable="yes" />
<columnDefinition name="DisplayName" type="string" length="0" nullable="yes" />
<columnDefinition name="Description" type="string" length="0" nullable="yes" />
<columnDefinition name="EnableSignatureValidation" type="number" length="2" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="FileSize" type="number" length="4" minValue="0" maxValue="2147483647" nullable="yes" />
<columnDefinition name="Version" type="string" length="24" nullable="yes" />
<columnDefinition name="Hash" type="string" length="0" nullable="yes" />
<columnDefinition name="PublicKey" type="string" length="0" nullable="yes" />
<columnDefinition name="Thumbprint" type="string" length="0" nullable="yes" />
<columnDefinition name="Catalog_" type="string" length="0" nullable="yes" category="identifier"
keyTable="WixBundleCatalog" keyColumn="1" description="Reference to a catalog entry in the WixBundleCatalog table."/>
<columnDefinition name="Container_" type="string" length="0" nullable="yes"
keyTable="WixBundleContainer" keyColumn="1" description="Reference to a container entry in the WixBundleContainer table."/>
<columnDefinition name="Package" type="string" length="0" nullable="yes" />
<columnDefinition name="ContentFile" type="number" length="2" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="EmbeddedId" type="string" length="0" nullable="yes" />
<columnDefinition name="LayoutOnly" type="number" length="2" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="Packaging" type="number" length="2" nullable="yes" minValue="1" maxValue="2" />
<columnDefinition name="ParentPackagePayload_" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBundlePatchTargetCode" createSymbols="yes" unreal="yes">
<columnDefinition name="PackageId" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="TargetCode" type="string" length="0" nullable="yes" primaryKey="yes" />
<columnDefinition name="Attributes" type="number" length="4" nullable="yes" minValue="0" maxValue="2147483647" />
</tableDefinition>
<tableDefinition name="WixBundle" unreal="yes">
<columnDefinition name="Version" type="string" length="24" />
<columnDefinition name="Copyright" type="string" length="0" nullable="yes" />
<columnDefinition name="Name" type="string" length="0" nullable="yes" />
<columnDefinition name="AboutUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="DisableModify" type="number" length="2" nullable="yes" minValue="0" maxValue="2"/>
<columnDefinition name="DisableRemove" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
<columnDefinition name="DisableRepair" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
<columnDefinition name="HelpTelephone" type="string" length="0" nullable="yes" />
<columnDefinition name="HelpUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="Manufacturer" type="string" length="0" nullable="yes" />
<columnDefinition name="UpdateUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="Compressed" type="number" length="2" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="LogPrefixAndExtension" type="string" length="0" nullable="yes" />
<columnDefinition name="IconSourceFile" type="object" length="0" nullable="yes" />
<columnDefinition name="SplashScreenSourceFile" type="object" length="0" nullable="yes" />
<columnDefinition name="Condition" type="string" length="0" nullable="yes" />
<columnDefinition name="Tag" type="string" length="0" nullable="yes" />
<columnDefinition name="Platform" type="string" length="4" />
<columnDefinition name="ParentName" type="string" length="0" nullable="yes" />
<columnDefinition name="UpgradeCode" type="string" length="38" category="guid" />
<columnDefinition name="BundleId" type="string" length="38" category="guid" description="Only valid after binding." />
<columnDefinition name="ProviderKey" type="string" length="38" category="guid" nullable="yes" description="Only valid after binding." />
<columnDefinition name="PerMachine" type="number" length="2" nullable="yes" minValue="0" maxValue="1" description="Only valid after binding." />
</tableDefinition>
<tableDefinition name="WixApprovedExeForElevation" createSymbols="yes" unreal="yes">
<columnDefinition name="Id" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="Key" type="string" length="0" />
<columnDefinition name="Value" type="string" length="0" nullable="yes" />
<columnDefinition name="Attributes" type="number" length="4" minValue="0" maxValue="1" />
</tableDefinition>
<tableDefinition name="WixBundleUpdate" unreal="yes">
<columnDefinition name="Location" type="string" length="0" />
<columnDefinition name="Attributes" type="number" length="4" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBootstrapperApplication" createSymbols="yes" unreal="yes">
<columnDefinition name="Id" type="string" length="0" category="identifier" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixUpdateRegistration" unreal="yes">
<columnDefinition name="Manufacturer" type="string" length="0" />
<columnDefinition name="Department" type="string" length="0" nullable="yes" />
<columnDefinition name="ProductFamily" type="string" length="0" nullable="yes" />
<columnDefinition name="Name" type="string" length="0" />
<columnDefinition name="Classification" type="string" length="0" />
</tableDefinition>
<tableDefinition name="WixBundleCatalog" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundleCatalog" type="string" length="0" category="identifier" primaryKey="yes"/>
<columnDefinition name="Payload_" type="string" length="0" category="identifier"
keyTable="WixBundlePayload" keyColumn="1" description="Reference to a payload entry in the WixBundlePayload table." />
</tableDefinition>
<tableDefinition name="WixChain" unreal="yes">
<columnDefinition name="Attributes" type="number" length="4" nullable="no" minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to the chain."/>
</tableDefinition>
<tableDefinition name="WixChainItem" createSymbols="yes" unreal="yes">
<columnDefinition name="Id" type="string" length="0" category="identifier" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixBundleRollbackBoundary" createSymbols="yes" unreal="yes">
<columnDefinition name="WixChainItem_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixChainItem" keyColumn="1" description="Reference to a WixChainItem entry in the WixChainItem table."/>
<columnDefinition name="Vital" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
<columnDefinition name="Transaction" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
</tableDefinition>
<tableDefinition name="WixBundlePackageGroup" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackageGroup" type="string" length="0" category="identifier" primaryKey="yes"/>
</tableDefinition>
<tableDefinition name="WixBundlePackage" createSymbols="yes" unreal="yes">
<columnDefinition name="WixChainItem_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixChainItem" keyColumn="1" description="Reference to a WixChainItem entry in the WixChainItem table."/>
<columnDefinition name="Type" type="number" length="2" minValue="0" maxValue="3" />
<columnDefinition name="Payload_" type="string" length="0" category="identifier"
keyTable="WixBundlePayload" keyColumn="1" description="Reference to a payload entry in the WixBundlePayload table."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="no" minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this package."/>
<columnDefinition name="InstallCondition" type="string" length="0" nullable="yes"/>
<columnDefinition name="Cache" type="number" length="2" nullable="yes" minValue="0" maxValue="2"/>
<columnDefinition name="CacheId" type="string" length="0" nullable="yes"/>
<columnDefinition name="Vital" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
<columnDefinition name="PerMachine" type="number" length="2" nullable="yes" minValue="0" maxValue="2"/>
<columnDefinition name="LogPathVariable" type="string" length="0" nullable="yes"/>
<columnDefinition name="RollbackLogPathVariable" type="string" length="0" nullable="yes"/>
<columnDefinition name="Size" type="number" length="4"/>
<columnDefinition name="InstallSize" type="number" length="4"/>
<columnDefinition name="Version" type="string" length="24" category="version" nullable="yes" />
<columnDefinition name="Language" type="number" length="2" nullable="yes" />
<columnDefinition name="DisplayName" type="string" length="0" nullable="yes" />
<columnDefinition name="Description" type="string" length="0" nullable="yes" />
<columnDefinition name="RollbackBoundary_" type="string" length="0" nullable="yes"
keyTable="WixBundleRollbackBoundary" keyColumn="1" description="Reference to a rollback boundary entry in the WixBundleRollbackBoundary table."/>
<columnDefinition name="RollbackBoundaryBackward_" type="string" length="0" nullable="yes"
keyTable="WixBundleRollbackBoundary" keyColumn="1" description="Reference to a rollback boundary entry in the WixBundleRollbackBoundary table."/>
<columnDefinition name="x64" type="number" length="2" nullable="yes" minValue="0" maxValue="1"/>
</tableDefinition>
<tableDefinition name="WixBundleExePackage" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="no" minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this MSI package."/>
<columnDefinition name="DetectCondition" type="string" length="0" nullable="yes"/>
<columnDefinition name="InstallCommand" type="string" length="0" nullable="yes"/>
<columnDefinition name="RepairCommand" type="string" length="0" nullable="yes"/>
<columnDefinition name="UninstallCommand" type="string" length="0" nullable="yes"/>
<columnDefinition name="ExeProtocol" type="string" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixBundleMsiPackage" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Attributes" type="number" length="4" nullable="no" minValue="0" maxValue="2147483647" description="A 32-bit word that specifies the attribute flags to be applied to this MSI package."/>
<columnDefinition name="ProductCode" type="string" length="38" category="guid" />
<columnDefinition name="UpgradeCode" type="string" length="38" category="guid" nullable="yes" />
<columnDefinition name="ProductVersion" type="string" length="20" />
<columnDefinition name="ProductLanguage" type="number" length="2" />
<columnDefinition name="ProductName" type="string" length="0" />
<columnDefinition name="Manufacturer" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBundleMspPackage" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Attributes" type="number" length="2" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="PatchCode" type="string" length="38" category="guid" nullable="yes" />
<columnDefinition name="Manufacturer" type="string" length="0" nullable="yes" />
<columnDefinition name="PatchXml" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBundleMsuPackage" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="DetectCondition" type="string" length="0" nullable="yes"/>
<columnDefinition name="MsuKB" type="string" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixBundlePackageExitCode" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table for the parent Exe."/>
<columnDefinition name="Code" type="number" length="0" category="integer" nullable="yes" primaryKey="yes" />
<columnDefinition name="Behavior" type="number" length="2" category="integer" minValue="0" maxValue="3" />
</tableDefinition>
<tableDefinition name="WixBundleMsiFeature" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Name" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="Size" type="number" length="4" />
<columnDefinition name="Parent" type="string" length="0" />
<columnDefinition name="Title" type="string" length="0" />
<columnDefinition name="Description" type="string" length="0" />
<columnDefinition name="Display" type="number" length="2" />
<columnDefinition name="Level" type="number" length="2" />
<columnDefinition name="Directory" type="string" length="0" />
<columnDefinition name="Attributes" type="number" length="2" />
</tableDefinition>
<tableDefinition name="WixBundleMsiProperty" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Name" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="Value" type="string" length="0" />
<columnDefinition name="Condition" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixBundleSlipstreamMsp" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table for the parent Msi."/>
<columnDefinition name="WixBundlePackage_Msp" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table for the referenced Msp." />
</tableDefinition>
<tableDefinition name="WixBundlePackageCommandLine" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table." />
<columnDefinition name="InstallArgument" type="string" length="0" nullable="yes" />
<columnDefinition name="UninstallArgument" type="string" length="0" nullable="yes" />
<columnDefinition name="RepairArgument" type="string" length="0" nullable="yes" />
<columnDefinition name="Condition" type="string" length="0" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixRelatedBundle" unreal="yes">
<columnDefinition name="Id" type="string" length="38" category="guid" primaryKey="yes" />
<columnDefinition name="Action" type="number" length="4" />
</tableDefinition>
<tableDefinition name="WixBundleRelatedPackage" unreal="yes">
<columnDefinition name="WixBundlePackage_" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Id" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="MinVersion" type="string" length="0" />
<columnDefinition name="MaxVersion" type="string" length="0" />
<columnDefinition name="Languages" type="string" length="0" />
<columnDefinition name="MinInclusive" type="number" length="2" minValue="0" maxValue="1"/>
<columnDefinition name="MaxInclusive" type="number" length="2" minValue="0" maxValue="1"/>
<columnDefinition name="LangInclusive" type="number" length="2" minValue="0" maxValue="1"/>
<columnDefinition name="OnlyDetect" type="number" length="2" minValue="0" maxValue="1"/>
</tableDefinition>
<tableDefinition name="WixBundleVariable" createSymbols="yes" unreal="yes">
<columnDefinition name="WixBundleVariable" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="Value" type="string" length="0" nullable="yes" />
<columnDefinition name="Type" type="string" length="0" nullable="yes" />
<columnDefinition name="Hidden" type="number" length="2" minValue="0" maxValue="1"/>
<columnDefinition name="Persisted" type="number" length="2" minValue="0" maxValue="1"/>
</tableDefinition>
<tableDefinition name="WixBundleProperties" unreal="yes" bootstrapperApplicationData="yes">
<columnDefinition name="DisplayName" type="string" length="0" nullable="yes"/>
<columnDefinition name="LogPathVariable" type="string" length="0" nullable="yes"/>
<columnDefinition name="Compressed" type="string" length="0" nullable="yes"/>
<columnDefinition name="Id" type="string" length="0" nullable="yes"/>
<columnDefinition name="UpgradeCode" type="string" length="0" nullable="yes"/>
<columnDefinition name="PerMachine" type="string" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="WixPackageFeatureInfo" unreal="yes" bootstrapperApplicationData="yes">
<columnDefinition name="Package" type="string" length="0" />
<columnDefinition name="Feature" type="string" length="0" />
<columnDefinition name="Size" type="string" length="0" />
<columnDefinition name="Parent" type="string" length="0" nullable="yes" />
<columnDefinition name="Title" type="string" length="0" nullable="yes" />
<columnDefinition name="Description" type="string" length="0" nullable="yes" />
<columnDefinition name="Display" type="string" length="0" nullable="yes" />
<columnDefinition name="Level" type="string" length="0" />
<columnDefinition name="Directory" type="string" length="0" nullable="yes"/>
<columnDefinition name="Attributes" type="string" length="0" />
</tableDefinition>
<tableDefinition name="WixPackageProperties" unreal="yes" bootstrapperApplicationData="yes">
<columnDefinition name="Package" type="string" length="0" category="identifier" primaryKey="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Vital" type="string" length="0" nullable="yes" minValue="0" maxValue="1" />
<columnDefinition name="DisplayName" type="string" length="0" nullable="yes"/>
<columnDefinition name="Description" type="string" length="0" nullable="yes"/>
<columnDefinition name="DownloadSize" type="string" length="0" nullable="yes"/>
<columnDefinition name="PackageSize" type="string" length="0" nullable="yes"/>
<columnDefinition name="InstalledSize" type="string" length="0" nullable="yes"/>
<columnDefinition name="PackageType" type="string" length="0" nullable="no"/>
<columnDefinition name="Permanent" type="string" length="0" nullable="yes"/>
<columnDefinition name="LogPathVariable" type="string" length="0" nullable="yes"/>
<columnDefinition name="RollbackLogPathVariable" type="string" length="0" nullable="yes"/>
<columnDefinition name="Compressed" type="string" length="0" nullable="yes"/>
<columnDefinition name="DisplayInternalUI" type="string" length="0" nullable="yes"/>
<columnDefinition name="ProductCode" type="string" length="0" nullable="yes"/>
<columnDefinition name="UpgradeCode" type="string" length="0" nullable="yes"/>
<columnDefinition name="Version" type="string" length="0" nullable="yes"/>
<columnDefinition name="InstallCondition" type="string" length="0" nullable="yes" />
<columnDefinition name="Cache" type="string" length="0" nullable="yes" minValue="0" maxValue="2" />
</tableDefinition>
<tableDefinition name="WixPayloadProperties" unreal="yes" bootstrapperApplicationData="yes">
<columnDefinition name="Payload" type="string" length="0" category="identifier" primaryKey="yes" />
<columnDefinition name="Package" type="string" length="0" category="identifier" primaryKey="yes" nullable="yes"
keyTable="WixBundlePackage" keyColumn="1" description="Reference to a chain package entry in the WixBundlePackage table."/>
<columnDefinition name="Container" type="string" length="0" nullable="yes"
keyTable="WixBundleContainer" keyColumn="1" description="Reference to a container entry in the WixBundleContainer table."/>
<columnDefinition name="Name" type="string" length="0" />
<columnDefinition name="Size" type="string" length="0" />
<columnDefinition name="DownloadUrl" type="string" length="0" nullable="yes" />
<columnDefinition name="LayoutOnly" type="string" length="3" nullable="no" />
</tableDefinition>
<tableDefinition name="_Streams" unreal="yes">
<columnDefinition name="Name" type="string" length="62" primaryKey="yes"/>
<columnDefinition name="Data" type="object" length="0" nullable="yes"/>
</tableDefinition>
<tableDefinition name="_SummaryInformation">
<columnDefinition name="PropertyId" type="number" length="2" primaryKey="yes"/>
<columnDefinition name="Value" type="localized" length="255" escapeIdtCharacters="yes"/>
</tableDefinition>
<tableDefinition name="_TransformView" unreal="yes">
<columnDefinition name="Table" type="string" length="0" primaryKey="yes"/>
<columnDefinition name="Column" type="string" length="0" primaryKey="yes"/>
<columnDefinition name="Row" type="string" length="0"/>
<columnDefinition name="Data" type="string" length="0"/>
<columnDefinition name="Current" type="string" length="0"/>
</tableDefinition>
<tableDefinition name="_Validation">
<columnDefinition name="Table" type="string" length="32" primaryKey="yes"
category="identifier" description="Name of table"/>
<columnDefinition name="Column" type="string" length="32" primaryKey="yes"
category="identifier" description="Name of column"/>
<columnDefinition name="Nullable" type="string" length="4"
set="Y;N" description="Whether the column is nullable"/>
<columnDefinition name="MinValue" type="number" length="4" nullable="yes"
minValue="-2147483647" maxValue="2147483647" description="Minimum value allowed"/>
<columnDefinition name="MaxValue" type="number" length="4" nullable="yes"
minValue="-2147483647" maxValue="2147483647" description="Maximum value allowed"/>
<columnDefinition name="KeyTable" type="string" length="255" nullable="yes"
category="identifier" description="For foreign key, Name of table to which data must link"/>
<columnDefinition name="KeyColumn" type="number" length="2" nullable="yes"
minValue="1" maxValue="32" description="Column to which foreign key connects"/>
<columnDefinition name="Category" type="string" length="32" nullable="yes"
set="Text;Formatted;Template;Condition;Guid;Path;Version;Language;Identifier;Binary;UpperCase;LowerCase;Filename;Paths;AnyPath;WildCardFilename;RegPath;CustomSource;Property;Cabinet;Shortcut;FormattedSDDLText;Integer;DoubleInteger;TimeDate;DefaultDir" description="String category"/>
<columnDefinition name="Set" type="string" length="255" nullable="yes"
category="text" description="Set of values that are permitted"/>
<columnDefinition name="Description" type="string" length="255" nullable="yes"
category="text" description="Description of column"/>
</tableDefinition>
<!-- WixSearch tables are used by multiple extensions and binder knows about them. -->
<tableDefinition name="WixSearch" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch" type="string" length="72" category="identifier" primaryKey="yes" />
<columnDefinition name="Variable" type="string" length="72" category="identifier" nullable="yes" />
<columnDefinition name="Condition" type="string" length="255" category="condition" nullable="yes" />
</tableDefinition>
<tableDefinition name="WixSearchRelation" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="ParentId_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="Attributes" type="number" length="4" category="doubleInteger" />
</tableDefinition>
<tableDefinition name="WixFileSearch" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="Path" type="string" category="text" length="255" />
<columnDefinition name="MinVersion" type="string" length="24" category="version" nullable="yes" />
<columnDefinition name="MaxVersion" type="string" length="24" category="version" nullable="yes" />
<columnDefinition name="MinSize" type="number" length="4" category="doubleInteger" nullable="yes" />
<columnDefinition name="MaxSize" type="number" length="4" category="doubleInteger" nullable="yes" />
<columnDefinition name="MinDate" type="number" length="4" category="doubleInteger" nullable="yes" />
<columnDefinition name="MaxDate" type="number" length="4" category="doubleInteger" nullable="yes" />
<columnDefinition name="Languages" type="string" category="text" length="0" nullable="yes" />
<columnDefinition name="Attributes" type="number" length="4" category="doubleInteger" />
</tableDefinition>
<tableDefinition name="WixRegistrySearch" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="Root" type="number" length="2" category="doubleInteger" />
<columnDefinition name="Key" type="string" category="text" length="255" />
<columnDefinition name="Value" type="string" category="text" length="255" nullable="yes" />
<columnDefinition name="Attributes" type="number" length="4" category="doubleInteger" />
</tableDefinition>
<tableDefinition name="WixComponentSearch" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="Guid" type="string" length="38" category="guid" />
<columnDefinition name="ProductCode" type="string" length="38" category="guid" nullable="yes" />
<columnDefinition name="Attributes" type="number" length="4" category="doubleInteger" />
</tableDefinition>
<tableDefinition name="WixProductSearch" createSymbols="yes" unreal="yes">
<columnDefinition name="WixSearch_" type="string" length="72" category="identifier" primaryKey="yes"
keyTable="WixSearch" keyColumn="1" description="Reference to a WixSearch entry in the WixSearch table."/>
<columnDefinition name="Guid" type="string" length="38" category="guid" />
<columnDefinition name="Attributes" type="number" length="4" category="doubleInteger" />
</tableDefinition>
</tableDefinitions>
|