28 lines
548 B
C#
28 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
namespace XylemCommonUiLegacyGenCtl
|
|
{
|
|
[Guid("50E93D73-554F-4008-BE54-BA66B4E11112")
|
|
, ComVisible(true)
|
|
, InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
|
|
public interface ICtlAutoDetect : IDisposable
|
|
{
|
|
|
|
void Init(int Slots);
|
|
void Start();
|
|
|
|
string GetErrorText(int Slot);
|
|
string GetSerialNumber(int Slot);
|
|
|
|
bool IsDone();
|
|
|
|
void Kill();
|
|
|
|
|
|
}
|
|
}
|