Reuben Morais ae0cf8db6a Revert "Merge branch 'rename-real'"
This reverts commit ae9fdb183ec6eb422635c0e3a44c0c2ee5732224, reversing
changes made to 2eb75b62064ac30c1c537f4174d00b6e521042c5.
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;
}
}