From 8c4603c73675958efc960fbd4bb599a2909d106a Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 16 Jan 2023 14:52:43 +0100 Subject: Source codes --- WhisperNet/API/eResultFlags.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 WhisperNet/API/eResultFlags.cs (limited to 'WhisperNet/API/eResultFlags.cs') diff --git a/WhisperNet/API/eResultFlags.cs b/WhisperNet/API/eResultFlags.cs new file mode 100644 index 0000000..1de61ab --- /dev/null +++ b/WhisperNet/API/eResultFlags.cs @@ -0,0 +1,21 @@ +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, + } +} \ No newline at end of file -- cgit v1.2.3