15 lines
359 B
C#
15 lines
359 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace SpeechLib {
|
|
[ComImport]
|
|
[TypeLibType(512)]
|
|
[Guid("259684DC-37C3-11D2-9603-00C04F8EE628")]
|
|
[InterfaceType(1)]
|
|
public interface ISpNotifySink {
|
|
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
void Notify();
|
|
}
|
|
}
|