You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
520 B
18 lines
520 B
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);
|
|
}
|
|
}
|