STT/native_client/dotnet/DeepSpeechClient/Structs/Metadata.cs
Reuben Morais ae0cf8db6a Revert "Merge branch 'rename-real'"
This reverts commit ae9fdb183e, reversing
changes made to 2eb75b6206.
2020-08-26 11:46:09 +02:00

19 lines
466 B
C#

using System;
using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct Metadata
{
/// <summary>
/// Native list of candidate transcripts.
/// </summary>
internal unsafe IntPtr transcripts;
/// <summary>
/// Count of transcripts from the native side.
/// </summary>
internal unsafe int num_transcripts;
}
}