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
|
// 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.
namespace WixToolset.DifxApp
{
using WixToolset.Data.WindowsInstaller;
public static class DifxAppTableDefinitions
{
public static readonly TableDefinition MsiDriverPackages = new TableDefinition(
"MsiDriverPackages",
DifxAppSymbolDefinitions.MsiDriverPackages,
new[]
{
new ColumnDefinition("Component", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Name of the component that represents the driver package", modularizeType: ColumnModularizeType.Column),
new ColumnDefinition("Flags", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 31, description: "Flags for installing and uninstalling driver packages"),
new ColumnDefinition("Sequence", ColumnType.Number, 4, primaryKey: false, nullable: true, ColumnCategory.Unknown, minValue: 0, description: "Order in which the driver packages are processed"),
},
symbolIdIsPrimaryKey: false
);
public static readonly TableDefinition[] All = new[]
{
MsiDriverPackages,
};
}
}
|