19 lines
459 B
C#
19 lines
459 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace STTClient.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;
|
|
}
|
|
}
|