11 lines
159 B
C#
11 lines
159 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SpeechLib {
|
|
[TypeLibType(16)]
|
|
public enum SPVPRIORITY {
|
|
SPVPRI_NORMAL,
|
|
SPVPRI_ALERT,
|
|
SPVPRI_OVER
|
|
}
|
|
}
|