brl.Stream: adding long support to TStreamWrapper

BlitzMax Forums/BlitzMax Module Tweaks/brl.Stream: adding long support to TStreamWrapper

mpmxyz(Posted 2011) [#1]
Some days ago I wrote a stream debugger.
I noticed that the TStreamWrapper does not support reading or writing longs.
So I added two methods:
	Method ReadLong:Long()
		Return _stream.ReadLong()
	End Method
	
	Method WriteLong( n:Long )
		_stream.WriteLong n
	End Method

That is the updated code:

I hope there will be an update soon. :-)