using System; namespace Inspectron.Camera.Image { public interface IImageLock:IDisposable { int Step { get; } IntPtr PixelData { get; } } }