namespace fis.Vid { public interface IDisplayEngine { /// /// Gets image count. /// int ImageCount { get; } /// /// Gets basic data of opened file. /// /// byte[] BasicData { get; } /// /// Gets image data by index. /// /// /// byte[] GetImageData(int index); /// /// Gets extended data of opened file. /// byte[] ExtendedData { get; } /// /// Close the file and release resources. /// void Close(); } }