Added PCI, USB, ATA, SCSI, SD, MMC information fields

This commit is contained in:
2015-11-09 04:13:37 +00:00
parent 9b6d7356ad
commit 322a1a3322
60 changed files with 490 additions and 57 deletions

View File

@@ -74,6 +74,8 @@ namespace Schemas {
private LinearMediaType[] linearMediaField;
private PCIType[] pCICardField;
/// <remarks>
///Developer of the set
///</remarks>
@@ -397,6 +399,19 @@ namespace Schemas {
this.linearMediaField = value;
}
}
/// <remarks>
///Dump of a PCI/PCI-X/PCIe configuration space and/or expansion ROM
///</remarks>
[System.Xml.Serialization.XmlElementAttribute("PCICard")]
public PCIType[] PCICard {
get {
return this.pCICardField;
}
set {
this.pCICardField = value;
}
}
}
/// <remarks/>
@@ -6826,4 +6841,70 @@ namespace Schemas {
}
}
}
/// <remarks>
///Contains PCI/PCI-X/PCIe card information
///</remarks>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class PCIType {
private int vendorIDField;
private int deviceIDField;
private DumpType configurationField;
private LinearMediaType expansionROMField;
/// <remarks>
///Contains PCI Vendor ID
///</remarks>
public int VendorID {
get {
return this.vendorIDField;
}
set {
this.vendorIDField = value;
}
}
/// <remarks>
///Contains PCI Device ID
///</remarks>
public int DeviceID {
get {
return this.deviceIDField;
}
set {
this.deviceIDField = value;
}
}
/// <remarks>
///Binary dump of the PCI configuration space
///</remarks>
public DumpType Configuration {
get {
return this.configurationField;
}
set {
this.configurationField = value;
}
}
/// <remarks>
///Binary dump of the PCI expansion rom
///</remarks>
public LinearMediaType ExpansionROM {
get {
return this.expansionROMField;
}
set {
this.expansionROMField = value;
}
}
}
}

View File

@@ -77,6 +77,8 @@ Namespace Schemas
Private linearMediaField As LinearMediaType()
Private pCICardField As PCIType()
'''<remarks>
'''Developer of the set
'''</remarks>
@@ -400,6 +402,19 @@ Namespace Schemas
Me.linearMediaField = Value
End Set
End Property
'''<remarks>
'''Dump of a PCI/PCI-X/PCIe configuration space and/or expansion ROM
'''</remarks>
<System.Xml.Serialization.XmlElementAttribute("PCICard")> _
Public Property PCICard() As PCIType()
Get
Return Me.pCICardField
End Get
Set
Me.pCICardField = Value
End Set
End Property
End Class
'''<remarks/>
@@ -6829,4 +6844,70 @@ Namespace Schemas
End Set
End Property
End Class
'''<remarks>
'''Contains PCI/PCI-X/PCIe card information
'''</remarks>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class PCIType
Private vendorIDField As Integer
Private deviceIDField As Integer
Private configurationField As DumpType
Private expansionROMField As LinearMediaType
'''<remarks>
'''Contains PCI Vendor ID
'''</remarks>
Public Property VendorID() As Integer
Get
Return Me.vendorIDField
End Get
Set
Me.vendorIDField = Value
End Set
End Property
'''<remarks>
'''Contains PCI Device ID
'''</remarks>
Public Property DeviceID() As Integer
Get
Return Me.deviceIDField
End Get
Set
Me.deviceIDField = Value
End Set
End Property
'''<remarks>
'''Binary dump of the PCI configuration space
'''</remarks>
Public Property Configuration() As DumpType
Get
Return Me.configurationField
End Get
Set
Me.configurationField = Value
End Set
End Property
'''<remarks>
'''Binary dump of the PCI expansion rom
'''</remarks>
Public Property ExpansionROM() As LinearMediaType
Get
Return Me.expansionROMField
End Get
Set
Me.expansionROMField = Value
End Set
End Property
End Class
End Namespace