You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Memory/IViewAccessor.cs

18 lines
365 B

using System;
namespace ZeroLevel.Services.Memory
{
public interface IViewAccessor
: IDisposable
{
/// <summary>
/// End of view
/// </summary>
bool EOV { get; }
long Position { get; }
byte[] ReadBuffer(int count);
bool CheckOutOfRange(int offset);
void Seek(long offset);
}
}

Powered by TurnKey Linux.