Corrected extents, should be unsigned long.

This commit is contained in:
2017-06-08 21:56:34 +01:00
parent a4a1cdd8ad
commit 18665665e4
77 changed files with 123 additions and 103 deletions

View File

@@ -3152,12 +3152,12 @@ namespace Schemas {
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class ExtentType {
private int startField;
private ulong startField;
private int endField;
private ulong endField;
/// <remarks/>
public int Start {
public ulong Start {
get {
return this.startField;
}
@@ -3167,7 +3167,7 @@ namespace Schemas {
}
/// <remarks/>
public int End {
public ulong End {
get {
return this.endField;
}