10 lines
171 B
C#
10 lines
171 B
C#
using System;
|
|
|
|
namespace Inspectron.Camera.Image
|
|
{
|
|
public interface IImageLock:IDisposable
|
|
{
|
|
int Step { get; }
|
|
IntPtr PixelData { get; }
|
|
}
|
|
} |