mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 21:38:42 +00:00
15 lines
359 B
C#
15 lines
359 B
C#
using System;
|
|
|
|
namespace ScreenCapture
|
|
{
|
|
public interface IScreenCapture : IDisposable
|
|
{
|
|
Display Display { get; }
|
|
|
|
bool CaptureScreen();
|
|
CaptureZone RegisterCaptureZone(int x, int y, int width, int height, int downscaleLevel = 0);
|
|
bool UnregisterCaptureZone(CaptureZone captureZone);
|
|
void Restart();
|
|
}
|
|
}
|