This is a port of the flite voice synthesis engine version 1.3

see http://www.speech.cs.cmu.edu/flite/

fliteDLL.dll is the speech engine. I had to put it in the Windows folder on my device for it to be accessible but you can try it in the application directory - it may work there for you.

fliteDevice.dll is the Basdic4PPC library that implements a "fliteDevice" object. As usual put it in the application folder.

No help file as it is as simple as making an object called, say, Voice then employing its' Say method. The Say method returns the number of characters spoken i.e. the length of the text string.

Voice.New1

chars = Voice.Say("Something")
...
Voice.Say("Something else")

That's it!