15 lines
293 B
C#
15 lines
293 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace EveOPreview.Services
|
|
{
|
|
public interface IThumbnailManager
|
|
{
|
|
void Start();
|
|
void Stop();
|
|
|
|
void SetThumbnailState(IntPtr thumbnailId, bool hideAlways);
|
|
void SetThumbnailsSize(Size size);
|
|
void SetupThumbnailFrames();
|
|
}
|
|
} |