using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShenTun.Speech.Instance { public class WinApi { [DllImport(@"SpeechClient.dll")] public static extern int SendSpeechText(string stext, int iRepatPlayNum, int iDelay); [DllImport(@"SpeechClient.dll")] public static extern int IniSpeechConnect(string address, long ip, string cDBServer, string DataBase); } }