namespace Whisper
{
/// Flags for method
[Flags]
public enum eResultFlags: uint
{
/// No flags
None = 0,
/// Return individual tokens in addition to the segments
Tokens = 1,
/// Return timestamps
Timestamps = 2,
/// Create a new COM object for the results.
/// Without this flag, the context returns a pointer to the COM object stored in the context.
/// The content of that object is replaced every time you call method.
NewObject = 0x100,
}
}