Added PeekUInt32 function

This commit is contained in:
Michael Becker 2014-06-04 19:16:03 -04:00
parent 9648f00648
commit 2bf2fc1d26

View File

@ -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; } }
}
}
}