12 lines
No EOL
230 B
C#
12 lines
No EOL
230 B
C#
using System;
|
|
|
|
namespace VirtualPrinter.Agent.Core
|
|
{
|
|
public interface IVirtualPrinter : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Initialize the virtual printer.
|
|
/// </summary>
|
|
void Init();
|
|
}
|
|
} |