using Cksoft.Unity; using System; using System.Collections.Generic; using System.Text; namespace DllParamCheckServer { public interface IParamCheckServer { int Start(ref string errorinfo); long GetAccount(); int GetStatus(ref string errorinfo); List GetInfo(); int Stop(ref string errorinfo); int ClearInfo(ref string errorinfo); } }