mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 21:38:42 +00:00
13 lines
330 B
C#
13 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ScreenCapture
|
|
{
|
|
public interface IScreenCaptureService : IDisposable
|
|
{
|
|
IEnumerable<GraphicsCard> GetGraphicsCards();
|
|
IEnumerable<Display> GetDisplays(GraphicsCard graphicsCard);
|
|
IScreenCapture GetScreenCapture(Display display);
|
|
}
|
|
}
|