Added PeekUInt32 function
This commit is contained in:
parent
9648f00648
commit
2bf2fc1d26
@ -613,6 +613,12 @@ namespace UniversalEditor.IO
|
||||
}
|
||||
return retval;
|
||||
}
|
||||
public uint PeekUInt32()
|
||||
{
|
||||
uint value = ReadUInt32();
|
||||
Seek(-4, SeekOrigin.Current);
|
||||
return value;
|
||||
}
|
||||
|
||||
public int ReadVariableLengthInt32()
|
||||
{
|
||||
@ -1453,6 +1459,6 @@ namespace UniversalEditor.IO
|
||||
}
|
||||
|
||||
public long Remaining { get { return mvarAccessor.Remaining; } }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user