ILotServer.cs 413 B

123456789101112131415161718
  1. using Cksoft.Unity;
  2. using DllEapDal;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace DllLotServer
  7. {
  8. public interface ILotServer
  9. {
  10. int Start(ref string errorinfo);
  11. long GetAccount();
  12. int GetStatus(ref string errorinfo);
  13. List<ServerInfo> GetInfo();
  14. int Stop(ref string errorinfo);
  15. int ClearInfo(ref string errorinfo);
  16. }
  17. }