C# Class Quickbeam.ByteAccess.Memory.WinMemoryByteAccess

Encapsulates mapfile access to a specific area of bytes in memory
Inheritance: BaseByteAccess
Mostrar archivo Open project: ChadSki/Quickbeam Class Usage Examples

Public Methods

Method Description
WinMemoryByteAccess ( int beginAccessOffset, int accessSize ) : System

Create a new ByteAccess over a map in Halo's memory

Protected Methods

Method Description
readBytes ( int offset, int size ) : byte[]
writeBytes ( int offset, byte data ) : void

Private Methods

Method Description
CopyMemory ( byte dst, byte src, long size ) : void

Method Details

WinMemoryByteAccess() public method

Create a new ByteAccess over a map in Halo's memory
public WinMemoryByteAccess ( int beginAccessOffset, int accessSize ) : System
beginAccessOffset int where access begins
accessSize int how far access extends
return System

readBytes() protected method

protected readBytes ( int offset, int size ) : byte[]
offset int
size int
return byte[]

writeBytes() protected method

protected writeBytes ( int offset, byte data ) : void
offset int
data byte
return void